Skip to content

Instantly share code, notes, and snippets.

@kevinkassimo
Created December 25, 2019 01:24
Show Gist options
  • Save kevinkassimo/1c2abdae8ee718fee82c24d086b740a9 to your computer and use it in GitHub Desktop.
Save kevinkassimo/1c2abdae8ee718fee82c24d086b740a9 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="1078" onload="init(evt)" viewBox="0 0 1200 1078" 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.--><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 nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';]]><![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 = nametype + " " + 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*fontsize*fontwidth) {
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 - xpad) * ratio + xpad;
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-xpad, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = xpad;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (xpad*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*xpad) / 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 (!inverted) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+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 = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
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" y="0" width="1200" height="1078" fill="url(#background)"/><text text-anchor="middle" x="600.00" y="24.00" font-size="17" font-family="Verdana" fill="rgb(0, 0, 0)">Flame Graph</text><text id="details" text-anchor="left" x="10.00" y="1061.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"> </text><text id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" text-anchor="left" x="10.00" y="24.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">Reset Zoom</text><text id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" text-anchor="left" x="1090.00" y="24.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">Search</text><text id="matched" text-anchor="left" x="1090.00" y="1061.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"> </text><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`main (1 samples, 0.02%)</title><rect x="10" y="997" width="0" height="15" fill="rgb(241,41,34)"/><text text-anchor="left" x="13.00" y="1007.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::main::ha1291c552a412373 (1 samples, 0.02%)</title><rect x="10" y="917" width="0" height="15" fill="rgb(226,190,49)"/><text text-anchor="left" x="13.00" y="927.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::ops::fs::init::h54a45fca22d1d149 (1 samples, 0.02%)</title><rect x="10" y="869" width="0" height="15" fill="rgb(220,10,13)"/><text text-anchor="left" x="13.00" y="879.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MemoryAllocator::MemoryAllocator (1 samples, 0.02%)</title><rect x="10" y="741" width="0" height="15" fill="rgb(223,6,7)"/><text text-anchor="left" x="13.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Isolate::InitWithSnapshot (2 samples, 0.04%)</title><rect x="10" y="773" width="1" height="15" fill="rgb(254,86,17)"/><text text-anchor="left" x="13.00" y="783.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Isolate::Init (2 samples, 0.04%)</title><rect x="10" y="757" width="1" height="15" fill="rgb(208,6,40)"/><text text-anchor="left" x="13.00" y="767.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::StartupDeserializer::DeserializeInto (1 samples, 0.02%)</title><rect x="10" y="741" width="1" height="15" fill="rgb(236,218,15)"/><text text-anchor="left" x="13.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateStrongRoots (1 samples, 0.02%)</title><rect x="10" y="725" width="1" height="15" fill="rgb(215,188,16)"/><text text-anchor="left" x="13.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::wasm::WasmCodeRefScope::WasmCodeRefScope (1 samples, 0.02%)</title><rect x="10" y="709" width="1" height="15" fill="rgb(229,150,36)"/><text text-anchor="left" x="13.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::create_worker_and_state::he4c2ea3dc4526e42 (6 samples, 0.11%)</title><rect x="10" y="885" width="1" height="15" fill="rgb(252,76,45)"/><text text-anchor="left" x="13.00" y="895.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::worker::Worker::new::h235a38345fed808d (5 samples, 0.09%)</title><rect x="10" y="869" width="1" height="15" fill="rgb(213,175,32)"/><text text-anchor="left" x="13.00" y="879.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::isolate::Isolate::new::h1fdf65cb007dd0e9 (5 samples, 0.09%)</title><rect x="10" y="853" width="1" height="15" fill="rgb(231,212,6)"/><text text-anchor="left" x="13.00" y="863.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_new (5 samples, 0.09%)</title><rect x="10" y="837" width="1" height="15" fill="rgb(231,180,33)"/><text text-anchor="left" x="13.00" y="847.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Isolate::New (5 samples, 0.09%)</title><rect x="10" y="821" width="1" height="15" fill="rgb(245,122,17)"/><text text-anchor="left" x="13.00" y="831.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Isolate::Initialize (5 samples, 0.09%)</title><rect x="10" y="805" width="1" height="15" fill="rgb(209,153,51)"/><text text-anchor="left" x="13.00" y="815.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Snapshot::Initialize (5 samples, 0.09%)</title><rect x="10" y="789" width="1" height="15" fill="rgb(254,119,0)"/><text text-anchor="left" x="13.00" y="799.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Snapshot::VerifyChecksum (3 samples, 0.06%)</title><rect x="11" y="773" width="0" height="15" fill="rgb(205,59,43)"/><text text-anchor="left" x="14.00" y="783.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::flags::flags_from_vec_safe::h5fa7d988c8b12972 (1 samples, 0.02%)</title><rect x="11" y="885" width="1" height="15" fill="rgb(230,122,36)"/><text text-anchor="left" x="14.00" y="895.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::flags::arg_hacks::h02af17cb3ce15625 (1 samples, 0.02%)</title><rect x="11" y="869" width="1" height="15" fill="rgb(226,165,19)"/><text text-anchor="left" x="14.00" y="879.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`core::iter::traits::iterator::Iterator::collect::hf9f6000cae81f9cc (1 samples, 0.02%)</title><rect x="11" y="853" width="1" height="15" fill="rgb(232,124,10)"/><text text-anchor="left" x="14.00" y="863.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`_dyld_private (1 samples, 0.02%)</title><rect x="11" y="837" width="1" height="15" fill="rgb(246,31,52)"/><text text-anchor="left" x="14.00" y="847.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libdyld.dylib`dyld_stub_binder (1 samples, 0.02%)</title><rect x="11" y="821" width="1" height="15" fill="rgb(240,44,49)"/><text text-anchor="left" x="14.00" y="831.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`dyld::fastBindLazySymbol (1 samples, 0.02%)</title><rect x="11" y="805" width="1" height="15" fill="rgb(222,212,27)"/><text text-anchor="left" x="14.00" y="815.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachOCompressed::doBindFastLazySymbol(unsigned int, ImageLoader::LinkContext const&amp;, void (*)(), void (*) (1 samples, 0.02%)</title><rect x="11" y="789" width="1" height="15" fill="rgb(221,139,17)"/><text text-anchor="left" x="14.00" y="799.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachOCompressed::resolve (1 samples, 0.02%)</title><rect x="11" y="773" width="1" height="15" fill="rgb(226,80,7)"/><text text-anchor="left" x="14.00" y="783.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachOCompressed::resolveTwolevel (1 samples, 0.02%)</title><rect x="11" y="757" width="1" height="15" fill="rgb(215,177,53)"/><text text-anchor="left" x="14.00" y="767.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoader::findExportedSymbolAddress (1 samples, 0.02%)</title><rect x="11" y="741" width="1" height="15" fill="rgb(215,77,47)"/><text text-anchor="left" x="14.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachO::findExportedSymbol (1 samples, 0.02%)</title><rect x="11" y="725" width="1" height="15" fill="rgb(208,90,30)"/><text text-anchor="left" x="14.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachO::libPath (1 samples, 0.02%)</title><rect x="11" y="709" width="1" height="15" fill="rgb(240,16,7)"/><text text-anchor="left" x="14.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::tokio_util::run::h79a51fe759c5f733 (1 samples, 0.02%)</title><rect x="12" y="885" width="0" height="15" fill="rgb(221,10,38)"/><text text-anchor="left" x="15.00" y="895.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`tokio::runtime::threadpool::builder::Builder::build::he79c93b14718727f (1 samples, 0.02%)</title><rect x="12" y="869" width="0" height="15" fill="rgb(241,48,8)"/><text text-anchor="left" x="15.00" y="879.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`tokio_reactor::Reactor::new::h69ed7f25df80bb18 (1 samples, 0.02%)</title><rect x="12" y="853" width="0" height="15" fill="rgb(253,171,6)"/><text text-anchor="left" x="15.00" y="863.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`mio::poll::Poll::new::h4d93e748f649b662 (1 samples, 0.02%)</title><rect x="12" y="837" width="0" height="15" fill="rgb(235,154,8)"/><text text-anchor="left" x="15.00" y="847.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`mio::sys::unix::pipe::h65b6b9b3a35e23aa (1 samples, 0.02%)</title><rect x="12" y="821" width="0" height="15" fill="rgb(225,54,26)"/><text text-anchor="left" x="15.00" y="831.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libdyld.dylib`dlsym (1 samples, 0.02%)</title><rect x="12" y="805" width="0" height="15" fill="rgb(233,202,34)"/><text text-anchor="left" x="15.00" y="815.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`dlsym_internal (1 samples, 0.02%)</title><rect x="12" y="789" width="0" height="15" fill="rgb(213,116,53)"/><text text-anchor="left" x="15.00" y="799.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`dyld::findExportedSymbol(char const*, bool, ImageLoader::Symbol const**, ImageLoader const**, void (1 samples, 0.02%)</title><rect x="12" y="773" width="0" height="15" fill="rgb(230,143,44)"/><text text-anchor="left" x="15.00" y="783.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachO::findExportedSymbol (1 samples, 0.02%)</title><rect x="12" y="757" width="0" height="15" fill="rgb(249,129,7)"/><text text-anchor="left" x="15.00" y="767.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoaderMachOCompressed::findShallowExportedSymbol (1 samples, 0.02%)</title><rect x="12" y="741" width="0" height="15" fill="rgb(219,34,0)"/><text text-anchor="left" x="15.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dyld`ImageLoader::trieWalk (1 samples, 0.02%)</title><rect x="12" y="725" width="0" height="15" fill="rgb(240,188,26)"/><text text-anchor="left" x="15.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CompileLazy (1 samples, 0.02%)</title><rect x="12" y="661" width="0" height="15" fill="rgb(214,70,13)"/><text text-anchor="left" x="15.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="12" y="645" width="0" height="15" fill="rgb(214,97,21)"/><text text-anchor="left" x="15.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileLazy (1 samples, 0.02%)</title><rect x="12" y="629" width="0" height="15" fill="rgb(229,152,13)"/><text text-anchor="left" x="15.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::Compile(v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="613" width="0" height="15" fill="rgb(246,207,35)"/><text text-anchor="left" x="15.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::Compile(v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="597" width="0" height="15" fill="rgb(218,179,9)"/><text text-anchor="left" x="15.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::parsing::ParseFunction(v8::internal::ParseInfo*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="581" width="0" height="15" fill="rgb(223,43,6)"/><text text-anchor="left" x="15.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::ParseFunction(v8::internal::Isolate*, v8::internal::ParseInfo*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="565" width="0" height="15" fill="rgb(242,119,7)"/><text text-anchor="left" x="15.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::DoParseFunction (1 samples, 0.02%)</title><rect x="12" y="549" width="0" height="15" fill="rgb(219,40,20)"/><text text-anchor="left" x="15.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionSyntaxKind, v8::internal::LanguageMode, v8::internal::ZoneList (1 samples, 0.02%)</title><rect x="12" y="533" width="0" height="15" fill="rgb(251,115,49)"/><text text-anchor="left" x="15.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::ParseFunction(v8::internal::ScopedList&lt;v8::internal::Statement*, void*&gt;*, v8::internal::AstRawString const*, int, v8::internal::FunctionKind, v8::internal::FunctionSyntaxKind, v8::internal::DeclarationScope*, int*, int*, bool*, int*, int*, v8::internal::ZoneList (1 samples, 0.02%)</title><rect x="12" y="517" width="0" height="15" fill="rgb(239,191,24)"/><text text-anchor="left" x="15.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFormalParameterList (1 samples, 0.02%)</title><rect x="12" y="501" width="0" height="15" fill="rgb(235,221,9)"/><text text-anchor="left" x="15.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseBindingPattern (1 samples, 0.02%)</title><rect x="12" y="485" width="0" height="15" fill="rgb(251,26,35)"/><text text-anchor="left" x="15.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scanner::Next (1 samples, 0.02%)</title><rect x="12" y="469" width="0" height="15" fill="rgb(216,54,14)"/><text text-anchor="left" x="15.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ConstructHandler (1 samples, 0.02%)</title><rect x="12" y="661" width="0" height="15" fill="rgb(207,224,5)"/><text text-anchor="left" x="15.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSConstructStubGeneric (1 samples, 0.02%)</title><rect x="12" y="645" width="0" height="15" fill="rgb(249,94,20)"/><text text-anchor="left" x="15.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="12" y="629" width="0" height="15" fill="rgb(247,49,35)"/><text text-anchor="left" x="15.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StaNamedPropertyHandler (1 samples, 0.02%)</title><rect x="12" y="613" width="0" height="15" fill="rgb(232,86,5)"/><text text-anchor="left" x="15.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="12" y="597" width="0" height="15" fill="rgb(210,164,47)"/><text text-anchor="left" x="15.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_StoreIC_Miss (1 samples, 0.02%)</title><rect x="12" y="581" width="0" height="15" fill="rgb(207,186,40)"/><text text-anchor="left" x="15.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::StoreIC::Store(v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="565" width="0" height="15" fill="rgb(237,191,27)"/><text text-anchor="left" x="15.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::PropertyAttributes, v8::Maybe (1 samples, 0.02%)</title><rect x="12" y="549" width="0" height="15" fill="rgb(209,165,51)"/><text text-anchor="left" x="15.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="533" width="0" height="15" fill="rgb(212,156,12)"/><text text-anchor="left" x="15.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::TransitionToDataProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="517" width="0" height="15" fill="rgb(225,53,54)"/><text text-anchor="left" x="15.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::CopyWithField(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="501" width="0" height="15" fill="rgb(230,48,48)"/><text text-anchor="left" x="15.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::CopyAddDescriptor(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="485" width="0" height="15" fill="rgb(206,104,15)"/><text text-anchor="left" x="15.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::ShareDescriptor(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="469" width="0" height="15" fill="rgb(210,24,40)"/><text text-anchor="left" x="15.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::RawCopy(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="12" y="453" width="0" height="15" fill="rgb(205,68,20)"/><text text-anchor="left" x="15.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewMap (1 samples, 0.02%)</title><rect x="12" y="437" width="0" height="15" fill="rgb(249,198,40)"/><text text-anchor="left" x="15.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::InitializeMap (1 samples, 0.02%)</title><rect x="12" y="421" width="0" height="15" fill="rgb(227,196,12)"/><text text-anchor="left" x="15.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`0x3 (13 samples, 0.25%)</title><rect x="10" y="1013" width="2" height="15" fill="rgb(234,207,50)"/><text text-anchor="left" x="13.00" y="1023.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libdyld.dylib`start (12 samples, 0.23%)</title><rect x="10" y="997" width="2" height="15" fill="rgb(212,170,9)"/><text text-anchor="left" x="13.00" y="1007.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`main (12 samples, 0.23%)</title><rect x="10" y="981" width="2" height="15" fill="rgb(213,50,33)"/><text text-anchor="left" x="13.00" y="991.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::rt::lang_start_internal::hcf96e32a124891dc (12 samples, 0.23%)</title><rect x="10" y="965" width="2" height="15" fill="rgb(220,80,22)"/><text text-anchor="left" x="13.00" y="975.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`__rust_maybe_catch_panic (12 samples, 0.23%)</title><rect x="10" y="949" width="2" height="15" fill="rgb(251,114,15)"/><text text-anchor="left" x="13.00" y="959.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::panicking::try::do_call::ha1a4587e2a4eb439 (12 samples, 0.23%)</title><rect x="10" y="933" width="2" height="15" fill="rgb(227,80,42)"/><text text-anchor="left" x="13.00" y="943.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::hc5854ad34fa6d868 (11 samples, 0.21%)</title><rect x="10" y="917" width="2" height="15" fill="rgb(245,183,7)"/><text text-anchor="left" x="13.00" y="927.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::main::ha1291c552a412373 (11 samples, 0.21%)</title><rect x="10" y="901" width="2" height="15" fill="rgb(249,43,29)"/><text text-anchor="left" x="13.00" y="911.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::worker::Worker::execute::h16c326b5f8b00ed0 (3 samples, 0.06%)</title><rect x="12" y="885" width="0" height="15" fill="rgb(244,30,18)"/><text text-anchor="left" x="15.00" y="895.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::worker::Worker::execute2::h770902dc622872db (3 samples, 0.06%)</title><rect x="12" y="869" width="0" height="15" fill="rgb(233,223,47)"/><text text-anchor="left" x="15.00" y="879.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::isolate::Isolate::execute::h4da5f66d70fb1002 (3 samples, 0.06%)</title><rect x="12" y="853" width="0" height="15" fill="rgb(235,33,39)"/><text text-anchor="left" x="15.00" y="863.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_execute (3 samples, 0.06%)</title><rect x="12" y="837" width="0" height="15" fill="rgb(208,183,44)"/><text text-anchor="left" x="15.00" y="847.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::Execute(v8::Local (3 samples, 0.06%)</title><rect x="12" y="821" width="0" height="15" fill="rgb(220,129,51)"/><text text-anchor="left" x="15.00" y="831.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Script::Run(v8::Local (3 samples, 0.06%)</title><rect x="12" y="805" width="0" height="15" fill="rgb(233,26,32)"/><text text-anchor="left" x="15.00" y="815.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, int, v8::internal::Handle (3 samples, 0.06%)</title><rect x="12" y="789" width="0" height="15" fill="rgb(208,193,25)"/><text text-anchor="left" x="15.00" y="799.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::Invoke(v8::internal::Isolate*, v8::internal:: (3 samples, 0.06%)</title><rect x="12" y="773" width="0" height="15" fill="rgb(205,66,19)"/><text text-anchor="left" x="15.00" y="783.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSEntry (3 samples, 0.06%)</title><rect x="12" y="757" width="0" height="15" fill="rgb(216,150,43)"/><text text-anchor="left" x="15.00" y="767.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSEntryTrampoline (3 samples, 0.06%)</title><rect x="12" y="741" width="0" height="15" fill="rgb(240,195,26)"/><text text-anchor="left" x="15.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (3 samples, 0.06%)</title><rect x="12" y="725" width="0" height="15" fill="rgb(245,180,0)"/><text text-anchor="left" x="15.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArgumentsAdaptorTrampoline (3 samples, 0.06%)</title><rect x="12" y="709" width="0" height="15" fill="rgb(228,64,19)"/><text text-anchor="left" x="15.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (3 samples, 0.06%)</title><rect x="12" y="693" width="0" height="15" fill="rgb(210,81,31)"/><text text-anchor="left" x="15.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (3 samples, 0.06%)</title><rect x="12" y="677" width="0" height="15" fill="rgb(229,46,6)"/><text text-anchor="left" x="15.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="12" y="661" width="0" height="15" fill="rgb(239,4,8)"/><text text-anchor="left" x="15.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="12" y="645" width="0" height="15" fill="rgb(237,161,43)"/><text text-anchor="left" x="15.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="12" y="629" width="0" height="15" fill="rgb(215,30,36)"/><text text-anchor="left" x="15.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_LdaNamedPropertyHandler (1 samples, 0.02%)</title><rect x="12" y="613" width="0" height="15" fill="rgb(245,47,45)"/><text text-anchor="left" x="15.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_SharedArrayBufferPrototypeGetByteLength (1 samples, 0.02%)</title><rect x="12" y="597" width="0" height="15" fill="rgb(230,145,54)"/><text text-anchor="left" x="15.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`_$LT$futures..future..then..Then$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h0b2962fcfd7a93c1 (1 samples, 0.02%)</title><rect x="13" y="709" width="0" height="15" fill="rgb(211,15,26)"/><text text-anchor="left" x="16.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::shared_queue::SharedQueue::push::h12154bcb4a09677b (5 samples, 0.09%)</title><rect x="13" y="613" width="1" height="15" fill="rgb(222,176,9)"/><text text-anchor="left" x="16.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ThreadManager::RestoreThread (1 samples, 0.02%)</title><rect x="14" y="581" width="0" height="15" fill="rgb(207,214,17)"/><text text-anchor="left" x="17.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_unlock_slow (1 samples, 0.02%)</title><rect x="14" y="565" width="0" height="15" fill="rgb(249,58,51)"/><text text-anchor="left" x="17.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_lock (2 samples, 0.04%)</title><rect x="14" y="613" width="1" height="15" fill="rgb(222,85,42)"/><text text-anchor="left" x="17.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Locker::Initialize (2 samples, 0.04%)</title><rect x="14" y="597" width="1" height="15" fill="rgb(238,101,21)"/><text text-anchor="left" x="17.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="14" y="581" width="1" height="15" fill="rgb(231,5,6)"/><text text-anchor="left" x="17.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSEntry (1 samples, 0.02%)</title><rect x="15" y="565" width="0" height="15" fill="rgb(225,27,46)"/><text text-anchor="left" x="18.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (3 samples, 0.06%)</title><rect x="16" y="453" width="1" height="15" fill="rgb(214,91,5)"/><text text-anchor="left" x="19.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e27b1 (9 samples, 0.17%)</title><rect x="15" y="485" width="2" height="15" fill="rgb(233,37,16)"/><text text-anchor="left" x="18.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSlice (9 samples, 0.17%)</title><rect x="15" y="469" width="2" height="15" fill="rgb(210,36,28)"/><text text-anchor="left" x="18.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::libc_memset (2 samples, 0.04%)</title><rect x="17" y="453" width="0" height="15" fill="rgb(239,109,7)"/><text text-anchor="left" x="20.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e27e9 (1 samples, 0.02%)</title><rect x="17" y="485" width="0" height="15" fill="rgb(243,27,15)"/><text text-anchor="left" x="20.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="18" y="437" width="0" height="15" fill="rgb(215,155,50)"/><text text-anchor="left" x="21.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (10 samples, 0.19%)</title><rect x="19" y="421" width="2" height="15" fill="rgb(211,15,22)"/><text text-anchor="left" x="22.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (9 samples, 0.17%)</title><rect x="19" y="405" width="2" height="15" fill="rgb(207,119,41)"/><text text-anchor="left" x="22.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (9 samples, 0.17%)</title><rect x="19" y="389" width="2" height="15" fill="rgb(248,53,48)"/><text text-anchor="left" x="22.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (8 samples, 0.15%)</title><rect x="19" y="373" width="2" height="15" fill="rgb(214,154,50)"/><text text-anchor="left" x="22.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (8 samples, 0.15%)</title><rect x="19" y="357" width="2" height="15" fill="rgb(205,51,11)"/><text text-anchor="left" x="22.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (5 samples, 0.09%)</title><rect x="20" y="341" width="1" height="15" fill="rgb(232,128,8)"/><text text-anchor="left" x="23.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (3 samples, 0.06%)</title><rect x="20" y="325" width="1" height="15" fill="rgb(229,84,42)"/><text text-anchor="left" x="23.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (6 samples, 0.11%)</title><rect x="21" y="405" width="1" height="15" fill="rgb(253,9,46)"/><text text-anchor="left" x="24.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (6 samples, 0.11%)</title><rect x="21" y="389" width="1" height="15" fill="rgb(234,6,30)"/><text text-anchor="left" x="24.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (6 samples, 0.11%)</title><rect x="21" y="373" width="1" height="15" fill="rgb(223,202,31)"/><text text-anchor="left" x="24.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (6 samples, 0.11%)</title><rect x="21" y="357" width="1" height="15" fill="rgb(216,99,19)"/><text text-anchor="left" x="24.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (6 samples, 0.11%)</title><rect x="21" y="341" width="1" height="15" fill="rgb(249,27,25)"/><text text-anchor="left" x="24.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (4 samples, 0.08%)</title><rect x="22" y="325" width="0" height="15" fill="rgb(251,187,49)"/><text text-anchor="left" x="25.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="22" y="309" width="0" height="15" fill="rgb(245,166,36)"/><text text-anchor="left" x="25.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (5 samples, 0.09%)</title><rect x="22" y="373" width="2" height="15" fill="rgb(218,124,49)"/><text text-anchor="left" x="25.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (5 samples, 0.09%)</title><rect x="22" y="357" width="2" height="15" fill="rgb(254,201,3)"/><text text-anchor="left" x="25.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (5 samples, 0.09%)</title><rect x="22" y="341" width="2" height="15" fill="rgb(214,112,49)"/><text text-anchor="left" x="25.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (5 samples, 0.09%)</title><rect x="22" y="325" width="2" height="15" fill="rgb(249,190,15)"/><text text-anchor="left" x="25.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (1 samples, 0.02%)</title><rect x="23" y="309" width="1" height="15" fill="rgb(227,67,36)"/><text text-anchor="left" x="26.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::BackingStore::Allocate (12 samples, 0.23%)</title><rect x="21" y="421" width="3" height="15" fill="rgb(251,71,13)"/><text text-anchor="left" x="24.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (6 samples, 0.11%)</title><rect x="22" y="405" width="2" height="15" fill="rgb(243,128,35)"/><text text-anchor="left" x="25.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (6 samples, 0.11%)</title><rect x="22" y="389" width="2" height="15" fill="rgb(223,167,50)"/><text text-anchor="left" x="25.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="24" y="373" width="0" height="15" fill="rgb(230,0,7)"/><text text-anchor="left" x="27.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (2 samples, 0.04%)</title><rect x="27" y="261" width="0" height="15" fill="rgb(211,160,43)"/><text text-anchor="left" x="30.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (12 samples, 0.23%)</title><rect x="26" y="341" width="2" height="15" fill="rgb(248,131,24)"/><text text-anchor="left" x="29.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (12 samples, 0.23%)</title><rect x="26" y="325" width="2" height="15" fill="rgb(224,111,14)"/><text text-anchor="left" x="29.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (12 samples, 0.23%)</title><rect x="26" y="309" width="2" height="15" fill="rgb(220,218,48)"/><text text-anchor="left" x="29.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (12 samples, 0.23%)</title><rect x="26" y="293" width="2" height="15" fill="rgb(222,84,40)"/><text text-anchor="left" x="29.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (12 samples, 0.23%)</title><rect x="26" y="277" width="2" height="15" fill="rgb(240,149,18)"/><text text-anchor="left" x="29.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (5 samples, 0.09%)</title><rect x="27" y="261" width="1" height="15" fill="rgb(210,206,6)"/><text text-anchor="left" x="30.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (2 samples, 0.04%)</title><rect x="28" y="245" width="0" height="15" fill="rgb(224,30,26)"/><text text-anchor="left" x="31.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_malloc_should_clear (1 samples, 0.02%)</title><rect x="29" y="261" width="0" height="15" fill="rgb(247,194,8)"/><text text-anchor="left" x="32.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_malloc_from_free_list (1 samples, 0.02%)</title><rect x="29" y="245" width="0" height="15" fill="rgb(218,128,25)"/><text text-anchor="left" x="32.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (3 samples, 0.06%)</title><rect x="29" y="325" width="0" height="15" fill="rgb(211,97,13)"/><text text-anchor="left" x="32.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (3 samples, 0.06%)</title><rect x="29" y="309" width="0" height="15" fill="rgb(214,78,54)"/><text text-anchor="left" x="32.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (3 samples, 0.06%)</title><rect x="29" y="293" width="0" height="15" fill="rgb(249,13,20)"/><text text-anchor="left" x="32.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (3 samples, 0.06%)</title><rect x="29" y="277" width="0" height="15" fill="rgb(254,74,52)"/><text text-anchor="left" x="32.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (2 samples, 0.04%)</title><rect x="29" y="261" width="0" height="15" fill="rgb(215,210,28)"/><text text-anchor="left" x="32.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="29" y="245" width="0" height="15" fill="rgb(225,145,19)"/><text text-anchor="left" x="32.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::RegisterNew(v8::internal::Heap*, v8::internal::JSArrayBuffer, std::__1::shared_ptr (25 samples, 0.47%)</title><rect x="24" y="373" width="6" height="15" fill="rgb(243,17,26)"/><text text-anchor="left" x="27.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (23 samples, 0.44%)</title><rect x="25" y="357" width="5" height="15" fill="rgb(212,188,19)"/><text text-anchor="left" x="28.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__rehash (6 samples, 0.11%)</title><rect x="28" y="341" width="2" height="15" fill="rgb(239,77,53)"/><text text-anchor="left" x="31.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="29" y="325" width="1" height="15" fill="rgb(221,22,13)"/><text text-anchor="left" x="32.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="29" y="309" width="1" height="15" fill="rgb(246,121,19)"/><text text-anchor="left" x="32.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2816 (57 samples, 1.08%)</title><rect x="17" y="485" width="13" height="15" fill="rgb(244,31,2)"/><text text-anchor="left" x="20.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (57 samples, 1.08%)</title><rect x="17" y="469" width="13" height="15" fill="rgb(222,77,23)"/><text text-anchor="left" x="20.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_TypedArrayPrototypeBuffer (56 samples, 1.06%)</title><rect x="18" y="453" width="12" height="15" fill="rgb(213,145,15)"/><text text-anchor="left" x="21.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (55 samples, 1.04%)</title><rect x="18" y="437" width="12" height="15" fill="rgb(251,142,52)"/><text text-anchor="left" x="21.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Setup(v8::internal::SharedFlag, std::__1::shared_ptr (28 samples, 0.53%)</title><rect x="24" y="421" width="6" height="15" fill="rgb(232,51,4)"/><text text-anchor="left" x="27.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Attach(std::__1::shared_ptr (27 samples, 0.51%)</title><rect x="24" y="405" width="6" height="15" fill="rgb(227,49,40)"/><text text-anchor="left" x="27.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::RegisterBackingStore(v8::internal::JSArrayBuffer, std::__1::shared_ptr (27 samples, 0.51%)</title><rect x="24" y="389" width="6" height="15" fill="rgb(227,213,43)"/><text text-anchor="left" x="27.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (2 samples, 0.04%)</title><rect x="30" y="373" width="0" height="15" fill="rgb(221,131,24)"/><text text-anchor="left" x="33.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e28a9 (4 samples, 0.08%)</title><rect x="30" y="485" width="1" height="15" fill="rgb(243,112,31)"/><text text-anchor="left" x="33.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (4 samples, 0.08%)</title><rect x="30" y="469" width="1" height="15" fill="rgb(208,62,27)"/><text text-anchor="left" x="33.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="31" y="453" width="0" height="15" fill="rgb(230,123,19)"/><text text-anchor="left" x="34.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="31" y="437" width="0" height="15" fill="rgb(216,185,15)"/><text text-anchor="left" x="34.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="31" y="421" width="0" height="15" fill="rgb(213,217,52)"/><text text-anchor="left" x="34.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="31" y="405" width="0" height="15" fill="rgb(252,29,50)"/><text text-anchor="left" x="34.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="31" y="389" width="0" height="15" fill="rgb(231,33,16)"/><text text-anchor="left" x="34.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="31" y="373" width="0" height="15" fill="rgb(234,57,45)"/><text text-anchor="left" x="34.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="31" y="357" width="0" height="15" fill="rgb(208,28,32)"/><text text-anchor="left" x="34.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="31" y="341" width="0" height="15" fill="rgb(232,83,17)"/><text text-anchor="left" x="34.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="31" y="325" width="0" height="15" fill="rgb(222,157,14)"/><text text-anchor="left" x="34.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (2 samples, 0.04%)</title><rect x="31" y="309" width="0" height="15" fill="rgb(249,212,6)"/><text text-anchor="left" x="34.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (2 samples, 0.04%)</title><rect x="31" y="293" width="0" height="15" fill="rgb(233,128,45)"/><text text-anchor="left" x="34.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="31" y="277" width="0" height="15" fill="rgb(222,8,52)"/><text text-anchor="left" x="34.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="31" y="261" width="0" height="15" fill="rgb(233,159,52)"/><text text-anchor="left" x="34.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e28db (1 samples, 0.02%)</title><rect x="31" y="485" width="0" height="15" fill="rgb(209,139,25)"/><text text-anchor="left" x="34.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2902 (1 samples, 0.02%)</title><rect x="31" y="485" width="0" height="15" fill="rgb(206,41,38)"/><text text-anchor="left" x="34.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2918 (1 samples, 0.02%)</title><rect x="31" y="485" width="1" height="15" fill="rgb(205,67,11)"/><text text-anchor="left" x="34.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2a63 (1 samples, 0.02%)</title><rect x="32" y="485" width="0" height="15" fill="rgb(212,4,49)"/><text text-anchor="left" x="35.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2a86 (1 samples, 0.02%)</title><rect x="32" y="485" width="0" height="15" fill="rgb(247,103,0)"/><text text-anchor="left" x="35.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap_GenerationalBarrierSlow (1 samples, 0.02%)</title><rect x="32" y="405" width="1" height="15" fill="rgb(233,139,49)"/><text text-anchor="left" x="35.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::IncrementalMarking::Start (1 samples, 0.02%)</title><rect x="34" y="245" width="1" height="15" fill="rgb(237,71,8)"/><text text-anchor="left" x="37.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::IncrementalMarking::StartMarking (1 samples, 0.02%)</title><rect x="34" y="229" width="1" height="15" fill="rgb(208,49,9)"/><text text-anchor="left" x="37.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateStrongRoots (1 samples, 0.02%)</title><rect x="34" y="213" width="1" height="15" fill="rgb(212,196,12)"/><text text-anchor="left" x="37.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SerializerDeserializer::Iterate (1 samples, 0.02%)</title><rect x="34" y="197" width="1" height="15" fill="rgb(246,27,51)"/><text text-anchor="left" x="37.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::IncrementalMarkingRootMarkingVisitor::MarkObjectByPointer (1 samples, 0.02%)</title><rect x="34" y="181" width="1" height="15" fill="rgb(214,205,34)"/><text text-anchor="left" x="37.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::AllocateRaw (2 samples, 0.04%)</title><rect x="34" y="309" width="1" height="15" fill="rgb(207,30,8)"/><text text-anchor="left" x="37.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::SlowRefillLinearAllocationArea (2 samples, 0.04%)</title><rect x="34" y="293" width="1" height="15" fill="rgb(236,39,40)"/><text text-anchor="left" x="37.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::RawSlowRefillLinearAllocationArea (2 samples, 0.04%)</title><rect x="34" y="277" width="1" height="15" fill="rgb(233,18,30)"/><text text-anchor="left" x="37.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::RefillLinearAllocationAreaFromFreeList (2 samples, 0.04%)</title><rect x="34" y="261" width="1" height="15" fill="rgb(211,195,30)"/><text text-anchor="left" x="37.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::FreeLinearAllocationArea (1 samples, 0.02%)</title><rect x="35" y="245" width="0" height="15" fill="rgb(246,171,24)"/><text text-anchor="left" x="38.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeListManyCached::Free (1 samples, 0.02%)</title><rect x="35" y="229" width="0" height="15" fill="rgb(217,137,41)"/><text text-anchor="left" x="38.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeListMany::SelectFreeListCategoryType (1 samples, 0.02%)</title><rect x="35" y="213" width="0" height="15" fill="rgb(212,113,0)"/><text text-anchor="left" x="38.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2ad0 (13 samples, 0.25%)</title><rect x="32" y="485" width="3" height="15" fill="rgb(217,32,3)"/><text text-anchor="left" x="35.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapPrototypeDelete (13 samples, 0.25%)</title><rect x="32" y="469" width="3" height="15" fill="rgb(215,225,6)"/><text text-anchor="left" x="35.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (12 samples, 0.23%)</title><rect x="32" y="453" width="3" height="15" fill="rgb(206,120,22)"/><text text-anchor="left" x="35.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_MapShrink (12 samples, 0.23%)</title><rect x="32" y="437" width="3" height="15" fill="rgb(218,141,9)"/><text text-anchor="left" x="35.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashTable&lt;v8::internal::OrderedHashMap, 2&gt;::Shrink(v8::internal::Isolate*, v8::internal::Handle (12 samples, 0.23%)</title><rect x="32" y="421" width="3" height="15" fill="rgb(243,177,35)"/><text text-anchor="left" x="35.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashTable&lt;v8::internal::OrderedHashMap, 2&gt;::Rehash(v8::internal::Isolate*, v8::internal::Handle (11 samples, 0.21%)</title><rect x="33" y="405" width="2" height="15" fill="rgb(246,13,49)"/><text text-anchor="left" x="36.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::FixedArray&gt; v8::internal::Factory::NewFixedArrayWithMap&lt;v8::internal::FixedArray&gt; (9 samples, 0.17%)</title><rect x="33" y="389" width="2" height="15" fill="rgb(251,157,23)"/><text text-anchor="left" x="36.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (4 samples, 0.08%)</title><rect x="34" y="373" width="1" height="15" fill="rgb(210,76,27)"/><text text-anchor="left" x="37.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (4 samples, 0.08%)</title><rect x="34" y="357" width="1" height="15" fill="rgb(244,58,2)"/><text text-anchor="left" x="37.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (4 samples, 0.08%)</title><rect x="34" y="341" width="1" height="15" fill="rgb(252,225,28)"/><text text-anchor="left" x="37.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (3 samples, 0.06%)</title><rect x="34" y="325" width="1" height="15" fill="rgb(227,83,14)"/><text text-anchor="left" x="37.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SpaceWithLinearArea::StartNextInlineAllocationStep (1 samples, 0.02%)</title><rect x="35" y="309" width="0" height="15" fill="rgb(253,37,43)"/><text text-anchor="left" x="38.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2b03 (12 samples, 0.23%)</title><rect x="35" y="485" width="3" height="15" fill="rgb(251,101,28)"/><text text-anchor="left" x="38.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2b6d (1 samples, 0.02%)</title><rect x="38" y="485" width="0" height="15" fill="rgb(214,188,43)"/><text text-anchor="left" x="41.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2b8b (4 samples, 0.08%)</title><rect x="38" y="485" width="1" height="15" fill="rgb(209,91,21)"/><text text-anchor="left" x="41.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (5 samples, 0.09%)</title><rect x="39" y="453" width="1" height="15" fill="rgb(214,55,35)"/><text text-anchor="left" x="42.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_EnqueueMicrotask (2 samples, 0.04%)</title><rect x="40" y="437" width="0" height="15" fill="rgb(254,69,44)"/><text text-anchor="left" x="43.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MicrotaskQueue::CallEnqueueMicrotask (2 samples, 0.04%)</title><rect x="40" y="421" width="0" height="15" fill="rgb(217,27,13)"/><text text-anchor="left" x="43.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2bac (7 samples, 0.13%)</title><rect x="39" y="485" width="1" height="15" fill="rgb(250,39,32)"/><text text-anchor="left" x="42.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PromiseCapabilityDefaultResolve (7 samples, 0.13%)</title><rect x="39" y="469" width="1" height="15" fill="rgb(207,77,2)"/><text text-anchor="left" x="42.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (1 samples, 0.02%)</title><rect x="40" y="453" width="0" height="15" fill="rgb(233,31,17)"/><text text-anchor="left" x="43.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (1 samples, 0.02%)</title><rect x="40" y="437" width="0" height="15" fill="rgb(239,196,51)"/><text text-anchor="left" x="43.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::ToArrayIndexSlow (1 samples, 0.02%)</title><rect x="40" y="421" width="0" height="15" fill="rgb(205,122,43)"/><text text-anchor="left" x="43.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallFunction_ReceiverIsNotNullOrUndefined (4 samples, 0.08%)</title><rect x="40" y="485" width="1" height="15" fill="rgb(227,37,30)"/><text text-anchor="left" x="43.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsNotNullOrUndefined (3 samples, 0.06%)</title><rect x="41" y="485" width="1" height="15" fill="rgb(218,207,20)"/><text text-anchor="left" x="44.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::BackingStore::Allocate (1 samples, 0.02%)</title><rect x="42" y="405" width="0" height="15" fill="rgb(224,223,23)"/><text text-anchor="left" x="45.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (1 samples, 0.02%)</title><rect x="42" y="389" width="0" height="15" fill="rgb(233,69,26)"/><text text-anchor="left" x="45.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="42" y="373" width="0" height="15" fill="rgb(253,43,25)"/><text text-anchor="left" x="45.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="42" y="357" width="0" height="15" fill="rgb(207,177,37)"/><text text-anchor="left" x="45.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="42" y="341" width="0" height="15" fill="rgb(236,18,29)"/><text text-anchor="left" x="45.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d1718 (2 samples, 0.04%)</title><rect x="42" y="469" width="1" height="15" fill="rgb(213,207,16)"/><text text-anchor="left" x="45.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (2 samples, 0.04%)</title><rect x="42" y="453" width="1" height="15" fill="rgb(249,115,48)"/><text text-anchor="left" x="45.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_TypedArrayPrototypeBuffer (2 samples, 0.04%)</title><rect x="42" y="437" width="1" height="15" fill="rgb(244,166,14)"/><text text-anchor="left" x="45.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (2 samples, 0.04%)</title><rect x="42" y="421" width="1" height="15" fill="rgb(236,61,4)"/><text text-anchor="left" x="45.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Setup(v8::internal::SharedFlag, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="42" y="405" width="1" height="15" fill="rgb(218,211,39)"/><text text-anchor="left" x="45.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Attach(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="42" y="389" width="1" height="15" fill="rgb(254,28,21)"/><text text-anchor="left" x="45.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::RegisterBackingStore(v8::internal::JSArrayBuffer, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="42" y="373" width="1" height="15" fill="rgb(243,101,3)"/><text text-anchor="left" x="45.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::RegisterNew(v8::internal::Heap*, v8::internal::JSArrayBuffer, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="42" y="357" width="1" height="15" fill="rgb(239,43,10)"/><text text-anchor="left" x="45.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (1 samples, 0.02%)</title><rect x="42" y="341" width="1" height="15" fill="rgb(249,76,46)"/><text text-anchor="left" x="45.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__rehash (1 samples, 0.02%)</title><rect x="42" y="325" width="1" height="15" fill="rgb(246,78,15)"/><text text-anchor="left" x="45.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="42" y="309" width="1" height="15" fill="rgb(213,103,54)"/><text text-anchor="left" x="45.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="42" y="293" width="1" height="15" fill="rgb(226,3,4)"/><text text-anchor="left" x="45.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (4 samples, 0.08%)</title><rect x="42" y="485" width="1" height="15" fill="rgb(207,100,15)"/><text text-anchor="left" x="45.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d1a2e (1 samples, 0.02%)</title><rect x="43" y="469" width="0" height="15" fill="rgb(210,167,39)"/><text text-anchor="left" x="46.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dbf2f (127 samples, 2.41%)</title><rect x="15" y="501" width="29" height="15" fill="rgb(246,171,31)"/><text text-anchor="left" x="18.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_LoadIC (3 samples, 0.06%)</title><rect x="43" y="485" width="1" height="15" fill="rgb(206,165,21)"/><text text-anchor="left" x="46.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dbf89 (1 samples, 0.02%)</title><rect x="44" y="501" width="0" height="15" fill="rgb(249,209,44)"/><text text-anchor="left" x="47.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc11c (1 samples, 0.02%)</title><rect x="44" y="501" width="0" height="15" fill="rgb(224,101,9)"/><text text-anchor="left" x="47.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc222 (1 samples, 0.02%)</title><rect x="44" y="501" width="0" height="15" fill="rgb(205,154,54)"/><text text-anchor="left" x="47.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc32e (1 samples, 0.02%)</title><rect x="44" y="501" width="0" height="15" fill="rgb(231,215,54)"/><text text-anchor="left" x="47.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc399 (6 samples, 0.11%)</title><rect x="44" y="501" width="2" height="15" fill="rgb(242,45,14)"/><text text-anchor="left" x="47.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (6 samples, 0.11%)</title><rect x="44" y="485" width="2" height="15" fill="rgb(210,196,29)"/><text text-anchor="left" x="47.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (3 samples, 0.06%)</title><rect x="45" y="469" width="1" height="15" fill="rgb(220,72,28)"/><text text-anchor="left" x="48.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="46" y="453" width="0" height="15" fill="rgb(227,64,5)"/><text text-anchor="left" x="49.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="46" y="437" width="0" height="15" fill="rgb(219,225,39)"/><text text-anchor="left" x="49.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="46" y="421" width="0" height="15" fill="rgb(206,114,20)"/><text text-anchor="left" x="49.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="46" y="405" width="0" height="15" fill="rgb(248,17,42)"/><text text-anchor="left" x="49.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="46" y="389" width="0" height="15" fill="rgb(212,139,46)"/><text text-anchor="left" x="49.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="46" y="373" width="0" height="15" fill="rgb(222,210,50)"/><text text-anchor="left" x="49.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="46" y="357" width="0" height="15" fill="rgb(235,202,16)"/><text text-anchor="left" x="49.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="46" y="341" width="0" height="15" fill="rgb(221,85,37)"/><text text-anchor="left" x="49.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="46" y="325" width="0" height="15" fill="rgb(208,138,42)"/><text text-anchor="left" x="49.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="46" y="309" width="0" height="15" fill="rgb(215,119,12)"/><text text-anchor="left" x="49.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="46" y="293" width="0" height="15" fill="rgb(249,134,29)"/><text text-anchor="left" x="49.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_free_definite_size (1 samples, 0.02%)</title><rect x="46" y="277" width="0" height="15" fill="rgb(232,39,36)"/><text text-anchor="left" x="49.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc3d3 (1 samples, 0.02%)</title><rect x="46" y="501" width="0" height="15" fill="rgb(249,16,6)"/><text text-anchor="left" x="49.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc46b (1 samples, 0.02%)</title><rect x="46" y="501" width="0" height="15" fill="rgb(244,5,40)"/><text text-anchor="left" x="49.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dc643 (1 samples, 0.02%)</title><rect x="46" y="501" width="0" height="15" fill="rgb(212,20,36)"/><text text-anchor="left" x="49.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="46" y="485" width="0" height="15" fill="rgb(241,163,30)"/><text text-anchor="left" x="49.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="46" y="469" width="0" height="15" fill="rgb(233,199,28)"/><text text-anchor="left" x="49.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="46" y="453" width="0" height="15" fill="rgb(226,92,4)"/><text text-anchor="left" x="49.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="46" y="437" width="0" height="15" fill="rgb(225,185,40)"/><text text-anchor="left" x="49.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="46" y="421" width="0" height="15" fill="rgb(226,6,14)"/><text text-anchor="left" x="49.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="46" y="405" width="0" height="15" fill="rgb(208,2,23)"/><text text-anchor="left" x="49.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::EnsureAllocation (1 samples, 0.02%)</title><rect x="46" y="389" width="0" height="15" fill="rgb(229,27,39)"/><text text-anchor="left" x="49.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::AllocationObserver::AllocationStep (1 samples, 0.02%)</title><rect x="46" y="373" width="0" height="15" fill="rgb(244,138,23)"/><text text-anchor="left" x="49.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::IdleScavengeObserver::Step (1 samples, 0.02%)</title><rect x="46" y="357" width="0" height="15" fill="rgb(249,219,17)"/><text text-anchor="left" x="49.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e2348 (1 samples, 0.02%)</title><rect x="46" y="501" width="1" height="15" fill="rgb(239,8,35)"/><text text-anchor="left" x="49.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="47" y="485" width="0" height="15" fill="rgb(205,131,5)"/><text text-anchor="left" x="50.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="47" y="469" width="0" height="15" fill="rgb(230,218,16)"/><text text-anchor="left" x="50.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="47" y="453" width="0" height="15" fill="rgb(209,43,41)"/><text text-anchor="left" x="50.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="47" y="437" width="0" height="15" fill="rgb(213,101,47)"/><text text-anchor="left" x="50.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="47" y="421" width="0" height="15" fill="rgb(243,207,48)"/><text text-anchor="left" x="50.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="47" y="405" width="0" height="15" fill="rgb(232,57,27)"/><text text-anchor="left" x="50.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="47" y="389" width="0" height="15" fill="rgb(242,190,4)"/><text text-anchor="left" x="50.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::InliningPhase&gt; (1 samples, 0.02%)</title><rect x="47" y="373" width="0" height="15" fill="rgb(241,31,40)"/><text text-anchor="left" x="50.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::InliningPhase::Run (1 samples, 0.02%)</title><rect x="47" y="357" width="0" height="15" fill="rgb(218,175,49)"/><text text-anchor="left" x="50.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceNode (1 samples, 0.02%)</title><rect x="47" y="341" width="0" height="15" fill="rgb(222,47,30)"/><text text-anchor="left" x="50.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSInliningHeuristic::Finalize (1 samples, 0.02%)</title><rect x="47" y="325" width="0" height="15" fill="rgb(231,21,44)"/><text text-anchor="left" x="50.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSInliningHeuristic::InlineCandidate (1 samples, 0.02%)</title><rect x="47" y="309" width="0" height="15" fill="rgb(231,101,45)"/><text text-anchor="left" x="50.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSInliner::ReduceJSCall (1 samples, 0.02%)</title><rect x="47" y="293" width="0" height="15" fill="rgb(254,135,11)"/><text text-anchor="left" x="50.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BuildGraphFromBytecode(v8::internal::compiler::JSHeapBroker*, v8::internal::Zone*, v8::internal::compiler::SharedFunctionInfoRef const&amp;, v8::internal::compiler::FeedbackVectorRef const&amp;, v8::internal::BailoutId, v8::internal::compiler::JSGraph*, v8::internal::compiler::CallFrequency const&amp;, v8::internal::compiler::SourcePositionTable*, int, v8::base::Flags (1 samples, 0.02%)</title><rect x="47" y="277" width="0" height="15" fill="rgb(246,90,4)"/><text text-anchor="left" x="50.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::CreateGraph (1 samples, 0.02%)</title><rect x="47" y="261" width="0" height="15" fill="rgb(239,201,3)"/><text text-anchor="left" x="50.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::VisitBytecodes (1 samples, 0.02%)</title><rect x="47" y="245" width="0" height="15" fill="rgb(233,207,32)"/><text text-anchor="left" x="50.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::VisitThrowReferenceErrorIfHole (1 samples, 0.02%)</title><rect x="47" y="229" width="0" height="15" fill="rgb(218,108,25)"/><text text-anchor="left" x="50.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::CommonNodeCache::FindHeapConstant(v8::internal::Handle (1 samples, 0.02%)</title><rect x="47" y="213" width="0" height="15" fill="rgb(220,169,25)"/><text text-anchor="left" x="50.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d1718 (1 samples, 0.02%)</title><rect x="47" y="469" width="0" height="15" fill="rgb(224,54,9)"/><text text-anchor="left" x="50.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (1 samples, 0.02%)</title><rect x="47" y="453" width="0" height="15" fill="rgb(209,200,46)"/><text text-anchor="left" x="50.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_TypedArrayPrototypeBuffer (1 samples, 0.02%)</title><rect x="47" y="437" width="0" height="15" fill="rgb(232,218,33)"/><text text-anchor="left" x="50.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (1 samples, 0.02%)</title><rect x="47" y="421" width="0" height="15" fill="rgb(215,176,44)"/><text text-anchor="left" x="50.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Setup(v8::internal::SharedFlag, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="47" y="405" width="0" height="15" fill="rgb(251,141,19)"/><text text-anchor="left" x="50.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Attach(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="47" y="389" width="0" height="15" fill="rgb(238,57,19)"/><text text-anchor="left" x="50.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::RegisterBackingStore(v8::internal::JSArrayBuffer, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="47" y="373" width="0" height="15" fill="rgb(245,71,46)"/><text text-anchor="left" x="50.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::RegisterNew(v8::internal::Heap*, v8::internal::JSArrayBuffer, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="47" y="357" width="0" height="15" fill="rgb(254,228,2)"/><text text-anchor="left" x="50.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (1 samples, 0.02%)</title><rect x="47" y="341" width="0" height="15" fill="rgb(226,224,44)"/><text text-anchor="left" x="50.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="47" y="325" width="0" height="15" fill="rgb(235,115,42)"/><text text-anchor="left" x="50.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="47" y="309" width="0" height="15" fill="rgb(238,120,53)"/><text text-anchor="left" x="50.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="47" y="293" width="0" height="15" fill="rgb(229,127,29)"/><text text-anchor="left" x="50.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="47" y="277" width="0" height="15" fill="rgb(238,11,34)"/><text text-anchor="left" x="50.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="47" y="261" width="0" height="15" fill="rgb(217,217,52)"/><text text-anchor="left" x="50.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="47" y="245" width="0" height="15" fill="rgb(247,180,18)"/><text text-anchor="left" x="50.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d19fb (2 samples, 0.04%)</title><rect x="47" y="469" width="1" height="15" fill="rgb(238,187,54)"/><text text-anchor="left" x="50.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapPrototypeDelete (2 samples, 0.04%)</title><rect x="47" y="453" width="1" height="15" fill="rgb(231,171,48)"/><text text-anchor="left" x="50.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="47" y="437" width="1" height="15" fill="rgb(205,182,11)"/><text text-anchor="left" x="50.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_MapShrink (2 samples, 0.04%)</title><rect x="47" y="421" width="1" height="15" fill="rgb(206,194,42)"/><text text-anchor="left" x="50.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashTable&lt;v8::internal::OrderedHashMap, 2&gt;::Shrink(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="47" y="405" width="1" height="15" fill="rgb(238,20,47)"/><text text-anchor="left" x="50.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashTable&lt;v8::internal::OrderedHashMap, 2&gt;::Rehash(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="47" y="389" width="1" height="15" fill="rgb(209,177,52)"/><text text-anchor="left" x="50.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::FixedArray&gt; v8::internal::Factory::NewFixedArrayWithMap&lt;v8::internal::FixedArray&gt; (1 samples, 0.02%)</title><rect x="47" y="373" width="1" height="15" fill="rgb(215,20,13)"/><text text-anchor="left" x="50.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (1 samples, 0.02%)</title><rect x="47" y="357" width="1" height="15" fill="rgb(210,183,26)"/><text text-anchor="left" x="50.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="47" y="341" width="1" height="15" fill="rgb(244,154,24)"/><text text-anchor="left" x="50.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="47" y="325" width="1" height="15" fill="rgb(223,36,14)"/><text text-anchor="left" x="50.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::AllocateRaw (1 samples, 0.02%)</title><rect x="47" y="309" width="1" height="15" fill="rgb(254,3,9)"/><text text-anchor="left" x="50.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d1ab6 (1 samples, 0.02%)</title><rect x="48" y="469" width="0" height="15" fill="rgb(205,74,5)"/><text text-anchor="left" x="51.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="48" y="469" width="0" height="15" fill="rgb(247,113,52)"/><text text-anchor="left" x="51.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="48" y="453" width="0" height="15" fill="rgb(215,122,39)"/><text text-anchor="left" x="51.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="437" width="0" height="15" fill="rgb(230,62,47)"/><text text-anchor="left" x="51.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="421" width="0" height="15" fill="rgb(251,62,27)"/><text text-anchor="left" x="51.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="48" y="405" width="0" height="15" fill="rgb(208,11,49)"/><text text-anchor="left" x="51.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="48" y="389" width="0" height="15" fill="rgb(225,158,51)"/><text text-anchor="left" x="51.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="48" y="373" width="0" height="15" fill="rgb(240,100,34)"/><text text-anchor="left" x="51.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::InliningPhase&gt; (1 samples, 0.02%)</title><rect x="48" y="357" width="0" height="15" fill="rgb(218,5,47)"/><text text-anchor="left" x="51.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::InliningPhase::Run (1 samples, 0.02%)</title><rect x="48" y="341" width="0" height="15" fill="rgb(227,85,34)"/><text text-anchor="left" x="51.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceNode (1 samples, 0.02%)</title><rect x="48" y="325" width="0" height="15" fill="rgb(232,94,19)"/><text text-anchor="left" x="51.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceTop (1 samples, 0.02%)</title><rect x="48" y="309" width="0" height="15" fill="rgb(231,121,52)"/><text text-anchor="left" x="51.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::Reduce (1 samples, 0.02%)</title><rect x="48" y="293" width="0" height="15" fill="rgb(231,19,26)"/><text text-anchor="left" x="51.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSNativeContextSpecialization::ReduceJSLoadProperty (1 samples, 0.02%)</title><rect x="48" y="277" width="0" height="15" fill="rgb(231,63,16)"/><text text-anchor="left" x="51.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSNativeContextSpecialization::ReducePropertyAccess(v8::internal::compiler::Node*, v8::internal::compiler::Node*, v8::base::Optional (1 samples, 0.02%)</title><rect x="48" y="261" width="0" height="15" fill="rgb(205,114,10)"/><text text-anchor="left" x="51.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapBroker::ProcessFeedbackForPropertyAccess(v8::internal::compiler::FeedbackSource const&amp;, v8::internal::compiler::AccessMode, v8::base::Optional (1 samples, 0.02%)</title><rect x="48" y="245" width="0" height="15" fill="rgb(231,117,3)"/><text text-anchor="left" x="51.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapBroker::ReadFeedbackForPropertyAccess(v8::internal::compiler::FeedbackSource const&amp;, v8::internal::compiler::AccessMode, v8::base::Optional (1 samples, 0.02%)</title><rect x="48" y="229" width="0" height="15" fill="rgb(229,191,11)"/><text text-anchor="left" x="51.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapBroker::ProcessFeedbackMapsForElementAccess(std::__1::vector&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, std::__1::allocator&lt;v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="213" width="0" height="15" fill="rgb(206,69,12)"/><text text-anchor="left" x="51.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::ZoneVector&lt;v8::internal::Handle&lt;v8::internal::Map&gt; &gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, std::__1::__hash_value_type&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::ZoneVector&lt;v8::internal::Handle&lt;v8::internal::Map&gt; &gt; &gt;, v8::internal::Handle&lt;v8::internal::Map&gt;::hash, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, std::__1::__hash_value_type&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::ZoneVector&lt;v8::internal::Handle&lt;v8::internal::Map&gt; &gt; &gt;, v8::internal::Handle&lt;v8::internal::Map&gt;::equal_to, true&gt;, v8::internal::ZoneAllocator&lt;std::__1::__hash_value_type&lt;v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::ZoneVector&lt;v8::internal::Handle&lt;v8::internal::Map&gt; &gt; &gt; &gt; &gt;::__rehash (1 samples, 0.02%)</title><rect x="48" y="197" width="0" height="15" fill="rgb(211,91,54)"/><text text-anchor="left" x="51.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CompileLazy (1 samples, 0.02%)</title><rect x="48" y="469" width="0" height="15" fill="rgb(221,217,44)"/><text text-anchor="left" x="51.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="48" y="453" width="0" height="15" fill="rgb(245,9,52)"/><text text-anchor="left" x="51.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileLazy (1 samples, 0.02%)</title><rect x="48" y="437" width="0" height="15" fill="rgb(224,54,3)"/><text text-anchor="left" x="51.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::Compile(v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="421" width="0" height="15" fill="rgb(211,9,18)"/><text text-anchor="left" x="51.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::Compile(v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="405" width="0" height="15" fill="rgb(228,206,9)"/><text text-anchor="left" x="51.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::parsing::ParseFunction(v8::internal::ParseInfo*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="389" width="0" height="15" fill="rgb(252,228,20)"/><text text-anchor="left" x="51.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::ParseFunction(v8::internal::Isolate*, v8::internal::ParseInfo*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="48" y="373" width="0" height="15" fill="rgb(237,46,54)"/><text text-anchor="left" x="51.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::DoParseFunction (1 samples, 0.02%)</title><rect x="48" y="357" width="0" height="15" fill="rgb(246,42,30)"/><text text-anchor="left" x="51.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionSyntaxKind, v8::internal::LanguageMode, v8::internal::ZoneList (1 samples, 0.02%)</title><rect x="48" y="341" width="0" height="15" fill="rgb(236,0,0)"/><text text-anchor="left" x="51.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Parser::ParseFunction(v8::internal::ScopedList&lt;v8::internal::Statement*, void*&gt;*, v8::internal::AstRawString const*, int, v8::internal::FunctionKind, v8::internal::FunctionSyntaxKind, v8::internal::DeclarationScope*, int*, int*, bool*, int*, int*, v8::internal::ZoneList (1 samples, 0.02%)</title><rect x="48" y="325" width="0" height="15" fill="rgb(223,52,54)"/><text text-anchor="left" x="51.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseFunctionBody(v8::internal::ScopedList&lt;v8::internal::Statement*, void*&gt;*, v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&amp;, v8::internal::FunctionKind, v8::internal::FunctionSyntaxKind, v8::internal::ParserBase (1 samples, 0.02%)</title><rect x="48" y="309" width="0" height="15" fill="rgb(237,70,21)"/><text text-anchor="left" x="51.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseStatementListItem (1 samples, 0.02%)</title><rect x="48" y="293" width="0" height="15" fill="rgb(223,222,14)"/><text text-anchor="left" x="51.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ParserBase&lt;v8::internal::Parser&gt;::ParseVariableDeclarations(v8::internal::ParserBase&lt;v8::internal::Parser&gt;::VariableDeclarationContext, v8::internal::ParserBase&lt;v8::internal::Parser&gt;::DeclarationParsingResult*, v8::internal::ZoneList (1 samples, 0.02%)</title><rect x="48" y="277" width="0" height="15" fill="rgb(217,119,11)"/><text text-anchor="left" x="51.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="48" y="261" width="0" height="15" fill="rgb(242,121,19)"/><text text-anchor="left" x="51.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="48" y="245" width="0" height="15" fill="rgb(236,148,14)"/><text text-anchor="left" x="51.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="48" y="229" width="0" height="15" fill="rgb(208,111,54)"/><text text-anchor="left" x="51.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="48" y="213" width="0" height="15" fill="rgb(228,86,8)"/><text text-anchor="left" x="51.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="48" y="197" width="0" height="15" fill="rgb(244,159,18)"/><text text-anchor="left" x="51.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ConstructHandler (1 samples, 0.02%)</title><rect x="48" y="437" width="0" height="15" fill="rgb(218,128,30)"/><text text-anchor="left" x="51.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSBuiltinsConstructStub (1 samples, 0.02%)</title><rect x="48" y="421" width="0" height="15" fill="rgb(222,161,18)"/><text text-anchor="left" x="51.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayConstructor (1 samples, 0.02%)</title><rect x="48" y="405" width="0" height="15" fill="rgb(249,12,12)"/><text text-anchor="left" x="51.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (1 samples, 0.02%)</title><rect x="48" y="389" width="0" height="15" fill="rgb(205,96,13)"/><text text-anchor="left" x="51.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="48" y="373" width="0" height="15" fill="rgb(240,115,53)"/><text text-anchor="left" x="51.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="48" y="357" width="0" height="15" fill="rgb(230,84,54)"/><text text-anchor="left" x="51.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="48" y="341" width="0" height="15" fill="rgb(231,159,3)"/><text text-anchor="left" x="51.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="48" y="325" width="0" height="15" fill="rgb(245,96,28)"/><text text-anchor="left" x="51.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="48" y="309" width="0" height="15" fill="rgb(206,224,53)"/><text text-anchor="left" x="51.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="48" y="293" width="0" height="15" fill="rgb(220,193,43)"/><text text-anchor="left" x="51.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="48" y="277" width="0" height="15" fill="rgb(244,90,23)"/><text text-anchor="left" x="51.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="48" y="261" width="0" height="15" fill="rgb(242,146,7)"/><text text-anchor="left" x="51.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="48" y="245" width="0" height="15" fill="rgb(241,18,21)"/><text text-anchor="left" x="51.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Scavenger(v8::internal::ScavengerCollector*, v8::internal::Heap*, bool, v8::internal::Worklist&lt;v8::internal::MemoryChunk*, 64&gt;*, v8::internal::Worklist&lt;std::__1::pair&lt;v8::internal::HeapObject, int&gt;, 256&gt;*, v8::internal::Scavenger::PromotionList*, v8::internal::Worklist (1 samples, 0.02%)</title><rect x="48" y="229" width="0" height="15" fill="rgb(221,141,30)"/><text text-anchor="left" x="51.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeList::CreateFreeList (1 samples, 0.02%)</title><rect x="48" y="213" width="0" height="15" fill="rgb(222,86,34)"/><text text-anchor="left" x="51.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeListManyCached::FreeListManyCached (1 samples, 0.02%)</title><rect x="48" y="197" width="0" height="15" fill="rgb(232,206,22)"/><text text-anchor="left" x="51.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="48" y="181" width="0" height="15" fill="rgb(212,134,12)"/><text text-anchor="left" x="51.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="48" y="165" width="0" height="15" fill="rgb(243,8,11)"/><text text-anchor="left" x="51.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="48" y="149" width="0" height="15" fill="rgb(228,164,47)"/><text text-anchor="left" x="51.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="48" y="133" width="0" height="15" fill="rgb(227,89,25)"/><text text-anchor="left" x="51.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="48" y="117" width="0" height="15" fill="rgb(249,36,26)"/><text text-anchor="left" x="51.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ZoneUnorderedSet&lt;v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle&lt;v8::internal::JSObject&gt;::hash, v8::internal::Handle&lt;v8::internal::JSObject&gt;::equal_to&gt;::ZoneUnorderedSet (1 samples, 0.02%)</title><rect x="48" y="293" width="1" height="15" fill="rgb(213,2,5)"/><text text-anchor="left" x="51.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="48" y="405" width="1" height="15" fill="rgb(206,194,54)"/><text text-anchor="left" x="51.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (2 samples, 0.04%)</title><rect x="48" y="389" width="1" height="15" fill="rgb(232,189,11)"/><text text-anchor="left" x="51.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (2 samples, 0.04%)</title><rect x="48" y="373" width="1" height="15" fill="rgb(227,75,48)"/><text text-anchor="left" x="51.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (2 samples, 0.04%)</title><rect x="48" y="357" width="1" height="15" fill="rgb(215,127,31)"/><text text-anchor="left" x="51.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::Pipeline::NewCompilationJob(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="48" y="341" width="1" height="15" fill="rgb(205,202,1)"/><text text-anchor="left" x="51.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PipelineCompilationJob(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::SharedFunctionInfo&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="48" y="325" width="1" height="15" fill="rgb(226,191,14)"/><text text-anchor="left" x="51.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineData::PipelineData (2 samples, 0.04%)</title><rect x="48" y="309" width="1" height="15" fill="rgb(242,38,22)"/><text text-anchor="left" x="51.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::MachineOperatorBuilder::MachineOperatorBuilder(v8::internal::Zone*, v8::internal::MachineRepresentation, v8::base::Flags (1 samples, 0.02%)</title><rect x="49" y="293" width="0" height="15" fill="rgb(232,80,41)"/><text text-anchor="left" x="52.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="49" y="277" width="0" height="15" fill="rgb(247,48,29)"/><text text-anchor="left" x="52.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (3 samples, 0.06%)</title><rect x="48" y="437" width="1" height="15" fill="rgb(234,61,31)"/><text text-anchor="left" x="51.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (3 samples, 0.06%)</title><rect x="48" y="421" width="1" height="15" fill="rgb(250,15,48)"/><text text-anchor="left" x="51.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsAny (1 samples, 0.02%)</title><rect x="49" y="405" width="0" height="15" fill="rgb(248,184,5)"/><text text-anchor="left" x="52.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (5 samples, 0.09%)</title><rect x="48" y="453" width="1" height="15" fill="rgb(236,188,21)"/><text text-anchor="left" x="51.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_LdaNamedPropertyHandler (1 samples, 0.02%)</title><rect x="49" y="437" width="0" height="15" fill="rgb(207,60,15)"/><text text-anchor="left" x="52.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (1 samples, 0.02%)</title><rect x="49" y="421" width="0" height="15" fill="rgb(244,24,51)"/><text text-anchor="left" x="52.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_TypedArrayPrototypeBuffer (1 samples, 0.02%)</title><rect x="49" y="405" width="0" height="15" fill="rgb(246,144,19)"/><text text-anchor="left" x="52.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (1 samples, 0.02%)</title><rect x="49" y="389" width="0" height="15" fill="rgb(251,135,27)"/><text text-anchor="left" x="52.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::BackingStore::Allocate (1 samples, 0.02%)</title><rect x="49" y="373" width="0" height="15" fill="rgb(225,115,2)"/><text text-anchor="left" x="52.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (1 samples, 0.02%)</title><rect x="49" y="357" width="0" height="15" fill="rgb(207,152,30)"/><text text-anchor="left" x="52.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="49" y="341" width="0" height="15" fill="rgb(245,156,40)"/><text text-anchor="left" x="52.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="49" y="325" width="0" height="15" fill="rgb(239,176,18)"/><text text-anchor="left" x="52.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="49" y="309" width="0" height="15" fill="rgb(239,139,1)"/><text text-anchor="left" x="52.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="49" y="293" width="0" height="15" fill="rgb(230,105,10)"/><text text-anchor="left" x="52.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="49" y="277" width="0" height="15" fill="rgb(207,211,7)"/><text text-anchor="left" x="52.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (12 samples, 0.23%)</title><rect x="47" y="485" width="3" height="15" fill="rgb(244,97,35)"/><text text-anchor="left" x="50.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (6 samples, 0.11%)</title><rect x="48" y="469" width="2" height="15" fill="rgb(239,8,11)"/><text text-anchor="left" x="51.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StaKeyedPropertyHandler (1 samples, 0.02%)</title><rect x="49" y="453" width="1" height="15" fill="rgb(252,221,27)"/><text text-anchor="left" x="52.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="49" y="437" width="1" height="15" fill="rgb(233,111,37)"/><text text-anchor="left" x="52.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_SetKeyedProperty (1 samples, 0.02%)</title><rect x="49" y="421" width="1" height="15" fill="rgb(207,13,5)"/><text text-anchor="left" x="52.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::StoreOrigin, v8::Maybe (1 samples, 0.02%)</title><rect x="49" y="405" width="1" height="15" fill="rgb(207,178,48)"/><text text-anchor="left" x="52.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PropertyOrElement(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="49" y="389" width="1" height="15" fill="rgb(253,166,23)"/><text text-anchor="left" x="52.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)22, int&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)22&gt; &gt;::GetEntryForIndex (1 samples, 0.02%)</title><rect x="49" y="373" width="1" height="15" fill="rgb(248,0,4)"/><text text-anchor="left" x="52.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSEntry (155 samples, 2.94%)</title><rect x="15" y="549" width="35" height="15" fill="rgb(230,65,36)"/><text text-anchor="left" x="18.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSEntryTrampoline (155 samples, 2.94%)</title><rect x="15" y="533" width="35" height="15" fill="rgb(241,19,17)"/><text text-anchor="left" x="18.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArgumentsAdaptorTrampoline (155 samples, 2.94%)</title><rect x="15" y="517" width="35" height="15" fill="rgb(246,172,37)"/><text text-anchor="left" x="18.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (14 samples, 0.27%)</title><rect x="47" y="501" width="3" height="15" fill="rgb(222,72,41)"/><text text-anchor="left" x="50.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StarHandler (1 samples, 0.02%)</title><rect x="50" y="485" width="0" height="15" fill="rgb(208,153,17)"/><text text-anchor="left" x="53.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, int, v8::internal::Handle (157 samples, 2.98%)</title><rect x="15" y="581" width="35" height="15" fill="rgb(207,0,40)"/><text text-anchor="left" x="18.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::Invoke(v8::internal::Isolate*, v8::internal:: (156 samples, 2.96%)</title><rect x="15" y="565" width="35" height="15" fill="rgb(224,51,9)"/><text text-anchor="left" x="18.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Code::OffHeapInstructionStart (1 samples, 0.02%)</title><rect x="50" y="549" width="0" height="15" fill="rgb(237,158,43)"/><text text-anchor="left" x="53.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::EmbeddedData::InstructionStartOfBuiltin (1 samples, 0.02%)</title><rect x="50" y="533" width="0" height="15" fill="rgb(239,125,10)"/><text text-anchor="left" x="53.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PromiseFulfillReactionJob (3 samples, 0.06%)</title><rect x="50" y="485" width="1" height="15" fill="rgb(222,187,11)"/><text text-anchor="left" x="53.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (1 samples, 0.02%)</title><rect x="51" y="485" width="0" height="15" fill="rgb(245,147,5)"/><text text-anchor="left" x="54.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitResolveClosure (1 samples, 0.02%)</title><rect x="75" y="469" width="0" height="15" fill="rgb(242,152,0)"/><text text-anchor="left" x="78.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallFunction_ReceiverIsNullOrUndefined (19 samples, 0.36%)</title><rect x="75" y="469" width="5" height="15" fill="rgb(205,160,23)"/><text text-anchor="left" x="78.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsNullOrUndefined (8 samples, 0.15%)</title><rect x="80" y="469" width="1" height="15" fill="rgb(223,28,23)"/><text text-anchor="left" x="83.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (1 samples, 0.02%)</title><rect x="81" y="469" width="1" height="15" fill="rgb(237,180,17)"/><text text-anchor="left" x="84.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5b68 (1 samples, 0.02%)</title><rect x="84" y="453" width="0" height="15" fill="rgb(233,229,0)"/><text text-anchor="left" x="87.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8c48 (2 samples, 0.04%)</title><rect x="84" y="453" width="0" height="15" fill="rgb(214,13,29)"/><text text-anchor="left" x="87.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9f28 (1 samples, 0.02%)</title><rect x="84" y="453" width="1" height="15" fill="rgb(234,175,33)"/><text text-anchor="left" x="87.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccb60 (1 samples, 0.02%)</title><rect x="85" y="453" width="0" height="15" fill="rgb(229,92,0)"/><text text-anchor="left" x="88.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd940 (1 samples, 0.02%)</title><rect x="85" y="453" width="0" height="15" fill="rgb(225,67,48)"/><text text-anchor="left" x="88.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd948 (1 samples, 0.02%)</title><rect x="85" y="453" width="0" height="15" fill="rgb(206,51,50)"/><text text-anchor="left" x="88.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d24a8 (1 samples, 0.02%)</title><rect x="85" y="453" width="0" height="15" fill="rgb(211,99,23)"/><text text-anchor="left" x="88.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d24b7 (1 samples, 0.02%)</title><rect x="85" y="453" width="1" height="15" fill="rgb(244,213,37)"/><text text-anchor="left" x="88.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d63c8 (1 samples, 0.02%)</title><rect x="86" y="453" width="0" height="15" fill="rgb(217,127,23)"/><text text-anchor="left" x="89.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9c80 (1 samples, 0.02%)</title><rect x="86" y="453" width="0" height="15" fill="rgb(245,38,37)"/><text text-anchor="left" x="89.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5b7c (1 samples, 0.02%)</title><rect x="90" y="437" width="0" height="15" fill="rgb(207,12,44)"/><text text-anchor="left" x="93.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5c57 (1 samples, 0.02%)</title><rect x="90" y="437" width="0" height="15" fill="rgb(253,68,1)"/><text text-anchor="left" x="93.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5cde (1 samples, 0.02%)</title><rect x="90" y="437" width="0" height="15" fill="rgb(241,170,54)"/><text text-anchor="left" x="93.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5cee (1 samples, 0.02%)</title><rect x="90" y="437" width="0" height="15" fill="rgb(215,159,37)"/><text text-anchor="left" x="93.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5edc (1 samples, 0.02%)</title><rect x="90" y="437" width="1" height="15" fill="rgb(212,69,15)"/><text text-anchor="left" x="93.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5f4c (1 samples, 0.02%)</title><rect x="91" y="437" width="0" height="15" fill="rgb(239,112,21)"/><text text-anchor="left" x="94.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c5f54 (1 samples, 0.02%)</title><rect x="91" y="437" width="0" height="15" fill="rgb(229,142,48)"/><text text-anchor="left" x="94.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c60d4 (1 samples, 0.02%)</title><rect x="91" y="437" width="0" height="15" fill="rgb(242,128,14)"/><text text-anchor="left" x="94.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_TypedArrayPrototypeIndexOf (6 samples, 0.11%)</title><rect x="91" y="405" width="2" height="15" fill="rgb(236,13,20)"/><text text-anchor="left" x="94.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)17&gt; &gt;::IndexOfValue(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (4 samples, 0.08%)</title><rect x="92" y="389" width="1" height="15" fill="rgb(210,202,10)"/><text text-anchor="left" x="95.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6128 (7 samples, 0.13%)</title><rect x="91" y="437" width="2" height="15" fill="rgb(249,154,17)"/><text text-anchor="left" x="94.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (7 samples, 0.13%)</title><rect x="91" y="421" width="2" height="15" fill="rgb(209,128,36)"/><text text-anchor="left" x="94.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (1 samples, 0.02%)</title><rect x="93" y="405" width="0" height="15" fill="rgb(211,146,48)"/><text text-anchor="left" x="96.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6168 (1 samples, 0.02%)</title><rect x="93" y="437" width="0" height="15" fill="rgb(207,101,16)"/><text text-anchor="left" x="96.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6199 (1 samples, 0.02%)</title><rect x="93" y="437" width="0" height="15" fill="rgb(233,15,42)"/><text text-anchor="left" x="96.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c61c4 (1 samples, 0.02%)</title><rect x="93" y="437" width="1" height="15" fill="rgb(247,175,33)"/><text text-anchor="left" x="96.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6303 (10 samples, 0.19%)</title><rect x="94" y="437" width="2" height="15" fill="rgb(238,217,11)"/><text text-anchor="left" x="97.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (10 samples, 0.19%)</title><rect x="94" y="421" width="2" height="15" fill="rgb(216,165,25)"/><text text-anchor="left" x="97.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (7 samples, 0.13%)</title><rect x="94" y="405" width="2" height="15" fill="rgb(250,74,19)"/><text text-anchor="left" x="97.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfce3 (2 samples, 0.04%)</title><rect x="96" y="421" width="0" height="15" fill="rgb(249,163,2)"/><text text-anchor="left" x="99.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfce8 (1 samples, 0.02%)</title><rect x="96" y="421" width="1" height="15" fill="rgb(250,114,10)"/><text text-anchor="left" x="99.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfd1c (1 samples, 0.02%)</title><rect x="97" y="421" width="0" height="15" fill="rgb(211,60,20)"/><text text-anchor="left" x="100.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfd36 (1 samples, 0.02%)</title><rect x="97" y="421" width="0" height="15" fill="rgb(244,74,24)"/><text text-anchor="left" x="100.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="98" y="293" width="0" height="15" fill="rgb(244,14,36)"/><text text-anchor="left" x="101.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::EnsureAllocation (1 samples, 0.02%)</title><rect x="98" y="277" width="0" height="15" fill="rgb(217,104,19)"/><text text-anchor="left" x="101.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::AllocationObserver::AllocationStep (1 samples, 0.02%)</title><rect x="98" y="261" width="0" height="15" fill="rgb(232,228,48)"/><text text-anchor="left" x="101.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengeJob::ScheduleIdleTaskIfNeeded (1 samples, 0.02%)</title><rect x="98" y="245" width="0" height="15" fill="rgb(254,128,41)"/><text text-anchor="left" x="101.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultPlatform::IdleTasksEnabled (1 samples, 0.02%)</title><rect x="98" y="229" width="0" height="15" fill="rgb(222,0,29)"/><text text-anchor="left" x="101.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c329b (6 samples, 0.11%)</title><rect x="97" y="405" width="2" height="15" fill="rgb(241,56,50)"/><text text-anchor="left" x="100.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (6 samples, 0.11%)</title><rect x="97" y="389" width="2" height="15" fill="rgb(239,86,7)"/><text text-anchor="left" x="100.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="98" y="373" width="1" height="15" fill="rgb(212,202,30)"/><text text-anchor="left" x="101.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="98" y="357" width="1" height="15" fill="rgb(254,149,25)"/><text text-anchor="left" x="101.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="98" y="341" width="1" height="15" fill="rgb(249,65,25)"/><text text-anchor="left" x="101.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="98" y="325" width="1" height="15" fill="rgb(252,123,44)"/><text text-anchor="left" x="101.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="98" y="309" width="1" height="15" fill="rgb(231,5,13)"/><text text-anchor="left" x="101.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="98" y="293" width="1" height="15" fill="rgb(211,110,28)"/><text text-anchor="left" x="101.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="98" y="277" width="1" height="15" fill="rgb(239,216,5)"/><text text-anchor="left" x="101.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="98" y="261" width="1" height="15" fill="rgb(216,205,33)"/><text text-anchor="left" x="101.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::ResetLinearAllocationArea (1 samples, 0.02%)</title><rect x="98" y="245" width="1" height="15" fill="rgb(253,79,9)"/><text text-anchor="left" x="101.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="98" y="229" width="1" height="15" fill="rgb(225,90,19)"/><text text-anchor="left" x="101.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3358 (1 samples, 0.02%)</title><rect x="99" y="405" width="0" height="15" fill="rgb(216,108,54)"/><text text-anchor="left" x="102.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c337a (1 samples, 0.02%)</title><rect x="99" y="405" width="0" height="15" fill="rgb(252,109,40)"/><text text-anchor="left" x="102.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33a4 (1 samples, 0.02%)</title><rect x="99" y="405" width="0" height="15" fill="rgb(207,135,4)"/><text text-anchor="left" x="102.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33c7 (1 samples, 0.02%)</title><rect x="99" y="405" width="1" height="15" fill="rgb(222,27,27)"/><text text-anchor="left" x="102.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33ed (1 samples, 0.02%)</title><rect x="100" y="405" width="0" height="15" fill="rgb(230,94,33)"/><text text-anchor="left" x="103.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33f1 (1 samples, 0.02%)</title><rect x="100" y="405" width="0" height="15" fill="rgb(232,139,0)"/><text text-anchor="left" x="103.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3402 (1 samples, 0.02%)</title><rect x="100" y="405" width="0" height="15" fill="rgb(234,12,4)"/><text text-anchor="left" x="103.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3496 (1 samples, 0.02%)</title><rect x="100" y="405" width="0" height="15" fill="rgb(250,56,26)"/><text text-anchor="left" x="103.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34a5 (1 samples, 0.02%)</title><rect x="100" y="405" width="1" height="15" fill="rgb(218,201,17)"/><text text-anchor="left" x="103.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34a8 (1 samples, 0.02%)</title><rect x="101" y="405" width="0" height="15" fill="rgb(206,35,6)"/><text text-anchor="left" x="104.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34b4 (1 samples, 0.02%)</title><rect x="101" y="405" width="0" height="15" fill="rgb(224,118,27)"/><text text-anchor="left" x="104.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34cb (1 samples, 0.02%)</title><rect x="101" y="405" width="0" height="15" fill="rgb(214,64,48)"/><text text-anchor="left" x="104.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34ea (2 samples, 0.04%)</title><rect x="101" y="405" width="1" height="15" fill="rgb(217,136,3)"/><text text-anchor="left" x="104.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3534 (1 samples, 0.02%)</title><rect x="102" y="405" width="0" height="15" fill="rgb(229,176,10)"/><text text-anchor="left" x="105.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="103" y="341" width="0" height="15" fill="rgb(252,90,14)"/><text text-anchor="left" x="106.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (2 samples, 0.04%)</title><rect x="103" y="341" width="0" height="15" fill="rgb(219,118,49)"/><text text-anchor="left" x="106.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (2 samples, 0.04%)</title><rect x="103" y="325" width="0" height="15" fill="rgb(220,3,0)"/><text text-anchor="left" x="106.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="106" y="245" width="0" height="15" fill="rgb(240,3,7)"/><text text-anchor="left" x="109.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallWithArrayLike (20 samples, 0.38%)</title><rect x="102" y="389" width="5" height="15" fill="rgb(237,12,23)"/><text text-anchor="left" x="105.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (19 samples, 0.36%)</title><rect x="102" y="373" width="5" height="15" fill="rgb(231,223,27)"/><text text-anchor="left" x="105.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CreateListFromArrayLike (18 samples, 0.34%)</title><rect x="103" y="357" width="4" height="15" fill="rgb(233,126,25)"/><text text-anchor="left" x="106.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (14 samples, 0.27%)</title><rect x="103" y="341" width="4" height="15" fill="rgb(250,57,2)"/><text text-anchor="left" x="106.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (14 samples, 0.27%)</title><rect x="103" y="325" width="4" height="15" fill="rgb(242,55,1)"/><text text-anchor="left" x="106.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFixedArray (7 samples, 0.13%)</title><rect x="105" y="309" width="2" height="15" fill="rgb(224,83,37)"/><text text-anchor="left" x="108.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (6 samples, 0.11%)</title><rect x="105" y="293" width="2" height="15" fill="rgb(233,88,47)"/><text text-anchor="left" x="108.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="106" y="277" width="1" height="15" fill="rgb(239,133,32)"/><text text-anchor="left" x="109.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="106" y="261" width="1" height="15" fill="rgb(243,43,36)"/><text text-anchor="left" x="109.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="106" y="245" width="1" height="15" fill="rgb(228,142,6)"/><text text-anchor="left" x="109.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="106" y="229" width="1" height="15" fill="rgb(212,144,54)"/><text text-anchor="left" x="109.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="106" y="213" width="1" height="15" fill="rgb(249,5,43)"/><text text-anchor="left" x="109.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="106" y="197" width="1" height="15" fill="rgb(251,25,44)"/><text text-anchor="left" x="109.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="106" y="181" width="1" height="15" fill="rgb(217,164,6)"/><text text-anchor="left" x="109.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="106" y="165" width="1" height="15" fill="rgb(234,17,35)"/><text text-anchor="left" x="109.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="106" y="149" width="1" height="15" fill="rgb(205,176,43)"/><text text-anchor="left" x="109.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="106" y="133" width="1" height="15" fill="rgb(237,228,37)"/><text text-anchor="left" x="109.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="106" y="117" width="1" height="15" fill="rgb(241,12,7)"/><text text-anchor="left" x="109.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="106" y="101" width="1" height="15" fill="rgb(222,199,16)"/><text text-anchor="left" x="109.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c355c (28 samples, 0.53%)</title><rect x="102" y="405" width="6" height="15" fill="rgb(245,147,1)"/><text text-anchor="left" x="105.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringFromCharCode (8 samples, 0.15%)</title><rect x="107" y="389" width="1" height="15" fill="rgb(223,22,50)"/><text text-anchor="left" x="110.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c35b0 (1 samples, 0.02%)</title><rect x="108" y="405" width="1" height="15" fill="rgb(246,135,15)"/><text text-anchor="left" x="111.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3685 (1 samples, 0.02%)</title><rect x="109" y="405" width="0" height="15" fill="rgb(237,102,16)"/><text text-anchor="left" x="112.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="109" y="389" width="0" height="15" fill="rgb(250,228,39)"/><text text-anchor="left" x="112.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_malloc (1 samples, 0.02%)</title><rect x="113" y="293" width="0" height="15" fill="rgb(245,211,34)"/><text text-anchor="left" x="116.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="116" y="245" width="0" height="15" fill="rgb(226,170,6)"/><text text-anchor="left" x="119.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (16 samples, 0.30%)</title><rect x="113" y="325" width="4" height="15" fill="rgb(225,13,38)"/><text text-anchor="left" x="116.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (16 samples, 0.30%)</title><rect x="113" y="309" width="4" height="15" fill="rgb(242,0,26)"/><text text-anchor="left" x="116.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (15 samples, 0.28%)</title><rect x="113" y="293" width="4" height="15" fill="rgb(211,40,54)"/><text text-anchor="left" x="116.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (15 samples, 0.28%)</title><rect x="113" y="277" width="4" height="15" fill="rgb(238,80,26)"/><text text-anchor="left" x="116.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (14 samples, 0.27%)</title><rect x="113" y="261" width="4" height="15" fill="rgb(223,203,48)"/><text text-anchor="left" x="116.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (2 samples, 0.04%)</title><rect x="116" y="245" width="1" height="15" fill="rgb(235,91,52)"/><text text-anchor="left" x="119.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="119" y="229" width="1" height="15" fill="rgb(207,60,35)"/><text text-anchor="left" x="122.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (6 samples, 0.11%)</title><rect x="120" y="229" width="1" height="15" fill="rgb(219,81,1)"/><text text-anchor="left" x="123.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (15 samples, 0.28%)</title><rect x="118" y="277" width="3" height="15" fill="rgb(246,179,3)"/><text text-anchor="left" x="121.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (14 samples, 0.27%)</title><rect x="118" y="261" width="3" height="15" fill="rgb(224,217,31)"/><text text-anchor="left" x="121.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (14 samples, 0.27%)</title><rect x="118" y="245" width="3" height="15" fill="rgb(233,216,23)"/><text text-anchor="left" x="121.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (2 samples, 0.04%)</title><rect x="121" y="229" width="0" height="15" fill="rgb(214,202,17)"/><text text-anchor="left" x="124.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (18 samples, 0.34%)</title><rect x="118" y="309" width="4" height="15" fill="rgb(245,202,16)"/><text text-anchor="left" x="121.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (17 samples, 0.32%)</title><rect x="118" y="293" width="4" height="15" fill="rgb(246,8,17)"/><text text-anchor="left" x="121.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="121" y="277" width="1" height="15" fill="rgb(235,54,1)"/><text text-anchor="left" x="124.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (1 samples, 0.02%)</title><rect x="122" y="309" width="0" height="15" fill="rgb(228,130,16)"/><text text-anchor="left" x="125.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_malloc (1 samples, 0.02%)</title><rect x="122" y="245" width="1" height="15" fill="rgb(229,11,15)"/><text text-anchor="left" x="125.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (1 samples, 0.02%)</title><rect x="125" y="213" width="1" height="15" fill="rgb(227,176,33)"/><text text-anchor="left" x="128.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="126" y="213" width="0" height="15" fill="rgb(211,220,4)"/><text text-anchor="left" x="129.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="126" y="213" width="0" height="15" fill="rgb(228,222,41)"/><text text-anchor="left" x="129.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::BackingStore::Allocate (46 samples, 0.87%)</title><rect x="117" y="325" width="10" height="15" fill="rgb(226,141,43)"/><text text-anchor="left" x="120.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (23 samples, 0.44%)</title><rect x="122" y="309" width="5" height="15" fill="rgb(234,25,49)"/><text text-anchor="left" x="125.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (23 samples, 0.44%)</title><rect x="122" y="293" width="5" height="15" fill="rgb(247,95,0)"/><text text-anchor="left" x="125.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (22 samples, 0.42%)</title><rect x="122" y="277" width="5" height="15" fill="rgb(210,99,28)"/><text text-anchor="left" x="125.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (22 samples, 0.42%)</title><rect x="122" y="261" width="5" height="15" fill="rgb(246,177,19)"/><text text-anchor="left" x="125.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (19 samples, 0.36%)</title><rect x="123" y="245" width="4" height="15" fill="rgb(223,143,6)"/><text text-anchor="left" x="126.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (19 samples, 0.36%)</title><rect x="123" y="229" width="4" height="15" fill="rgb(217,17,47)"/><text text-anchor="left" x="126.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (4 samples, 0.08%)</title><rect x="126" y="213" width="1" height="15" fill="rgb(205,116,15)"/><text text-anchor="left" x="129.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (1 samples, 0.02%)</title><rect x="128" y="277" width="0" height="15" fill="rgb(245,89,36)"/><text text-anchor="left" x="131.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (2 samples, 0.04%)</title><rect x="133" y="165" width="0" height="15" fill="rgb(220,32,14)"/><text text-anchor="left" x="136.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (8 samples, 0.15%)</title><rect x="132" y="213" width="1" height="15" fill="rgb(210,184,19)"/><text text-anchor="left" x="135.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (8 samples, 0.15%)</title><rect x="132" y="197" width="1" height="15" fill="rgb(228,211,15)"/><text text-anchor="left" x="135.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (8 samples, 0.15%)</title><rect x="132" y="181" width="1" height="15" fill="rgb(247,82,35)"/><text text-anchor="left" x="135.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (1 samples, 0.02%)</title><rect x="133" y="165" width="0" height="15" fill="rgb(236,87,40)"/><text text-anchor="left" x="136.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="133" y="149" width="0" height="15" fill="rgb(244,32,39)"/><text text-anchor="left" x="136.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (12 samples, 0.23%)</title><rect x="131" y="245" width="3" height="15" fill="rgb(213,228,20)"/><text text-anchor="left" x="134.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (11 samples, 0.21%)</title><rect x="131" y="229" width="3" height="15" fill="rgb(220,138,21)"/><text text-anchor="left" x="134.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (2 samples, 0.04%)</title><rect x="133" y="213" width="1" height="15" fill="rgb(215,35,25)"/><text text-anchor="left" x="136.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::RegisterNew(v8::internal::Heap*, v8::internal::JSArrayBuffer, std::__1::shared_ptr (27 samples, 0.51%)</title><rect x="128" y="277" width="6" height="15" fill="rgb(233,91,44)"/><text text-anchor="left" x="131.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (21 samples, 0.40%)</title><rect x="130" y="261" width="4" height="15" fill="rgb(231,162,45)"/><text text-anchor="left" x="133.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__rehash (2 samples, 0.04%)</title><rect x="134" y="245" width="0" height="15" fill="rgb(234,66,46)"/><text text-anchor="left" x="137.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="134" y="229" width="0" height="15" fill="rgb(253,112,24)"/><text text-anchor="left" x="137.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="134" y="213" width="0" height="15" fill="rgb(228,114,31)"/><text text-anchor="left" x="137.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="134" y="197" width="0" height="15" fill="rgb(242,215,43)"/><text text-anchor="left" x="137.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="134" y="181" width="0" height="15" fill="rgb(232,68,14)"/><text text-anchor="left" x="137.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="134" y="165" width="0" height="15" fill="rgb(225,141,3)"/><text text-anchor="left" x="137.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="134" y="149" width="0" height="15" fill="rgb(227,154,27)"/><text text-anchor="left" x="137.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (4 samples, 0.08%)</title><rect x="134" y="277" width="1" height="15" fill="rgb(252,5,34)"/><text text-anchor="left" x="137.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Setup(v8::internal::SharedFlag, std::__1::shared_ptr (38 samples, 0.72%)</title><rect x="127" y="325" width="8" height="15" fill="rgb(233,209,33)"/><text text-anchor="left" x="130.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Attach(std::__1::shared_ptr (36 samples, 0.68%)</title><rect x="127" y="309" width="8" height="15" fill="rgb(222,88,36)"/><text text-anchor="left" x="130.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::RegisterBackingStore(v8::internal::JSArrayBuffer, std::__1::shared_ptr (36 samples, 0.68%)</title><rect x="127" y="293" width="8" height="15" fill="rgb(213,16,31)"/><text text-anchor="left" x="130.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="135" y="277" width="0" height="15" fill="rgb(217,115,17)"/><text text-anchor="left" x="138.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (113 samples, 2.15%)</title><rect x="110" y="373" width="26" height="15" fill="rgb(227,183,14)"/><text text-anchor="left" x="113.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_TypedArrayGetBuffer (113 samples, 2.15%)</title><rect x="110" y="357" width="26" height="15" fill="rgb(248,223,6)"/><text text-anchor="left" x="113.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (110 samples, 2.09%)</title><rect x="111" y="341" width="25" height="15" fill="rgb(232,135,19)"/><text text-anchor="left" x="114.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="135" y="325" width="1" height="15" fill="rgb(246,49,50)"/><text text-anchor="left" x="138.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="137" y="213" width="1" height="15" fill="rgb(207,36,17)"/><text text-anchor="left" x="140.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="137" y="197" width="1" height="15" fill="rgb(253,23,44)"/><text text-anchor="left" x="140.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3692 (130 samples, 2.47%)</title><rect x="109" y="405" width="29" height="15" fill="rgb(226,229,21)"/><text text-anchor="left" x="112.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (128 samples, 2.43%)</title><rect x="109" y="389" width="29" height="15" fill="rgb(217,62,30)"/><text text-anchor="left" x="112.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (10 samples, 0.19%)</title><rect x="136" y="373" width="2" height="15" fill="rgb(246,173,21)"/><text text-anchor="left" x="139.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="137" y="357" width="1" height="15" fill="rgb(221,7,30)"/><text text-anchor="left" x="140.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="137" y="341" width="1" height="15" fill="rgb(226,130,34)"/><text text-anchor="left" x="140.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="137" y="325" width="1" height="15" fill="rgb(213,91,34)"/><text text-anchor="left" x="140.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="137" y="309" width="1" height="15" fill="rgb(246,89,9)"/><text text-anchor="left" x="140.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="137" y="293" width="1" height="15" fill="rgb(217,18,46)"/><text text-anchor="left" x="140.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="137" y="277" width="1" height="15" fill="rgb(253,138,20)"/><text text-anchor="left" x="140.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="137" y="261" width="1" height="15" fill="rgb(221,46,31)"/><text text-anchor="left" x="140.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="137" y="245" width="1" height="15" fill="rgb(249,31,1)"/><text text-anchor="left" x="140.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="137" y="229" width="1" height="15" fill="rgb(211,162,10)"/><text text-anchor="left" x="140.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="138" y="213" width="0" height="15" fill="rgb(230,154,10)"/><text text-anchor="left" x="141.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="138" y="197" width="0" height="15" fill="rgb(231,82,39)"/><text text-anchor="left" x="141.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="138" y="181" width="0" height="15" fill="rgb(220,14,54)"/><text text-anchor="left" x="141.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="138" y="165" width="0" height="15" fill="rgb(235,42,18)"/><text text-anchor="left" x="141.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="138" y="149" width="0" height="15" fill="rgb(217,115,33)"/><text text-anchor="left" x="141.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::IterateAndScavengePromotedObjectsVisitor&gt; (1 samples, 0.02%)</title><rect x="138" y="133" width="0" height="15" fill="rgb(227,166,25)"/><text text-anchor="left" x="141.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="138" y="117" width="0" height="15" fill="rgb(225,174,53)"/><text text-anchor="left" x="141.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="138" y="389" width="0" height="15" fill="rgb(211,92,33)"/><text text-anchor="left" x="141.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c36c7 (10 samples, 0.19%)</title><rect x="138" y="405" width="2" height="15" fill="rgb(246,0,47)"/><text text-anchor="left" x="141.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallWithArrayLike (9 samples, 0.17%)</title><rect x="138" y="389" width="2" height="15" fill="rgb(248,199,21)"/><text text-anchor="left" x="141.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (7 samples, 0.13%)</title><rect x="139" y="373" width="1" height="15" fill="rgb(238,162,49)"/><text text-anchor="left" x="142.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CreateListFromArrayLike (6 samples, 0.11%)</title><rect x="139" y="357" width="1" height="15" fill="rgb(212,139,44)"/><text text-anchor="left" x="142.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (4 samples, 0.08%)</title><rect x="139" y="341" width="1" height="15" fill="rgb(238,78,8)"/><text text-anchor="left" x="142.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="140" y="325" width="0" height="15" fill="rgb(244,182,31)"/><text text-anchor="left" x="143.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFixedArray (1 samples, 0.02%)</title><rect x="140" y="309" width="0" height="15" fill="rgb(246,90,39)"/><text text-anchor="left" x="143.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c36fc (1 samples, 0.02%)</title><rect x="140" y="405" width="0" height="15" fill="rgb(233,4,40)"/><text text-anchor="left" x="143.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArgumentsAdaptorTrampoline (9 samples, 0.17%)</title><rect x="140" y="405" width="2" height="15" fill="rgb(227,31,29)"/><text text-anchor="left" x="143.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallFunction_ReceiverIsAny (4 samples, 0.08%)</title><rect x="142" y="405" width="1" height="15" fill="rgb(246,156,23)"/><text text-anchor="left" x="145.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfd53 (208 samples, 3.95%)</title><rect x="97" y="421" width="47" height="15" fill="rgb(207,204,0)"/><text text-anchor="left" x="100.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsAny (2 samples, 0.04%)</title><rect x="143" y="405" width="1" height="15" fill="rgb(207,19,41)"/><text text-anchor="left" x="146.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3496 (1 samples, 0.02%)</title><rect x="144" y="405" width="0" height="15" fill="rgb(248,42,49)"/><text text-anchor="left" x="147.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c637b (216 samples, 4.10%)</title><rect x="96" y="437" width="48" height="15" fill="rgb(224,28,46)"/><text text-anchor="left" x="99.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (2 samples, 0.04%)</title><rect x="144" y="421" width="0" height="15" fill="rgb(208,18,15)"/><text text-anchor="left" x="147.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c355c (1 samples, 0.02%)</title><rect x="144" y="405" width="0" height="15" fill="rgb(225,118,39)"/><text text-anchor="left" x="147.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallWithArrayLike (1 samples, 0.02%)</title><rect x="144" y="389" width="0" height="15" fill="rgb(250,19,41)"/><text text-anchor="left" x="147.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="144" y="373" width="0" height="15" fill="rgb(219,204,26)"/><text text-anchor="left" x="147.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CreateListFromArrayLike (1 samples, 0.02%)</title><rect x="144" y="357" width="0" height="15" fill="rgb(246,76,24)"/><text text-anchor="left" x="147.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="144" y="341" width="0" height="15" fill="rgb(225,225,30)"/><text text-anchor="left" x="147.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="144" y="325" width="0" height="15" fill="rgb(228,99,28)"/><text text-anchor="left" x="147.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c637f (2 samples, 0.04%)</title><rect x="144" y="437" width="1" height="15" fill="rgb(248,15,33)"/><text text-anchor="left" x="147.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6390 (1 samples, 0.02%)</title><rect x="145" y="437" width="0" height="15" fill="rgb(224,132,11)"/><text text-anchor="left" x="148.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c63c0 (1 samples, 0.02%)</title><rect x="145" y="437" width="0" height="15" fill="rgb(229,201,53)"/><text text-anchor="left" x="148.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c640e (2 samples, 0.04%)</title><rect x="145" y="437" width="1" height="15" fill="rgb(228,211,48)"/><text text-anchor="left" x="148.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c641f (1 samples, 0.02%)</title><rect x="146" y="437" width="0" height="15" fill="rgb(219,87,27)"/><text text-anchor="left" x="149.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6662 (1 samples, 0.02%)</title><rect x="146" y="437" width="0" height="15" fill="rgb(229,160,34)"/><text text-anchor="left" x="149.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6694 (7 samples, 0.13%)</title><rect x="146" y="437" width="2" height="15" fill="rgb(216,79,0)"/><text text-anchor="left" x="149.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (7 samples, 0.13%)</title><rect x="146" y="421" width="2" height="15" fill="rgb(206,46,51)"/><text text-anchor="left" x="149.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (4 samples, 0.08%)</title><rect x="147" y="405" width="1" height="15" fill="rgb(249,174,3)"/><text text-anchor="left" x="150.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c66af (1 samples, 0.02%)</title><rect x="148" y="437" width="0" height="15" fill="rgb(224,150,3)"/><text text-anchor="left" x="151.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfbcc (1 samples, 0.02%)</title><rect x="148" y="421" width="0" height="15" fill="rgb(208,46,1)"/><text text-anchor="left" x="151.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfbfb (1 samples, 0.02%)</title><rect x="148" y="421" width="0" height="15" fill="rgb(212,175,32)"/><text text-anchor="left" x="151.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfce3 (2 samples, 0.04%)</title><rect x="148" y="421" width="1" height="15" fill="rgb(236,191,48)"/><text text-anchor="left" x="151.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfce8 (1 samples, 0.02%)</title><rect x="149" y="421" width="0" height="15" fill="rgb(250,142,41)"/><text text-anchor="left" x="152.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3205 (1 samples, 0.02%)</title><rect x="149" y="405" width="0" height="15" fill="rgb(211,170,41)"/><text text-anchor="left" x="152.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="150" y="293" width="0" height="15" fill="rgb(220,18,47)"/><text text-anchor="left" x="153.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::EnsureAllocation (1 samples, 0.02%)</title><rect x="150" y="277" width="0" height="15" fill="rgb(214,189,49)"/><text text-anchor="left" x="153.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::AddFreshPage (1 samples, 0.02%)</title><rect x="150" y="261" width="0" height="15" fill="rgb(230,48,13)"/><text text-anchor="left" x="153.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="150" y="229" width="0" height="15" fill="rgb(231,118,33)"/><text text-anchor="left" x="153.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="150" y="213" width="0" height="15" fill="rgb(245,208,43)"/><text text-anchor="left" x="153.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="150" y="197" width="0" height="15" fill="rgb(210,35,33)"/><text text-anchor="left" x="153.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="150" y="181" width="0" height="15" fill="rgb(205,106,38)"/><text text-anchor="left" x="153.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="150" y="165" width="0" height="15" fill="rgb(215,109,35)"/><text text-anchor="left" x="153.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::IterateAndScavengePromotedObjectsVisitor&gt; (1 samples, 0.02%)</title><rect x="150" y="149" width="0" height="15" fill="rgb(254,146,4)"/><text text-anchor="left" x="153.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (3 samples, 0.06%)</title><rect x="150" y="373" width="0" height="15" fill="rgb(235,203,47)"/><text text-anchor="left" x="153.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (3 samples, 0.06%)</title><rect x="150" y="357" width="0" height="15" fill="rgb(254,136,35)"/><text text-anchor="left" x="153.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (3 samples, 0.06%)</title><rect x="150" y="341" width="0" height="15" fill="rgb(231,38,35)"/><text text-anchor="left" x="153.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="150" y="325" width="0" height="15" fill="rgb(232,103,18)"/><text text-anchor="left" x="153.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="150" y="309" width="0" height="15" fill="rgb(236,14,8)"/><text text-anchor="left" x="153.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="150" y="293" width="0" height="15" fill="rgb(248,111,32)"/><text text-anchor="left" x="153.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="150" y="277" width="0" height="15" fill="rgb(228,41,41)"/><text text-anchor="left" x="153.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="150" y="261" width="0" height="15" fill="rgb(215,200,4)"/><text text-anchor="left" x="153.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="150" y="245" width="0" height="15" fill="rgb(224,220,33)"/><text text-anchor="left" x="153.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Worklist&lt;v8::internal::MemoryChunk*, 64&gt;::~Worklist (1 samples, 0.02%)</title><rect x="150" y="229" width="0" height="15" fill="rgb(240,96,18)"/><text text-anchor="left" x="153.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="150" y="213" width="0" height="15" fill="rgb(226,115,24)"/><text text-anchor="left" x="153.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="150" y="197" width="0" height="15" fill="rgb(235,214,39)"/><text text-anchor="left" x="153.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="150" y="181" width="0" height="15" fill="rgb(244,91,1)"/><text text-anchor="left" x="153.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c329b (6 samples, 0.11%)</title><rect x="149" y="405" width="1" height="15" fill="rgb(214,144,25)"/><text text-anchor="left" x="152.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (6 samples, 0.11%)</title><rect x="149" y="389" width="1" height="15" fill="rgb(205,219,25)"/><text text-anchor="left" x="152.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="150" y="373" width="0" height="15" fill="rgb(215,169,26)"/><text text-anchor="left" x="153.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33ed (2 samples, 0.04%)</title><rect x="150" y="405" width="1" height="15" fill="rgb(208,58,41)"/><text text-anchor="left" x="153.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33f5 (1 samples, 0.02%)</title><rect x="151" y="405" width="0" height="15" fill="rgb(211,190,10)"/><text text-anchor="left" x="154.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c33f9 (1 samples, 0.02%)</title><rect x="151" y="405" width="0" height="15" fill="rgb(234,74,26)"/><text text-anchor="left" x="154.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c343e (2 samples, 0.04%)</title><rect x="151" y="405" width="1" height="15" fill="rgb(241,196,44)"/><text text-anchor="left" x="154.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3453 (1 samples, 0.02%)</title><rect x="152" y="405" width="0" height="15" fill="rgb(244,97,19)"/><text text-anchor="left" x="155.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c345d (1 samples, 0.02%)</title><rect x="152" y="405" width="0" height="15" fill="rgb(249,115,50)"/><text text-anchor="left" x="155.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c346c (1 samples, 0.02%)</title><rect x="152" y="405" width="0" height="15" fill="rgb(242,174,26)"/><text text-anchor="left" x="155.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3480 (2 samples, 0.04%)</title><rect x="152" y="405" width="1" height="15" fill="rgb(238,40,19)"/><text text-anchor="left" x="155.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3496 (1 samples, 0.02%)</title><rect x="153" y="405" width="0" height="15" fill="rgb(217,204,18)"/><text text-anchor="left" x="156.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34a5 (2 samples, 0.04%)</title><rect x="153" y="405" width="1" height="15" fill="rgb(208,197,44)"/><text text-anchor="left" x="156.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34ac (1 samples, 0.02%)</title><rect x="154" y="405" width="0" height="15" fill="rgb(218,176,35)"/><text text-anchor="left" x="157.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34b4 (1 samples, 0.02%)</title><rect x="154" y="405" width="0" height="15" fill="rgb(225,45,31)"/><text text-anchor="left" x="157.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34b8 (1 samples, 0.02%)</title><rect x="154" y="405" width="0" height="15" fill="rgb(226,25,3)"/><text text-anchor="left" x="157.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c34d8 (2 samples, 0.04%)</title><rect x="154" y="405" width="1" height="15" fill="rgb(234,103,21)"/><text text-anchor="left" x="157.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3502 (1 samples, 0.02%)</title><rect x="155" y="405" width="0" height="15" fill="rgb(239,189,23)"/><text text-anchor="left" x="158.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3507 (1 samples, 0.02%)</title><rect x="155" y="405" width="0" height="15" fill="rgb(226,124,20)"/><text text-anchor="left" x="158.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="155" y="341" width="1" height="15" fill="rgb(249,198,15)"/><text text-anchor="left" x="158.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (2 samples, 0.04%)</title><rect x="156" y="341" width="0" height="15" fill="rgb(220,224,10)"/><text text-anchor="left" x="159.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="156" y="325" width="0" height="15" fill="rgb(215,224,30)"/><text text-anchor="left" x="159.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallWithArrayLike (22 samples, 0.42%)</title><rect x="155" y="389" width="5" height="15" fill="rgb(245,98,26)"/><text text-anchor="left" x="158.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (22 samples, 0.42%)</title><rect x="155" y="373" width="5" height="15" fill="rgb(249,74,25)"/><text text-anchor="left" x="158.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CreateListFromArrayLike (21 samples, 0.40%)</title><rect x="155" y="357" width="5" height="15" fill="rgb(247,146,29)"/><text text-anchor="left" x="158.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (18 samples, 0.34%)</title><rect x="156" y="341" width="4" height="15" fill="rgb(221,71,30)"/><text text-anchor="left" x="159.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (17 samples, 0.32%)</title><rect x="156" y="325" width="4" height="15" fill="rgb(237,80,23)"/><text text-anchor="left" x="159.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFixedArray (5 samples, 0.09%)</title><rect x="159" y="309" width="1" height="15" fill="rgb(244,106,35)"/><text text-anchor="left" x="162.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (4 samples, 0.08%)</title><rect x="159" y="293" width="1" height="15" fill="rgb(208,163,5)"/><text text-anchor="left" x="162.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="160" y="277" width="0" height="15" fill="rgb(233,165,39)"/><text text-anchor="left" x="163.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="160" y="261" width="0" height="15" fill="rgb(215,182,35)"/><text text-anchor="left" x="163.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="160" y="245" width="0" height="15" fill="rgb(251,157,25)"/><text text-anchor="left" x="163.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GCTracer::Start (1 samples, 0.02%)</title><rect x="162" y="277" width="0" height="15" fill="rgb(251,183,53)"/><text text-anchor="left" x="165.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::GarbageCollectionPrologue (1 samples, 0.02%)</title><rect x="162" y="277" width="1" height="15" fill="rgb(209,228,22)"/><text text-anchor="left" x="165.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::Grow (1 samples, 0.02%)</title><rect x="162" y="261" width="1" height="15" fill="rgb(216,26,47)"/><text text-anchor="left" x="165.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SemiSpace::GrowTo (1 samples, 0.02%)</title><rect x="162" y="245" width="1" height="15" fill="rgb(237,49,20)"/><text text-anchor="left" x="165.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Page* v8::internal::MemoryAllocator::AllocatePage&lt;(v8::internal::MemoryAllocator::AllocationMode)1, v8::internal::SemiSpace&gt; (1 samples, 0.02%)</title><rect x="162" y="229" width="1" height="15" fill="rgb(221,92,16)"/><text text-anchor="left" x="165.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MemoryAllocator::AllocateChunk (1 samples, 0.02%)</title><rect x="162" y="213" width="1" height="15" fill="rgb(227,202,0)"/><text text-anchor="left" x="165.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MemoryAllocator::AllocateAlignedMemory (1 samples, 0.02%)</title><rect x="162" y="197" width="1" height="15" fill="rgb(217,156,5)"/><text text-anchor="left" x="165.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::OS::SetPermissions (1 samples, 0.02%)</title><rect x="162" y="181" width="1" height="15" fill="rgb(217,4,25)"/><text text-anchor="left" x="165.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c355c (34 samples, 0.65%)</title><rect x="155" y="405" width="8" height="15" fill="rgb(234,214,16)"/><text text-anchor="left" x="158.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringFromCharCode (12 samples, 0.23%)</title><rect x="160" y="389" width="3" height="15" fill="rgb(213,51,40)"/><text text-anchor="left" x="163.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (3 samples, 0.06%)</title><rect x="162" y="373" width="1" height="15" fill="rgb(213,208,32)"/><text text-anchor="left" x="165.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (3 samples, 0.06%)</title><rect x="162" y="357" width="1" height="15" fill="rgb(210,92,32)"/><text text-anchor="left" x="165.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (3 samples, 0.06%)</title><rect x="162" y="341" width="1" height="15" fill="rgb(224,145,49)"/><text text-anchor="left" x="165.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="162" y="325" width="1" height="15" fill="rgb(253,26,7)"/><text text-anchor="left" x="165.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="162" y="309" width="1" height="15" fill="rgb(216,191,19)"/><text text-anchor="left" x="165.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (3 samples, 0.06%)</title><rect x="162" y="293" width="1" height="15" fill="rgb(233,81,52)"/><text text-anchor="left" x="165.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="163" y="277" width="0" height="15" fill="rgb(231,175,13)"/><text text-anchor="left" x="166.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="163" y="261" width="0" height="15" fill="rgb(228,42,11)"/><text text-anchor="left" x="166.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="163" y="245" width="0" height="15" fill="rgb(230,146,17)"/><text text-anchor="left" x="166.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="163" y="229" width="0" height="15" fill="rgb(231,219,35)"/><text text-anchor="left" x="166.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="163" y="213" width="0" height="15" fill="rgb(227,111,30)"/><text text-anchor="left" x="166.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="163" y="197" width="0" height="15" fill="rgb(228,67,36)"/><text text-anchor="left" x="166.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="163" y="181" width="0" height="15" fill="rgb(245,64,25)"/><text text-anchor="left" x="166.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="163" y="165" width="0" height="15" fill="rgb(212,12,18)"/><text text-anchor="left" x="166.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="163" y="149" width="0" height="15" fill="rgb(210,24,8)"/><text text-anchor="left" x="166.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="163" y="133" width="0" height="15" fill="rgb(253,8,41)"/><text text-anchor="left" x="166.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="163" y="117" width="0" height="15" fill="rgb(217,22,54)"/><text text-anchor="left" x="166.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c356e (1 samples, 0.02%)</title><rect x="163" y="405" width="0" height="15" fill="rgb(230,174,34)"/><text text-anchor="left" x="166.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3650 (1 samples, 0.02%)</title><rect x="163" y="405" width="0" height="15" fill="rgb(251,185,6)"/><text text-anchor="left" x="166.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="165" y="341" width="0" height="15" fill="rgb(231,215,41)"/><text text-anchor="left" x="168.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (6 samples, 0.11%)</title><rect x="168" y="245" width="2" height="15" fill="rgb(237,106,0)"/><text text-anchor="left" x="171.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (24 samples, 0.46%)</title><rect x="165" y="293" width="6" height="15" fill="rgb(229,60,15)"/><text text-anchor="left" x="168.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (23 samples, 0.44%)</title><rect x="166" y="277" width="5" height="15" fill="rgb(230,211,9)"/><text text-anchor="left" x="169.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (21 samples, 0.40%)</title><rect x="166" y="261" width="5" height="15" fill="rgb(253,52,4)"/><text text-anchor="left" x="169.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (6 samples, 0.11%)</title><rect x="170" y="245" width="1" height="15" fill="rgb(247,143,11)"/><text text-anchor="left" x="173.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="171" y="229" width="0" height="15" fill="rgb(215,149,15)"/><text text-anchor="left" x="174.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (25 samples, 0.47%)</title><rect x="165" y="325" width="6" height="15" fill="rgb(218,2,7)"/><text text-anchor="left" x="168.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (25 samples, 0.47%)</title><rect x="165" y="309" width="6" height="15" fill="rgb(247,147,31)"/><text text-anchor="left" x="168.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="171" y="293" width="0" height="15" fill="rgb(254,222,50)"/><text text-anchor="left" x="174.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="173" y="229" width="0" height="15" fill="rgb(215,26,48)"/><text text-anchor="left" x="176.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (9 samples, 0.17%)</title><rect x="172" y="309" width="2" height="15" fill="rgb(206,203,21)"/><text text-anchor="left" x="175.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (7 samples, 0.13%)</title><rect x="172" y="293" width="2" height="15" fill="rgb(244,194,30)"/><text text-anchor="left" x="175.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (7 samples, 0.13%)</title><rect x="172" y="277" width="2" height="15" fill="rgb(247,109,31)"/><text text-anchor="left" x="175.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (6 samples, 0.11%)</title><rect x="172" y="261" width="2" height="15" fill="rgb(215,160,30)"/><text text-anchor="left" x="175.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (6 samples, 0.11%)</title><rect x="172" y="245" width="2" height="15" fill="rgb(214,47,26)"/><text text-anchor="left" x="175.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (3 samples, 0.06%)</title><rect x="173" y="229" width="1" height="15" fill="rgb(253,159,49)"/><text text-anchor="left" x="176.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_malloc (1 samples, 0.02%)</title><rect x="174" y="245" width="0" height="15" fill="rgb(214,196,36)"/><text text-anchor="left" x="177.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="175" y="213" width="0" height="15" fill="rgb(245,163,35)"/><text text-anchor="left" x="178.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (5 samples, 0.09%)</title><rect x="175" y="213" width="1" height="15" fill="rgb(228,46,27)"/><text text-anchor="left" x="178.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (13 samples, 0.25%)</title><rect x="174" y="293" width="3" height="15" fill="rgb(248,64,31)"/><text text-anchor="left" x="177.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (13 samples, 0.25%)</title><rect x="174" y="277" width="3" height="15" fill="rgb(223,21,52)"/><text text-anchor="left" x="177.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (13 samples, 0.25%)</title><rect x="174" y="261" width="3" height="15" fill="rgb(235,13,29)"/><text text-anchor="left" x="177.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (11 samples, 0.21%)</title><rect x="174" y="245" width="3" height="15" fill="rgb(223,210,29)"/><text text-anchor="left" x="177.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (11 samples, 0.21%)</title><rect x="174" y="229" width="3" height="15" fill="rgb(215,4,24)"/><text text-anchor="left" x="177.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (1 samples, 0.02%)</title><rect x="176" y="213" width="1" height="15" fill="rgb(230,35,45)"/><text text-anchor="left" x="179.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::BackingStore::Allocate (26 samples, 0.49%)</title><rect x="171" y="325" width="6" height="15" fill="rgb(233,21,42)"/><text text-anchor="left" x="174.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (14 samples, 0.27%)</title><rect x="174" y="309" width="3" height="15" fill="rgb(210,17,10)"/><text text-anchor="left" x="177.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="177" y="293" width="0" height="15" fill="rgb(254,20,23)"/><text text-anchor="left" x="180.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="184" y="165" width="1" height="15" fill="rgb(207,224,48)"/><text text-anchor="left" x="187.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="185" y="165" width="0" height="15" fill="rgb(217,16,17)"/><text text-anchor="left" x="188.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (5 samples, 0.09%)</title><rect x="185" y="165" width="1" height="15" fill="rgb(237,97,21)"/><text text-anchor="left" x="188.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (24 samples, 0.46%)</title><rect x="181" y="245" width="6" height="15" fill="rgb(223,67,27)"/><text text-anchor="left" x="184.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (24 samples, 0.46%)</title><rect x="181" y="229" width="6" height="15" fill="rgb(222,150,11)"/><text text-anchor="left" x="184.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (24 samples, 0.46%)</title><rect x="181" y="213" width="6" height="15" fill="rgb(219,76,52)"/><text text-anchor="left" x="184.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (24 samples, 0.46%)</title><rect x="181" y="197" width="6" height="15" fill="rgb(214,187,26)"/><text text-anchor="left" x="184.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (22 samples, 0.42%)</title><rect x="182" y="181" width="5" height="15" fill="rgb(205,54,42)"/><text text-anchor="left" x="185.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (3 samples, 0.06%)</title><rect x="186" y="165" width="1" height="15" fill="rgb(239,121,19)"/><text text-anchor="left" x="189.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__rehash (8 samples, 0.15%)</title><rect x="187" y="245" width="1" height="15" fill="rgb(253,111,50)"/><text text-anchor="left" x="190.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="188" y="229" width="0" height="15" fill="rgb(226,126,37)"/><text text-anchor="left" x="191.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="188" y="213" width="0" height="15" fill="rgb(217,72,47)"/><text text-anchor="left" x="191.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="188" y="197" width="0" height="15" fill="rgb(232,97,30)"/><text text-anchor="left" x="191.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="188" y="181" width="0" height="15" fill="rgb(217,118,38)"/><text text-anchor="left" x="191.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="188" y="165" width="0" height="15" fill="rgb(250,132,23)"/><text text-anchor="left" x="191.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::RegisterNew(v8::internal::Heap*, v8::internal::JSArrayBuffer, std::__1::shared_ptr (48 samples, 0.91%)</title><rect x="178" y="277" width="11" height="15" fill="rgb(253,195,34)"/><text text-anchor="left" x="181.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (41 samples, 0.78%)</title><rect x="179" y="261" width="10" height="15" fill="rgb(253,108,41)"/><text text-anchor="left" x="182.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::rehash (1 samples, 0.02%)</title><rect x="188" y="245" width="1" height="15" fill="rgb(246,34,38)"/><text text-anchor="left" x="191.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__next_prime (1 samples, 0.02%)</title><rect x="188" y="229" width="1" height="15" fill="rgb(214,86,0)"/><text text-anchor="left" x="191.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (3 samples, 0.06%)</title><rect x="189" y="277" width="0" height="15" fill="rgb(206,218,30)"/><text text-anchor="left" x="192.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (113 samples, 2.15%)</title><rect x="164" y="373" width="25" height="15" fill="rgb(210,93,15)"/><text text-anchor="left" x="167.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_TypedArrayGetBuffer (113 samples, 2.15%)</title><rect x="164" y="357" width="25" height="15" fill="rgb(221,176,40)"/><text text-anchor="left" x="167.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (109 samples, 2.07%)</title><rect x="165" y="341" width="24" height="15" fill="rgb(213,16,42)"/><text text-anchor="left" x="168.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Setup(v8::internal::SharedFlag, std::__1::shared_ptr (56 samples, 1.06%)</title><rect x="177" y="325" width="12" height="15" fill="rgb(221,206,28)"/><text text-anchor="left" x="180.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Attach(std::__1::shared_ptr (54 samples, 1.03%)</title><rect x="177" y="309" width="12" height="15" fill="rgb(230,204,21)"/><text text-anchor="left" x="180.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::RegisterBackingStore(v8::internal::JSArrayBuffer, std::__1::shared_ptr (54 samples, 1.03%)</title><rect x="177" y="293" width="12" height="15" fill="rgb(219,2,14)"/><text text-anchor="left" x="180.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="189" y="277" width="0" height="15" fill="rgb(234,66,10)"/><text text-anchor="left" x="192.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3692 (122 samples, 2.32%)</title><rect x="163" y="405" width="28" height="15" fill="rgb(220,100,47)"/><text text-anchor="left" x="166.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (122 samples, 2.32%)</title><rect x="163" y="389" width="28" height="15" fill="rgb(237,185,43)"/><text text-anchor="left" x="166.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (5 samples, 0.09%)</title><rect x="189" y="373" width="2" height="15" fill="rgb(234,172,32)"/><text text-anchor="left" x="192.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c36ac (1 samples, 0.02%)</title><rect x="191" y="405" width="0" height="15" fill="rgb(251,160,31)"/><text text-anchor="left" x="194.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallWithArrayLike (6 samples, 0.11%)</title><rect x="191" y="389" width="1" height="15" fill="rgb(212,111,6)"/><text text-anchor="left" x="194.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (3 samples, 0.06%)</title><rect x="191" y="373" width="1" height="15" fill="rgb(229,43,13)"/><text text-anchor="left" x="194.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CreateListFromArrayLike (3 samples, 0.06%)</title><rect x="191" y="357" width="1" height="15" fill="rgb(207,145,20)"/><text text-anchor="left" x="194.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="192" y="341" width="0" height="15" fill="rgb(220,33,40)"/><text text-anchor="left" x="195.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)19, unsigned short&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)19&gt; &gt;::CreateListFromArrayLike(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="192" y="325" width="0" height="15" fill="rgb(239,164,47)"/><text text-anchor="left" x="195.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFixedArray (1 samples, 0.02%)</title><rect x="192" y="309" width="0" height="15" fill="rgb(206,34,31)"/><text text-anchor="left" x="195.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c36c7 (9 samples, 0.17%)</title><rect x="191" y="405" width="2" height="15" fill="rgb(245,99,18)"/><text text-anchor="left" x="194.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringFromCharCode (3 samples, 0.06%)</title><rect x="192" y="389" width="1" height="15" fill="rgb(253,199,52)"/><text text-anchor="left" x="195.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c370a (1 samples, 0.02%)</title><rect x="193" y="405" width="0" height="15" fill="rgb(230,42,1)"/><text text-anchor="left" x="196.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArgumentsAdaptorTrampoline (1 samples, 0.02%)</title><rect x="193" y="405" width="0" height="15" fill="rgb(206,49,22)"/><text text-anchor="left" x="196.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallVarargs (8 samples, 0.15%)</title><rect x="193" y="405" width="2" height="15" fill="rgb(217,95,12)"/><text text-anchor="left" x="196.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallWithArrayLike (1 samples, 0.02%)</title><rect x="195" y="405" width="0" height="15" fill="rgb(206,49,49)"/><text text-anchor="left" x="198.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsAny (3 samples, 0.06%)</title><rect x="195" y="405" width="1" height="15" fill="rgb(251,122,35)"/><text text-anchor="left" x="198.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringAdd_CheckNone (2 samples, 0.04%)</title><rect x="196" y="405" width="0" height="15" fill="rgb(235,65,11)"/><text text-anchor="left" x="199.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfd53 (213 samples, 4.05%)</title><rect x="149" y="421" width="48" height="15" fill="rgb(254,216,42)"/><text text-anchor="left" x="152.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (1 samples, 0.02%)</title><rect x="196" y="405" width="1" height="15" fill="rgb(229,56,35)"/><text text-anchor="left" x="199.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6709 (220 samples, 4.18%)</title><rect x="148" y="437" width="49" height="15" fill="rgb(244,193,25)"/><text text-anchor="left" x="151.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (2 samples, 0.04%)</title><rect x="197" y="421" width="0" height="15" fill="rgb(247,115,30)"/><text text-anchor="left" x="200.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TestInstanceOfHandler (1 samples, 0.02%)</title><rect x="197" y="405" width="0" height="15" fill="rgb(220,179,7)"/><text text-anchor="left" x="200.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (1 samples, 0.02%)</title><rect x="197" y="389" width="0" height="15" fill="rgb(220,161,10)"/><text text-anchor="left" x="200.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c670d (1 samples, 0.02%)</title><rect x="197" y="437" width="0" height="15" fill="rgb(238,163,32)"/><text text-anchor="left" x="200.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e4e3c (1 samples, 0.02%)</title><rect x="197" y="421" width="1" height="15" fill="rgb(253,174,36)"/><text text-anchor="left" x="200.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6783 (2 samples, 0.04%)</title><rect x="197" y="437" width="1" height="15" fill="rgb(205,86,12)"/><text text-anchor="left" x="200.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e4e7b (1 samples, 0.02%)</title><rect x="198" y="421" width="0" height="15" fill="rgb(210,224,53)"/><text text-anchor="left" x="201.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c67ca (1 samples, 0.02%)</title><rect x="198" y="437" width="0" height="15" fill="rgb(205,35,33)"/><text text-anchor="left" x="201.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringConstructor (1 samples, 0.02%)</title><rect x="198" y="421" width="0" height="15" fill="rgb(211,53,23)"/><text text-anchor="left" x="201.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (1 samples, 0.02%)</title><rect x="198" y="389" width="1" height="15" fill="rgb(250,15,21)"/><text text-anchor="left" x="201.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`int v8::internal::FastAsciiConvert&lt;true&gt; (1 samples, 0.02%)</title><rect x="200" y="373" width="0" height="15" fill="rgb(229,150,6)"/><text text-anchor="left" x="203.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (8 samples, 0.15%)</title><rect x="200" y="373" width="2" height="15" fill="rgb(216,68,17)"/><text text-anchor="left" x="203.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::Flatten(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="202" y="373" width="0" height="15" fill="rgb(233,139,53)"/><text text-anchor="left" x="205.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object v8::internal::(anonymous namespace)::ConvertCase&lt;unibrow::ToLowercase&gt;(v8::internal::Handle&lt;v8::internal::String&gt;, v8::internal::Isolate*, unibrow::Mapping (15 samples, 0.28%)</title><rect x="199" y="389" width="3" height="15" fill="rgb(218,31,30)"/><text text-anchor="left" x="202.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::GetFlatContent(v8::internal::PerThreadAssertScopeDebugOnly&lt; (1 samples, 0.02%)</title><rect x="202" y="373" width="0" height="15" fill="rgb(215,74,24)"/><text text-anchor="left" x="205.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::Flatten(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="202" y="389" width="0" height="15" fill="rgb(231,175,3)"/><text text-anchor="left" x="205.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_StringPrototypeToLowerCase (20 samples, 0.38%)</title><rect x="198" y="405" width="5" height="15" fill="rgb(250,40,52)"/><text text-anchor="left" x="201.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::GetFlatContent(v8::internal::PerThreadAssertScopeDebugOnly&lt; (2 samples, 0.04%)</title><rect x="202" y="389" width="1" height="15" fill="rgb(239,199,44)"/><text text-anchor="left" x="205.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c680c (23 samples, 0.44%)</title><rect x="198" y="437" width="5" height="15" fill="rgb(240,97,16)"/><text text-anchor="left" x="201.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (21 samples, 0.40%)</title><rect x="198" y="421" width="5" height="15" fill="rgb(247,2,22)"/><text text-anchor="left" x="201.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object v8::internal::(anonymous namespace)::ConvertCase&lt;unibrow::ToLowercase&gt;(v8::internal::Handle&lt;v8::internal::String&gt;, v8::internal::Isolate*, unibrow::Mapping (1 samples, 0.02%)</title><rect x="203" y="405" width="0" height="15" fill="rgb(229,156,32)"/><text text-anchor="left" x="206.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6839 (1 samples, 0.02%)</title><rect x="203" y="437" width="0" height="15" fill="rgb(238,206,13)"/><text text-anchor="left" x="206.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringConstructor (1 samples, 0.02%)</title><rect x="203" y="421" width="0" height="15" fill="rgb(214,51,47)"/><text text-anchor="left" x="206.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c685b (1 samples, 0.02%)</title><rect x="203" y="437" width="1" height="15" fill="rgb(212,201,19)"/><text text-anchor="left" x="206.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringPrototypeTrim (1 samples, 0.02%)</title><rect x="203" y="421" width="1" height="15" fill="rgb(235,24,17)"/><text text-anchor="left" x="206.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c687d (3 samples, 0.06%)</title><rect x="204" y="437" width="0" height="15" fill="rgb(210,38,24)"/><text text-anchor="left" x="207.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c68d7 (1 samples, 0.02%)</title><rect x="204" y="437" width="0" height="15" fill="rgb(230,226,0)"/><text text-anchor="left" x="207.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c68f5 (3 samples, 0.06%)</title><rect x="204" y="437" width="1" height="15" fill="rgb(248,56,41)"/><text text-anchor="left" x="207.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RegExpPrototypeTestFast (3 samples, 0.06%)</title><rect x="204" y="421" width="1" height="15" fill="rgb(207,180,34)"/><text text-anchor="left" x="207.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2ea7 (2 samples, 0.04%)</title><rect x="207" y="405" width="0" height="15" fill="rgb(218,54,33)"/><text text-anchor="left" x="210.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2eb4 (2 samples, 0.04%)</title><rect x="207" y="405" width="1" height="15" fill="rgb(251,77,8)"/><text text-anchor="left" x="210.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2ebd (1 samples, 0.02%)</title><rect x="208" y="405" width="0" height="15" fill="rgb(217,159,45)"/><text text-anchor="left" x="211.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2f18 (2 samples, 0.04%)</title><rect x="208" y="405" width="0" height="15" fill="rgb(219,223,3)"/><text text-anchor="left" x="211.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6966 (15 samples, 0.28%)</title><rect x="205" y="437" width="4" height="15" fill="rgb(245,189,49)"/><text text-anchor="left" x="208.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RegExpPrototypeTestFast (15 samples, 0.28%)</title><rect x="205" y="421" width="4" height="15" fill="rgb(218,145,34)"/><text text-anchor="left" x="208.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c305b (1 samples, 0.02%)</title><rect x="208" y="405" width="1" height="15" fill="rgb(252,46,20)"/><text text-anchor="left" x="211.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c69ae (15 samples, 0.28%)</title><rect x="209" y="437" width="3" height="15" fill="rgb(207,129,11)"/><text text-anchor="left" x="212.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FindOrderedHashMapEntry (15 samples, 0.28%)</title><rect x="209" y="421" width="3" height="15" fill="rgb(206,68,31)"/><text text-anchor="left" x="212.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashMap::GetHash (8 samples, 0.15%)</title><rect x="210" y="405" width="2" height="15" fill="rgb(218,120,49)"/><text text-anchor="left" x="213.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::GetSimpleHash (7 samples, 0.13%)</title><rect x="210" y="389" width="2" height="15" fill="rgb(217,155,47)"/><text text-anchor="left" x="213.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::ComputeAndSetHash (7 samples, 0.13%)</title><rect x="210" y="373" width="2" height="15" fill="rgb(253,109,17)"/><text text-anchor="left" x="213.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`unsigned int v8::internal::StringHasher::HashSequentialString&lt;unsigned char&gt; (4 samples, 0.08%)</title><rect x="211" y="357" width="1" height="15" fill="rgb(234,140,0)"/><text text-anchor="left" x="214.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6a47 (3 samples, 0.06%)</title><rect x="212" y="437" width="1" height="15" fill="rgb(253,187,17)"/><text text-anchor="left" x="215.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapPrototypeSet (3 samples, 0.06%)</title><rect x="212" y="421" width="1" height="15" fill="rgb(243,189,53)"/><text text-anchor="left" x="215.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (1 samples, 0.02%)</title><rect x="213" y="421" width="0" height="15" fill="rgb(208,168,39)"/><text text-anchor="left" x="216.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6bde (8 samples, 0.15%)</title><rect x="213" y="437" width="1" height="15" fill="rgb(227,114,54)"/><text text-anchor="left" x="216.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (7 samples, 0.13%)</title><rect x="213" y="421" width="1" height="15" fill="rgb(253,108,18)"/><text text-anchor="left" x="216.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (6 samples, 0.11%)</title><rect x="213" y="405" width="1" height="15" fill="rgb(219,153,34)"/><text text-anchor="left" x="216.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6d16 (1 samples, 0.02%)</title><rect x="214" y="437" width="1" height="15" fill="rgb(213,115,38)"/><text text-anchor="left" x="217.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8c5c (1 samples, 0.02%)</title><rect x="215" y="421" width="0" height="15" fill="rgb(224,41,44)"/><text text-anchor="left" x="218.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8fbe (1 samples, 0.02%)</title><rect x="215" y="421" width="0" height="15" fill="rgb(239,81,49)"/><text text-anchor="left" x="218.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9075 (1 samples, 0.02%)</title><rect x="215" y="421" width="0" height="15" fill="rgb(238,128,24)"/><text text-anchor="left" x="218.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9079 (1 samples, 0.02%)</title><rect x="215" y="421" width="0" height="15" fill="rgb(227,14,12)"/><text text-anchor="left" x="218.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c90cc (1 samples, 0.02%)</title><rect x="215" y="421" width="1" height="15" fill="rgb(221,114,43)"/><text text-anchor="left" x="218.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9137 (1 samples, 0.02%)</title><rect x="216" y="421" width="0" height="15" fill="rgb(249,168,46)"/><text text-anchor="left" x="219.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c919a (1 samples, 0.02%)</title><rect x="216" y="421" width="0" height="15" fill="rgb(229,31,4)"/><text text-anchor="left" x="219.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c91a2 (1 samples, 0.02%)</title><rect x="216" y="421" width="0" height="15" fill="rgb(218,206,16)"/><text text-anchor="left" x="219.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c91c3 (1 samples, 0.02%)</title><rect x="216" y="421" width="1" height="15" fill="rgb(220,38,53)"/><text text-anchor="left" x="219.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c91d1 (1 samples, 0.02%)</title><rect x="217" y="421" width="0" height="15" fill="rgb(205,5,0)"/><text text-anchor="left" x="220.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c91df (1 samples, 0.02%)</title><rect x="217" y="421" width="0" height="15" fill="rgb(230,126,41)"/><text text-anchor="left" x="220.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (1 samples, 0.02%)</title><rect x="217" y="405" width="0" height="15" fill="rgb(238,108,28)"/><text text-anchor="left" x="220.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9204 (32 samples, 0.61%)</title><rect x="217" y="421" width="7" height="15" fill="rgb(236,132,1)"/><text text-anchor="left" x="220.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (31 samples, 0.59%)</title><rect x="217" y="405" width="7" height="15" fill="rgb(221,117,25)"/><text text-anchor="left" x="220.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (8 samples, 0.15%)</title><rect x="222" y="389" width="2" height="15" fill="rgb(209,85,15)"/><text text-anchor="left" x="225.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="224" y="373" width="0" height="15" fill="rgb(210,157,38)"/><text text-anchor="left" x="227.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="224" y="357" width="0" height="15" fill="rgb(210,50,7)"/><text text-anchor="left" x="227.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="224" y="341" width="0" height="15" fill="rgb(241,4,30)"/><text text-anchor="left" x="227.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="224" y="325" width="0" height="15" fill="rgb(250,202,7)"/><text text-anchor="left" x="227.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="224" y="309" width="0" height="15" fill="rgb(241,134,23)"/><text text-anchor="left" x="227.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="224" y="293" width="0" height="15" fill="rgb(222,96,6)"/><text text-anchor="left" x="227.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="224" y="277" width="0" height="15" fill="rgb(220,162,49)"/><text text-anchor="left" x="227.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="224" y="261" width="0" height="15" fill="rgb(236,45,30)"/><text text-anchor="left" x="227.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="224" y="245" width="0" height="15" fill="rgb(210,36,41)"/><text text-anchor="left" x="227.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="224" y="229" width="0" height="15" fill="rgb(236,2,37)"/><text text-anchor="left" x="227.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="224" y="213" width="0" height="15" fill="rgb(236,212,28)"/><text text-anchor="left" x="227.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="224" y="197" width="0" height="15" fill="rgb(253,37,33)"/><text text-anchor="left" x="227.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="224" y="181" width="0" height="15" fill="rgb(208,102,24)"/><text text-anchor="left" x="227.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="224" y="165" width="0" height="15" fill="rgb(224,39,16)"/><text text-anchor="left" x="227.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="224" y="149" width="0" height="15" fill="rgb(235,59,19)"/><text text-anchor="left" x="227.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9241 (1 samples, 0.02%)</title><rect x="224" y="421" width="0" height="15" fill="rgb(232,9,10)"/><text text-anchor="left" x="227.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)17&gt; &gt;::IndexOfValue(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="225" y="389" width="0" height="15" fill="rgb(219,227,44)"/><text text-anchor="left" x="228.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)17&gt; &gt;::IndexOfValue(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (3 samples, 0.06%)</title><rect x="227" y="373" width="0" height="15" fill="rgb(221,108,5)"/><text text-anchor="left" x="230.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (1 samples, 0.02%)</title><rect x="227" y="373" width="1" height="15" fill="rgb(228,11,37)"/><text text-anchor="left" x="230.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="227" y="357" width="1" height="15" fill="rgb(253,220,6)"/><text text-anchor="left" x="230.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_TypedArrayPrototypeIndexOf (13 samples, 0.25%)</title><rect x="225" y="389" width="3" height="15" fill="rgb(222,126,44)"/><text text-anchor="left" x="228.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="228" y="373" width="0" height="15" fill="rgb(232,67,34)"/><text text-anchor="left" x="231.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9271 (16 samples, 0.30%)</title><rect x="224" y="421" width="4" height="15" fill="rgb(205,157,22)"/><text text-anchor="left" x="227.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (16 samples, 0.30%)</title><rect x="224" y="405" width="4" height="15" fill="rgb(248,151,43)"/><text text-anchor="left" x="227.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::Validate(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="228" y="389" width="0" height="15" fill="rgb(206,27,21)"/><text text-anchor="left" x="231.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (1 samples, 0.02%)</title><rect x="228" y="405" width="0" height="15" fill="rgb(226,52,27)"/><text text-anchor="left" x="231.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9502 (11 samples, 0.21%)</title><rect x="228" y="421" width="2" height="15" fill="rgb(254,120,40)"/><text text-anchor="left" x="231.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (10 samples, 0.19%)</title><rect x="228" y="405" width="2" height="15" fill="rgb(230,44,54)"/><text text-anchor="left" x="231.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (2 samples, 0.04%)</title><rect x="230" y="389" width="0" height="15" fill="rgb(205,54,50)"/><text text-anchor="left" x="233.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9506 (1 samples, 0.02%)</title><rect x="230" y="421" width="1" height="15" fill="rgb(245,206,47)"/><text text-anchor="left" x="233.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c951a (2 samples, 0.04%)</title><rect x="231" y="421" width="0" height="15" fill="rgb(238,199,2)"/><text text-anchor="left" x="234.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9549 (1 samples, 0.02%)</title><rect x="231" y="421" width="0" height="15" fill="rgb(214,169,54)"/><text text-anchor="left" x="234.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (2 samples, 0.04%)</title><rect x="231" y="405" width="1" height="15" fill="rgb(227,125,47)"/><text text-anchor="left" x="234.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RecordWrite (1 samples, 0.02%)</title><rect x="232" y="389" width="0" height="15" fill="rgb(243,79,51)"/><text text-anchor="left" x="235.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::IncrementalMarking::RecordWriteFromCode (1 samples, 0.02%)</title><rect x="232" y="373" width="0" height="15" fill="rgb(237,173,23)"/><text text-anchor="left" x="235.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::IncrementalMarking::RecordWriteSlow (1 samples, 0.02%)</title><rect x="232" y="357" width="0" height="15" fill="rgb(216,87,19)"/><text text-anchor="left" x="235.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (24 samples, 0.46%)</title><rect x="232" y="389" width="5" height="15" fill="rgb(216,100,13)"/><text text-anchor="left" x="235.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::ToArrayIndexSlow (3 samples, 0.06%)</title><rect x="237" y="373" width="0" height="15" fill="rgb(214,129,43)"/><text text-anchor="left" x="240.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9566 (28 samples, 0.53%)</title><rect x="231" y="421" width="7" height="15" fill="rgb(231,52,29)"/><text text-anchor="left" x="234.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (26 samples, 0.49%)</title><rect x="232" y="405" width="6" height="15" fill="rgb(241,103,41)"/><text text-anchor="left" x="235.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::ToArrayIndexSlow (1 samples, 0.02%)</title><rect x="237" y="389" width="1" height="15" fill="rgb(213,160,29)"/><text text-anchor="left" x="240.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9579 (1 samples, 0.02%)</title><rect x="238" y="421" width="0" height="15" fill="rgb(228,67,6)"/><text text-anchor="left" x="241.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="240" y="309" width="0" height="15" fill="rgb(254,58,2)"/><text text-anchor="left" x="243.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::EnsureAllocation (1 samples, 0.02%)</title><rect x="240" y="293" width="0" height="15" fill="rgb(228,174,23)"/><text text-anchor="left" x="243.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::AddFreshPage (1 samples, 0.02%)</title><rect x="240" y="277" width="0" height="15" fill="rgb(244,96,13)"/><text text-anchor="left" x="243.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="240" y="389" width="0" height="15" fill="rgb(225,84,5)"/><text text-anchor="left" x="243.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="240" y="373" width="0" height="15" fill="rgb(226,9,25)"/><text text-anchor="left" x="243.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="240" y="357" width="0" height="15" fill="rgb(219,57,12)"/><text text-anchor="left" x="243.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="240" y="341" width="0" height="15" fill="rgb(205,185,4)"/><text text-anchor="left" x="243.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="240" y="325" width="0" height="15" fill="rgb(215,23,51)"/><text text-anchor="left" x="243.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="240" y="309" width="0" height="15" fill="rgb(218,199,20)"/><text text-anchor="left" x="243.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="240" y="293" width="0" height="15" fill="rgb(222,16,48)"/><text text-anchor="left" x="243.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="240" y="277" width="0" height="15" fill="rgb(244,60,27)"/><text text-anchor="left" x="243.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="240" y="261" width="0" height="15" fill="rgb(210,179,30)"/><text text-anchor="left" x="243.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="240" y="245" width="0" height="15" fill="rgb(247,100,50)"/><text text-anchor="left" x="243.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="240" y="229" width="0" height="15" fill="rgb(245,69,40)"/><text text-anchor="left" x="243.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="240" y="213" width="0" height="15" fill="rgb(247,201,44)"/><text text-anchor="left" x="243.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="240" y="197" width="0" height="15" fill="rgb(215,57,49)"/><text text-anchor="left" x="243.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="240" y="181" width="0" height="15" fill="rgb(254,149,33)"/><text text-anchor="left" x="243.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="240" y="165" width="0" height="15" fill="rgb(217,50,20)"/><text text-anchor="left" x="243.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_EnqueueMicrotask (2 samples, 0.04%)</title><rect x="240" y="389" width="1" height="15" fill="rgb(212,107,32)"/><text text-anchor="left" x="243.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c957c (15 samples, 0.28%)</title><rect x="238" y="421" width="3" height="15" fill="rgb(254,110,28)"/><text text-anchor="left" x="241.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitCaught (14 samples, 0.27%)</title><rect x="238" y="405" width="3" height="15" fill="rgb(214,177,37)"/><text text-anchor="left" x="241.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (2 samples, 0.04%)</title><rect x="241" y="389" width="0" height="15" fill="rgb(231,204,12)"/><text text-anchor="left" x="244.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c95f0 (1 samples, 0.02%)</title><rect x="241" y="421" width="0" height="15" fill="rgb(223,137,52)"/><text text-anchor="left" x="244.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9813 (1 samples, 0.02%)</title><rect x="241" y="421" width="1" height="15" fill="rgb(251,211,53)"/><text text-anchor="left" x="244.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="241" y="405" width="1" height="15" fill="rgb(206,129,16)"/><text text-anchor="left" x="244.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_StackGuard (1 samples, 0.02%)</title><rect x="241" y="389" width="1" height="15" fill="rgb(229,114,10)"/><text text-anchor="left" x="244.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::StackGuard::HandleInterrupts (1 samples, 0.02%)</title><rect x="241" y="373" width="1" height="15" fill="rgb(238,133,31)"/><text text-anchor="left" x="244.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::HandleGCRequest (1 samples, 0.02%)</title><rect x="241" y="357" width="1" height="15" fill="rgb(215,181,47)"/><text text-anchor="left" x="244.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="241" y="341" width="1" height="15" fill="rgb(228,129,46)"/><text text-anchor="left" x="244.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="241" y="325" width="1" height="15" fill="rgb(246,65,1)"/><text text-anchor="left" x="244.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::MarkCompact (1 samples, 0.02%)</title><rect x="241" y="309" width="1" height="15" fill="rgb(254,92,18)"/><text text-anchor="left" x="244.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MarkCompactCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="241" y="293" width="1" height="15" fill="rgb(251,137,10)"/><text text-anchor="left" x="244.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MarkCompactCollector::Evacuate (1 samples, 0.02%)</title><rect x="241" y="277" width="1" height="15" fill="rgb(239,19,37)"/><text text-anchor="left" x="244.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MarkCompactCollector::UpdatePointersAfterEvacuation (1 samples, 0.02%)</title><rect x="241" y="261" width="1" height="15" fill="rgb(222,85,0)"/><text text-anchor="left" x="244.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="241" y="245" width="1" height="15" fill="rgb(232,79,27)"/><text text-anchor="left" x="244.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="241" y="229" width="1" height="15" fill="rgb(227,102,10)"/><text text-anchor="left" x="244.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PointersUpdatingTask::RunInParallel (1 samples, 0.02%)</title><rect x="241" y="213" width="1" height="15" fill="rgb(229,135,44)"/><text text-anchor="left" x="244.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTrackerUpdatingItem::Process (1 samples, 0.02%)</title><rect x="241" y="197" width="1" height="15" fill="rgb(233,102,5)"/><text text-anchor="left" x="244.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="241" y="181" width="1" height="15" fill="rgb(227,114,7)"/><text text-anchor="left" x="244.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="241" y="165" width="1" height="15" fill="rgb(228,130,1)"/><text text-anchor="left" x="244.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (1 samples, 0.02%)</title><rect x="241" y="149" width="1" height="15" fill="rgb(244,78,0)"/><text text-anchor="left" x="244.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitCaught (1 samples, 0.02%)</title><rect x="242" y="421" width="0" height="15" fill="rgb(238,11,22)"/><text text-anchor="left" x="245.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6d80 (126 samples, 2.39%)</title><rect x="215" y="437" width="28" height="15" fill="rgb(222,209,30)"/><text text-anchor="left" x="218.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (4 samples, 0.08%)</title><rect x="242" y="421" width="1" height="15" fill="rgb(246,8,36)"/><text text-anchor="left" x="245.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::GarbageCollectionPrologue (1 samples, 0.02%)</title><rect x="245" y="309" width="0" height="15" fill="rgb(220,14,1)"/><text text-anchor="left" x="248.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::Grow (1 samples, 0.02%)</title><rect x="245" y="293" width="0" height="15" fill="rgb(220,140,9)"/><text text-anchor="left" x="248.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SemiSpace::GrowTo (1 samples, 0.02%)</title><rect x="245" y="277" width="0" height="15" fill="rgb(233,220,7)"/><text text-anchor="left" x="248.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Page* v8::internal::MemoryAllocator::AllocatePage&lt;(v8::internal::MemoryAllocator::AllocationMode)1, v8::internal::SemiSpace&gt; (1 samples, 0.02%)</title><rect x="245" y="261" width="0" height="15" fill="rgb(219,7,8)"/><text text-anchor="left" x="248.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MemoryAllocator::AllocateChunk (1 samples, 0.02%)</title><rect x="245" y="245" width="0" height="15" fill="rgb(211,183,26)"/><text text-anchor="left" x="248.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MemoryAllocator::AllocateAlignedMemory (1 samples, 0.02%)</title><rect x="245" y="229" width="0" height="15" fill="rgb(206,35,51)"/><text text-anchor="left" x="248.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__mprotect (1 samples, 0.02%)</title><rect x="245" y="213" width="0" height="15" fill="rgb(241,183,18)"/><text text-anchor="left" x="248.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (3 samples, 0.06%)</title><rect x="245" y="261" width="1" height="15" fill="rgb(211,114,36)"/><text text-anchor="left" x="248.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (3 samples, 0.06%)</title><rect x="245" y="245" width="1" height="15" fill="rgb(209,172,5)"/><text text-anchor="left" x="248.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (2 samples, 0.04%)</title><rect x="245" y="229" width="1" height="15" fill="rgb(210,212,48)"/><text text-anchor="left" x="248.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="245" y="213" width="1" height="15" fill="rgb(212,73,31)"/><text text-anchor="left" x="248.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="245" y="197" width="1" height="15" fill="rgb(213,109,38)"/><text text-anchor="left" x="248.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6d9e (13 samples, 0.25%)</title><rect x="243" y="437" width="3" height="15" fill="rgb(220,135,52)"/><text text-anchor="left" x="246.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (13 samples, 0.25%)</title><rect x="243" y="421" width="3" height="15" fill="rgb(223,108,19)"/><text text-anchor="left" x="246.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (5 samples, 0.09%)</title><rect x="245" y="405" width="1" height="15" fill="rgb(238,82,9)"/><text text-anchor="left" x="248.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (5 samples, 0.09%)</title><rect x="245" y="389" width="1" height="15" fill="rgb(219,204,31)"/><text text-anchor="left" x="248.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (5 samples, 0.09%)</title><rect x="245" y="373" width="1" height="15" fill="rgb(206,154,42)"/><text text-anchor="left" x="248.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (5 samples, 0.09%)</title><rect x="245" y="357" width="1" height="15" fill="rgb(230,7,41)"/><text text-anchor="left" x="248.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (5 samples, 0.09%)</title><rect x="245" y="341" width="1" height="15" fill="rgb(214,169,9)"/><text text-anchor="left" x="248.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (5 samples, 0.09%)</title><rect x="245" y="325" width="1" height="15" fill="rgb(209,48,1)"/><text text-anchor="left" x="248.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (4 samples, 0.08%)</title><rect x="245" y="309" width="1" height="15" fill="rgb(229,212,3)"/><text text-anchor="left" x="248.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (4 samples, 0.08%)</title><rect x="245" y="293" width="1" height="15" fill="rgb(237,44,47)"/><text text-anchor="left" x="248.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (4 samples, 0.08%)</title><rect x="245" y="277" width="1" height="15" fill="rgb(242,196,10)"/><text text-anchor="left" x="248.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Scavenger(v8::internal::ScavengerCollector*, v8::internal::Heap*, bool, v8::internal::Worklist&lt;v8::internal::MemoryChunk*, 64&gt;*, v8::internal::Worklist&lt;std::__1::pair&lt;v8::internal::HeapObject, int&gt;, 256&gt;*, v8::internal::Scavenger::PromotionList*, v8::internal::Worklist (1 samples, 0.02%)</title><rect x="246" y="261" width="0" height="15" fill="rgb(238,213,30)"/><text text-anchor="left" x="249.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeList::CreateFreeList (1 samples, 0.02%)</title><rect x="246" y="245" width="0" height="15" fill="rgb(222,179,9)"/><text text-anchor="left" x="249.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeListManyCached::FreeListManyCached (1 samples, 0.02%)</title><rect x="246" y="229" width="0" height="15" fill="rgb(220,82,9)"/><text text-anchor="left" x="249.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="246" y="213" width="0" height="15" fill="rgb(224,25,12)"/><text text-anchor="left" x="249.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6db1 (1 samples, 0.02%)</title><rect x="246" y="437" width="0" height="15" fill="rgb(250,173,46)"/><text text-anchor="left" x="249.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6dfe (1 samples, 0.02%)</title><rect x="246" y="437" width="0" height="15" fill="rgb(251,94,34)"/><text text-anchor="left" x="249.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="248" y="261" width="0" height="15" fill="rgb(253,186,26)"/><text text-anchor="left" x="251.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="248" y="245" width="0" height="15" fill="rgb(211,216,31)"/><text text-anchor="left" x="251.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="248" y="229" width="0" height="15" fill="rgb(215,111,12)"/><text text-anchor="left" x="251.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateRoots (1 samples, 0.02%)</title><rect x="248" y="261" width="0" height="15" fill="rgb(252,140,13)"/><text text-anchor="left" x="251.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateStrongRoots (1 samples, 0.02%)</title><rect x="248" y="245" width="0" height="15" fill="rgb(241,140,22)"/><text text-anchor="left" x="251.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Isolate::Iterate (1 samples, 0.02%)</title><rect x="248" y="229" width="0" height="15" fill="rgb(221,9,40)"/><text text-anchor="left" x="251.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::StandardFrame::IterateCompiledFrame (1 samples, 0.02%)</title><rect x="248" y="213" width="0" height="15" fill="rgb(228,60,21)"/><text text-anchor="left" x="251.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Code::OffHeapInstructionStart (1 samples, 0.02%)</title><rect x="248" y="197" width="0" height="15" fill="rgb(233,178,41)"/><text text-anchor="left" x="251.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::EmbeddedData::InstructionStartOfBuiltin (1 samples, 0.02%)</title><rect x="248" y="181" width="0" height="15" fill="rgb(253,155,18)"/><text text-anchor="left" x="251.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (3 samples, 0.06%)</title><rect x="248" y="405" width="1" height="15" fill="rgb(247,147,43)"/><text text-anchor="left" x="251.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (3 samples, 0.06%)</title><rect x="248" y="389" width="1" height="15" fill="rgb(254,78,47)"/><text text-anchor="left" x="251.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (3 samples, 0.06%)</title><rect x="248" y="373" width="1" height="15" fill="rgb(250,137,1)"/><text text-anchor="left" x="251.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="248" y="357" width="1" height="15" fill="rgb(220,152,36)"/><text text-anchor="left" x="251.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="248" y="341" width="1" height="15" fill="rgb(246,158,48)"/><text text-anchor="left" x="251.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (3 samples, 0.06%)</title><rect x="248" y="325" width="1" height="15" fill="rgb(232,207,7)"/><text text-anchor="left" x="251.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (3 samples, 0.06%)</title><rect x="248" y="309" width="1" height="15" fill="rgb(253,4,51)"/><text text-anchor="left" x="251.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (3 samples, 0.06%)</title><rect x="248" y="293" width="1" height="15" fill="rgb(211,193,13)"/><text text-anchor="left" x="251.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (3 samples, 0.06%)</title><rect x="248" y="277" width="1" height="15" fill="rgb(231,205,3)"/><text text-anchor="left" x="251.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::~ItemParallelJob (1 samples, 0.02%)</title><rect x="248" y="261" width="1" height="15" fill="rgb(213,138,42)"/><text text-anchor="left" x="251.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="248" y="245" width="1" height="15" fill="rgb(232,2,10)"/><text text-anchor="left" x="251.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="248" y="229" width="1" height="15" fill="rgb(210,115,20)"/><text text-anchor="left" x="251.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (1 samples, 0.02%)</title><rect x="248" y="213" width="1" height="15" fill="rgb(253,64,32)"/><text text-anchor="left" x="251.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (12 samples, 0.23%)</title><rect x="246" y="421" width="3" height="15" fill="rgb(230,41,33)"/><text text-anchor="left" x="249.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (1 samples, 0.02%)</title><rect x="249" y="405" width="0" height="15" fill="rgb(219,131,24)"/><text text-anchor="left" x="252.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="249" y="389" width="0" height="15" fill="rgb(229,51,39)"/><text text-anchor="left" x="252.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="249" y="373" width="0" height="15" fill="rgb(209,67,0)"/><text text-anchor="left" x="252.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="249" y="357" width="0" height="15" fill="rgb(240,38,25)"/><text text-anchor="left" x="252.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="249" y="341" width="0" height="15" fill="rgb(239,89,6)"/><text text-anchor="left" x="252.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="249" y="325" width="0" height="15" fill="rgb(218,159,1)"/><text text-anchor="left" x="252.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="249" y="309" width="0" height="15" fill="rgb(215,164,17)"/><text text-anchor="left" x="252.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GCTracer::Stop (1 samples, 0.02%)</title><rect x="249" y="293" width="0" height="15" fill="rgb(236,150,14)"/><text text-anchor="left" x="252.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GCTracer::Print (1 samples, 0.02%)</title><rect x="249" y="277" width="0" height="15" fill="rgb(214,229,54)"/><text text-anchor="left" x="252.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GCTracer::Output (1 samples, 0.02%)</title><rect x="249" y="261" width="0" height="15" fill="rgb(237,157,29)"/><text text-anchor="left" x="252.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::OS::VSNPrintF (1 samples, 0.02%)</title><rect x="249" y="245" width="0" height="15" fill="rgb(238,6,12)"/><text text-anchor="left" x="252.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`vsnprintf (1 samples, 0.02%)</title><rect x="249" y="229" width="0" height="15" fill="rgb(206,27,26)"/><text text-anchor="left" x="252.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`_vsnprintf (1 samples, 0.02%)</title><rect x="249" y="213" width="0" height="15" fill="rgb(235,212,48)"/><text text-anchor="left" x="252.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__v2printf (1 samples, 0.02%)</title><rect x="249" y="197" width="0" height="15" fill="rgb(218,152,9)"/><text text-anchor="left" x="252.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__vfprintf (1 samples, 0.02%)</title><rect x="249" y="181" width="0" height="15" fill="rgb(251,96,28)"/><text text-anchor="left" x="252.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__dtoa (1 samples, 0.02%)</title><rect x="249" y="165" width="0" height="15" fill="rgb(234,139,25)"/><text text-anchor="left" x="252.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6e2f (13 samples, 0.25%)</title><rect x="246" y="437" width="3" height="15" fill="rgb(209,50,0)"/><text text-anchor="left" x="249.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (1 samples, 0.02%)</title><rect x="249" y="421" width="0" height="15" fill="rgb(248,78,21)"/><text text-anchor="left" x="252.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6e3c (1 samples, 0.02%)</title><rect x="249" y="437" width="0" height="15" fill="rgb(222,151,22)"/><text text-anchor="left" x="252.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c6e8b (1 samples, 0.02%)</title><rect x="249" y="437" width="1" height="15" fill="rgb(248,23,53)"/><text text-anchor="left" x="252.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c7028 (1 samples, 0.02%)</title><rect x="250" y="437" width="0" height="15" fill="rgb(243,75,5)"/><text text-anchor="left" x="253.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d215d (1 samples, 0.02%)</title><rect x="250" y="421" width="0" height="15" fill="rgb(252,203,6)"/><text text-anchor="left" x="253.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d21ab (2 samples, 0.04%)</title><rect x="250" y="421" width="0" height="15" fill="rgb(232,74,33)"/><text text-anchor="left" x="253.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (2 samples, 0.04%)</title><rect x="250" y="405" width="0" height="15" fill="rgb(219,178,19)"/><text text-anchor="left" x="253.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (1 samples, 0.02%)</title><rect x="250" y="389" width="0" height="15" fill="rgb(234,56,40)"/><text text-anchor="left" x="253.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d21b3 (1 samples, 0.02%)</title><rect x="250" y="421" width="1" height="15" fill="rgb(207,55,32)"/><text text-anchor="left" x="253.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (1 samples, 0.02%)</title><rect x="251" y="405" width="0" height="15" fill="rgb(206,218,12)"/><text text-anchor="left" x="254.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d21d4 (8 samples, 0.15%)</title><rect x="251" y="421" width="1" height="15" fill="rgb(206,111,36)"/><text text-anchor="left" x="254.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (7 samples, 0.13%)</title><rect x="251" y="405" width="1" height="15" fill="rgb(206,108,39)"/><text text-anchor="left" x="254.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (7 samples, 0.13%)</title><rect x="251" y="389" width="1" height="15" fill="rgb(251,35,34)"/><text text-anchor="left" x="254.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="252" y="421" width="1" height="15" fill="rgb(247,208,30)"/><text text-anchor="left" x="255.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_LdaNamedPropertyHandler (1 samples, 0.02%)</title><rect x="252" y="405" width="1" height="15" fill="rgb(210,124,14)"/><text text-anchor="left" x="255.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c72ad (14 samples, 0.27%)</title><rect x="250" y="437" width="3" height="15" fill="rgb(223,160,49)"/><text text-anchor="left" x="253.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (1 samples, 0.02%)</title><rect x="253" y="421" width="0" height="15" fill="rgb(209,192,3)"/><text text-anchor="left" x="256.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c72c2 (1 samples, 0.02%)</title><rect x="253" y="437" width="0" height="15" fill="rgb(216,183,39)"/><text text-anchor="left" x="256.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (1 samples, 0.02%)</title><rect x="253" y="421" width="0" height="15" fill="rgb(242,152,48)"/><text text-anchor="left" x="256.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (1 samples, 0.02%)</title><rect x="253" y="405" width="0" height="15" fill="rgb(239,124,19)"/><text text-anchor="left" x="256.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="253" y="389" width="0" height="15" fill="rgb(246,186,21)"/><text text-anchor="left" x="256.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="253" y="373" width="0" height="15" fill="rgb(224,108,53)"/><text text-anchor="left" x="256.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="253" y="357" width="0" height="15" fill="rgb(207,228,26)"/><text text-anchor="left" x="256.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="253" y="341" width="0" height="15" fill="rgb(254,104,28)"/><text text-anchor="left" x="256.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="253" y="325" width="0" height="15" fill="rgb(250,20,49)"/><text text-anchor="left" x="256.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="253" y="309" width="0" height="15" fill="rgb(254,225,52)"/><text text-anchor="left" x="256.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="253" y="293" width="0" height="15" fill="rgb(231,72,40)"/><text text-anchor="left" x="256.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="253" y="277" width="0" height="15" fill="rgb(241,218,48)"/><text text-anchor="left" x="256.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="253" y="261" width="0" height="15" fill="rgb(221,86,3)"/><text text-anchor="left" x="256.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="253" y="245" width="0" height="15" fill="rgb(246,86,49)"/><text text-anchor="left" x="256.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="253" y="229" width="0" height="15" fill="rgb(244,25,36)"/><text text-anchor="left" x="256.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="253" y="213" width="0" height="15" fill="rgb(248,78,41)"/><text text-anchor="left" x="256.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="253" y="197" width="0" height="15" fill="rgb(252,29,6)"/><text text-anchor="left" x="256.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="253" y="181" width="0" height="15" fill="rgb(223,224,43)"/><text text-anchor="left" x="256.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="253" y="165" width="0" height="15" fill="rgb(223,222,24)"/><text text-anchor="left" x="256.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferCollector::FreeAllocations (1 samples, 0.02%)</title><rect x="253" y="277" width="0" height="15" fill="rgb(228,8,54)"/><text text-anchor="left" x="256.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultPlatform::CallOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="253" y="261" width="0" height="15" fill="rgb(211,129,33)"/><text text-anchor="left" x="256.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultWorkerThreadsTaskRunner::PostTask(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="253" y="245" width="0" height="15" fill="rgb(208,54,35)"/><text text-anchor="left" x="256.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DelayedTaskQueue::Append(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="253" y="229" width="0" height="15" fill="rgb(235,142,17)"/><text text-anchor="left" x="256.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvsignal (1 samples, 0.02%)</title><rect x="253" y="213" width="0" height="15" fill="rgb(251,161,48)"/><text text-anchor="left" x="256.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (3 samples, 0.06%)</title><rect x="253" y="277" width="1" height="15" fill="rgb(208,120,31)"/><text text-anchor="left" x="256.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (3 samples, 0.06%)</title><rect x="253" y="261" width="1" height="15" fill="rgb(205,158,1)"/><text text-anchor="left" x="256.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="254" y="245" width="0" height="15" fill="rgb(235,217,7)"/><text text-anchor="left" x="257.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="254" y="261" width="0" height="15" fill="rgb(227,101,39)"/><text text-anchor="left" x="257.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="254" y="245" width="0" height="15" fill="rgb(241,61,32)"/><text text-anchor="left" x="257.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="254" y="229" width="0" height="15" fill="rgb(246,68,5)"/><text text-anchor="left" x="257.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_unlock_slow (1 samples, 0.02%)</title><rect x="254" y="213" width="0" height="15" fill="rgb(211,228,13)"/><text text-anchor="left" x="257.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexdrop (1 samples, 0.02%)</title><rect x="254" y="197" width="0" height="15" fill="rgb(207,110,29)"/><text text-anchor="left" x="257.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (6 samples, 0.11%)</title><rect x="253" y="293" width="1" height="15" fill="rgb(254,77,31)"/><text text-anchor="left" x="256.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (2 samples, 0.04%)</title><rect x="254" y="277" width="0" height="15" fill="rgb(210,222,9)"/><text text-anchor="left" x="257.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libdispatch.dylib`_dispatch_semaphore_wait_slow (1 samples, 0.02%)</title><rect x="254" y="261" width="0" height="15" fill="rgb(214,203,3)"/><text text-anchor="left" x="257.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`semaphore_wait_trap (1 samples, 0.02%)</title><rect x="254" y="245" width="0" height="15" fill="rgb(209,77,31)"/><text text-anchor="left" x="257.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c7b4c (7 samples, 0.13%)</title><rect x="253" y="437" width="2" height="15" fill="rgb(220,168,8)"/><text text-anchor="left" x="256.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (7 samples, 0.13%)</title><rect x="253" y="421" width="2" height="15" fill="rgb(230,119,48)"/><text text-anchor="left" x="256.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (7 samples, 0.13%)</title><rect x="253" y="405" width="2" height="15" fill="rgb(229,210,16)"/><text text-anchor="left" x="256.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (7 samples, 0.13%)</title><rect x="253" y="389" width="2" height="15" fill="rgb(233,67,14)"/><text text-anchor="left" x="256.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (7 samples, 0.13%)</title><rect x="253" y="373" width="2" height="15" fill="rgb(250,187,30)"/><text text-anchor="left" x="256.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (7 samples, 0.13%)</title><rect x="253" y="357" width="2" height="15" fill="rgb(211,121,30)"/><text text-anchor="left" x="256.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (7 samples, 0.13%)</title><rect x="253" y="341" width="2" height="15" fill="rgb(240,201,38)"/><text text-anchor="left" x="256.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (7 samples, 0.13%)</title><rect x="253" y="325" width="2" height="15" fill="rgb(219,63,24)"/><text text-anchor="left" x="256.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (7 samples, 0.13%)</title><rect x="253" y="309" width="2" height="15" fill="rgb(231,229,20)"/><text text-anchor="left" x="256.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SemiSpace::Swap (1 samples, 0.02%)</title><rect x="254" y="293" width="1" height="15" fill="rgb(227,84,0)"/><text text-anchor="left" x="257.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8c48 (1 samples, 0.02%)</title><rect x="255" y="437" width="0" height="15" fill="rgb(218,178,42)"/><text text-anchor="left" x="258.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8ce0 (1 samples, 0.02%)</title><rect x="255" y="437" width="0" height="15" fill="rgb(244,150,7)"/><text text-anchor="left" x="258.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8ce8 (2 samples, 0.04%)</title><rect x="255" y="437" width="1" height="15" fill="rgb(231,56,27)"/><text text-anchor="left" x="258.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8d6b (1 samples, 0.02%)</title><rect x="256" y="437" width="0" height="15" fill="rgb(218,126,7)"/><text text-anchor="left" x="259.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8daa (1 samples, 0.02%)</title><rect x="256" y="437" width="0" height="15" fill="rgb(236,160,23)"/><text text-anchor="left" x="259.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="259" y="229" width="0" height="15" fill="rgb(254,37,45)"/><text text-anchor="left" x="262.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8e71 (14 samples, 0.27%)</title><rect x="256" y="437" width="3" height="15" fill="rgb(223,73,2)"/><text text-anchor="left" x="259.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (14 samples, 0.27%)</title><rect x="256" y="421" width="3" height="15" fill="rgb(213,8,19)"/><text text-anchor="left" x="259.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (9 samples, 0.17%)</title><rect x="257" y="405" width="2" height="15" fill="rgb(224,212,14)"/><text text-anchor="left" x="260.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="259" y="389" width="0" height="15" fill="rgb(225,38,3)"/><text text-anchor="left" x="262.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="259" y="373" width="0" height="15" fill="rgb(236,116,6)"/><text text-anchor="left" x="262.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="259" y="357" width="0" height="15" fill="rgb(223,155,23)"/><text text-anchor="left" x="262.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="259" y="341" width="0" height="15" fill="rgb(246,25,27)"/><text text-anchor="left" x="262.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="259" y="325" width="0" height="15" fill="rgb(214,164,8)"/><text text-anchor="left" x="262.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="259" y="309" width="0" height="15" fill="rgb(232,133,14)"/><text text-anchor="left" x="262.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="259" y="293" width="0" height="15" fill="rgb(236,196,24)"/><text text-anchor="left" x="262.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="259" y="277" width="0" height="15" fill="rgb(248,68,23)"/><text text-anchor="left" x="262.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="259" y="261" width="0" height="15" fill="rgb(221,137,0)"/><text text-anchor="left" x="262.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (2 samples, 0.04%)</title><rect x="259" y="245" width="0" height="15" fill="rgb(218,176,44)"/><text text-anchor="left" x="262.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="259" y="229" width="0" height="15" fill="rgb(246,125,37)"/><text text-anchor="left" x="262.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8ec4 (2 samples, 0.04%)</title><rect x="259" y="437" width="1" height="15" fill="rgb(226,78,26)"/><text text-anchor="left" x="262.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_EnqueueMicrotask (4 samples, 0.08%)</title><rect x="260" y="421" width="1" height="15" fill="rgb(251,189,51)"/><text text-anchor="left" x="263.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c8f0f (13 samples, 0.25%)</title><rect x="260" y="437" width="3" height="15" fill="rgb(217,149,42)"/><text text-anchor="left" x="263.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (9 samples, 0.17%)</title><rect x="261" y="421" width="2" height="15" fill="rgb(214,70,0)"/><text text-anchor="left" x="264.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9634 (1 samples, 0.02%)</title><rect x="263" y="437" width="0" height="15" fill="rgb(222,62,18)"/><text text-anchor="left" x="266.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="263" y="421" width="0" height="15" fill="rgb(209,157,6)"/><text text-anchor="left" x="266.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="263" y="405" width="0" height="15" fill="rgb(230,179,51)"/><text text-anchor="left" x="266.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="263" y="389" width="0" height="15" fill="rgb(248,154,45)"/><text text-anchor="left" x="266.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="263" y="373" width="0" height="15" fill="rgb(246,183,49)"/><text text-anchor="left" x="266.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="263" y="357" width="0" height="15" fill="rgb(229,117,31)"/><text text-anchor="left" x="266.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="263" y="341" width="0" height="15" fill="rgb(240,159,50)"/><text text-anchor="left" x="266.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="263" y="325" width="0" height="15" fill="rgb(224,178,25)"/><text text-anchor="left" x="266.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="263" y="309" width="0" height="15" fill="rgb(218,228,21)"/><text text-anchor="left" x="266.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="263" y="293" width="0" height="15" fill="rgb(239,107,15)"/><text text-anchor="left" x="266.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="263" y="277" width="0" height="15" fill="rgb(229,38,8)"/><text text-anchor="left" x="266.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="263" y="261" width="0" height="15" fill="rgb(240,174,30)"/><text text-anchor="left" x="266.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="263" y="245" width="0" height="15" fill="rgb(218,41,25)"/><text text-anchor="left" x="266.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9f24 (1 samples, 0.02%)</title><rect x="263" y="437" width="0" height="15" fill="rgb(233,33,37)"/><text text-anchor="left" x="266.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9f61 (2 samples, 0.04%)</title><rect x="263" y="437" width="0" height="15" fill="rgb(246,141,3)"/><text text-anchor="left" x="266.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9faf (1 samples, 0.02%)</title><rect x="263" y="437" width="1" height="15" fill="rgb(224,39,39)"/><text text-anchor="left" x="266.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c9fb7 (1 samples, 0.02%)</title><rect x="264" y="437" width="0" height="15" fill="rgb(223,158,5)"/><text text-anchor="left" x="267.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca010 (1 samples, 0.02%)</title><rect x="264" y="437" width="0" height="15" fill="rgb(205,87,31)"/><text text-anchor="left" x="267.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca032 (18 samples, 0.34%)</title><rect x="264" y="437" width="4" height="15" fill="rgb(229,72,15)"/><text text-anchor="left" x="267.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (18 samples, 0.34%)</title><rect x="264" y="421" width="4" height="15" fill="rgb(210,172,0)"/><text text-anchor="left" x="267.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca039 (1 samples, 0.02%)</title><rect x="268" y="437" width="0" height="15" fill="rgb(218,136,46)"/><text text-anchor="left" x="271.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca26d (1 samples, 0.02%)</title><rect x="268" y="437" width="1" height="15" fill="rgb(250,214,5)"/><text text-anchor="left" x="271.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dabe6 (1 samples, 0.02%)</title><rect x="268" y="421" width="1" height="15" fill="rgb(214,68,52)"/><text text-anchor="left" x="271.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d8c7c (1 samples, 0.02%)</title><rect x="269" y="421" width="0" height="15" fill="rgb(215,65,10)"/><text text-anchor="left" x="272.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d8d5f (1 samples, 0.02%)</title><rect x="269" y="421" width="0" height="15" fill="rgb(228,153,36)"/><text text-anchor="left" x="272.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d8db7 (12 samples, 0.23%)</title><rect x="269" y="421" width="3" height="15" fill="rgb(205,197,25)"/><text text-anchor="left" x="272.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (12 samples, 0.23%)</title><rect x="269" y="405" width="3" height="15" fill="rgb(214,199,37)"/><text text-anchor="left" x="272.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (6 samples, 0.11%)</title><rect x="270" y="389" width="2" height="15" fill="rgb(240,96,32)"/><text text-anchor="left" x="273.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d8dd3 (3 samples, 0.06%)</title><rect x="272" y="421" width="0" height="15" fill="rgb(246,104,30)"/><text text-anchor="left" x="275.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d8ef3 (1 samples, 0.02%)</title><rect x="272" y="421" width="1" height="15" fill="rgb(245,56,7)"/><text text-anchor="left" x="275.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3da917 (1 samples, 0.02%)</title><rect x="273" y="405" width="0" height="15" fill="rgb(248,94,8)"/><text text-anchor="left" x="276.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3da99c (1 samples, 0.02%)</title><rect x="273" y="405" width="0" height="15" fill="rgb(238,133,45)"/><text text-anchor="left" x="276.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (2 samples, 0.04%)</title><rect x="275" y="325" width="0" height="15" fill="rgb(208,174,29)"/><text text-anchor="left" x="278.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (2 samples, 0.04%)</title><rect x="275" y="309" width="0" height="15" fill="rgb(205,132,49)"/><text text-anchor="left" x="278.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::LookupIterator(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (4 samples, 0.08%)</title><rect x="276" y="293" width="0" height="15" fill="rgb(234,43,0)"/><text text-anchor="left" x="279.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInRegularHolder&lt;false&gt; (1 samples, 0.02%)</title><rect x="276" y="277" width="0" height="15" fill="rgb(232,12,5)"/><text text-anchor="left" x="279.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInRegularHolder&lt;false&gt; (1 samples, 0.02%)</title><rect x="276" y="293" width="1" height="15" fill="rgb(226,175,48)"/><text text-anchor="left" x="279.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PropertyOrElement(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (13 samples, 0.25%)</title><rect x="275" y="309" width="3" height="15" fill="rgb(244,182,9)"/><text text-anchor="left" x="278.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::LookupIterator::NextInternal&lt;false&gt; (7 samples, 0.13%)</title><rect x="277" y="293" width="1" height="15" fill="rgb(244,9,47)"/><text text-anchor="left" x="280.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInRegularHolder&lt;false&gt; (1 samples, 0.02%)</title><rect x="278" y="277" width="0" height="15" fill="rgb(253,171,8)"/><text text-anchor="left" x="281.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Isolate::IsInAnyContext (1 samples, 0.02%)</title><rect x="278" y="293" width="0" height="15" fill="rgb(216,97,43)"/><text text-anchor="left" x="281.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::ConditionVariable::~ConditionVariable (1 samples, 0.02%)</title><rect x="280" y="133" width="0" height="15" fill="rgb(233,161,30)"/><text text-anchor="left" x="283.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvwait (1 samples, 0.02%)</title><rect x="280" y="117" width="0" height="15" fill="rgb(228,200,10)"/><text text-anchor="left" x="283.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (7 samples, 0.13%)</title><rect x="280" y="133" width="1" height="15" fill="rgb(252,178,1)"/><text text-anchor="left" x="283.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (7 samples, 0.13%)</title><rect x="280" y="117" width="1" height="15" fill="rgb(219,141,15)"/><text text-anchor="left" x="283.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (4 samples, 0.08%)</title><rect x="280" y="101" width="1" height="15" fill="rgb(241,125,13)"/><text text-anchor="left" x="283.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (3 samples, 0.06%)</title><rect x="281" y="85" width="0" height="15" fill="rgb(220,97,41)"/><text text-anchor="left" x="284.00" y="95.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="281" y="69" width="0" height="15" fill="rgb(222,88,50)"/><text text-anchor="left" x="284.00" y="79.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateRoots (1 samples, 0.02%)</title><rect x="281" y="133" width="1" height="15" fill="rgb(247,36,9)"/><text text-anchor="left" x="284.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateStrongRoots (1 samples, 0.02%)</title><rect x="281" y="117" width="1" height="15" fill="rgb(208,152,6)"/><text text-anchor="left" x="284.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SerializerDeserializer::Iterate (1 samples, 0.02%)</title><rect x="281" y="101" width="1" height="15" fill="rgb(236,212,19)"/><text text-anchor="left" x="284.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (2 samples, 0.04%)</title><rect x="282" y="133" width="0" height="15" fill="rgb(248,140,20)"/><text text-anchor="left" x="285.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (2 samples, 0.04%)</title><rect x="282" y="117" width="0" height="15" fill="rgb(217,4,10)"/><text text-anchor="left" x="285.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (2 samples, 0.04%)</title><rect x="282" y="101" width="0" height="15" fill="rgb(218,114,42)"/><text text-anchor="left" x="285.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (2 samples, 0.04%)</title><rect x="282" y="85" width="0" height="15" fill="rgb(226,158,38)"/><text text-anchor="left" x="285.00" y="95.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::ScavengePage (2 samples, 0.04%)</title><rect x="282" y="69" width="0" height="15" fill="rgb(228,30,20)"/><text text-anchor="left" x="285.00" y="79.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (2 samples, 0.04%)</title><rect x="282" y="53" width="0" height="15" fill="rgb(209,75,6)"/><text text-anchor="left" x="285.00" y="63.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::PropertyArray&gt; v8::internal::Factory::CopyArrayAndGrow&lt;v8::internal::PropertyArray&gt;(v8::internal::Handle (14 samples, 0.27%)</title><rect x="279" y="261" width="3" height="15" fill="rgb(208,214,14)"/><text text-anchor="left" x="282.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (13 samples, 0.25%)</title><rect x="279" y="245" width="3" height="15" fill="rgb(229,152,20)"/><text text-anchor="left" x="282.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (13 samples, 0.25%)</title><rect x="279" y="229" width="3" height="15" fill="rgb(247,72,11)"/><text text-anchor="left" x="282.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (13 samples, 0.25%)</title><rect x="279" y="213" width="3" height="15" fill="rgb(238,35,54)"/><text text-anchor="left" x="282.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (12 samples, 0.23%)</title><rect x="280" y="197" width="2" height="15" fill="rgb(240,15,47)"/><text text-anchor="left" x="283.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (12 samples, 0.23%)</title><rect x="280" y="181" width="2" height="15" fill="rgb(218,5,37)"/><text text-anchor="left" x="283.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (12 samples, 0.23%)</title><rect x="280" y="165" width="2" height="15" fill="rgb(244,89,23)"/><text text-anchor="left" x="283.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (12 samples, 0.23%)</title><rect x="280" y="149" width="2" height="15" fill="rgb(231,173,48)"/><text text-anchor="left" x="283.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Finalize (1 samples, 0.02%)</title><rect x="282" y="133" width="0" height="15" fill="rgb(241,74,52)"/><text text-anchor="left" x="285.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Worklist&lt;v8::internal::MemoryChunk*, 64&gt;::FlushToGlobal (1 samples, 0.02%)</title><rect x="282" y="117" width="0" height="15" fill="rgb(207,180,28)"/><text text-anchor="left" x="285.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::ApplyTransitionToDataProperty(v8::internal::Handle (18 samples, 0.34%)</title><rect x="278" y="293" width="4" height="15" fill="rgb(236,143,13)"/><text text-anchor="left" x="281.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::MigrateToMap(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (17 samples, 0.32%)</title><rect x="279" y="277" width="3" height="15" fill="rgb(211,141,50)"/><text text-anchor="left" x="282.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSReceiver::SetProperties (1 samples, 0.02%)</title><rect x="282" y="261" width="0" height="15" fill="rgb(229,190,54)"/><text text-anchor="left" x="285.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::InternalUpdateProtector(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (3 samples, 0.06%)</title><rect x="282" y="293" width="1" height="15" fill="rgb(207,106,40)"/><text text-anchor="left" x="285.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::UpdateDescriptorForValue(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::InternalIndex, v8::internal::PropertyConstness, v8::internal::Handle (1 samples, 0.02%)</title><rect x="283" y="277" width="0" height="15" fill="rgb(235,190,28)"/><text text-anchor="left" x="286.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::UpdateDescriptorForValue(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::InternalIndex, v8::internal::PropertyConstness, v8::internal::Handle (2 samples, 0.04%)</title><rect x="283" y="261" width="1" height="15" fill="rgb(218,224,50)"/><text text-anchor="left" x="286.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FieldType::cast (1 samples, 0.02%)</title><rect x="284" y="261" width="0" height="15" fill="rgb(216,193,51)"/><text text-anchor="left" x="287.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (5 samples, 0.09%)</title><rect x="283" y="293" width="1" height="15" fill="rgb(252,196,48)"/><text text-anchor="left" x="286.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::TransitionToDataProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (4 samples, 0.08%)</title><rect x="283" y="277" width="1" height="15" fill="rgb(235,130,4)"/><text text-anchor="left" x="286.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::TransitionsAccessor::SearchTransition (1 samples, 0.02%)</title><rect x="284" y="261" width="0" height="15" fill="rgb(220,201,53)"/><text text-anchor="left" x="287.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::StoreOrigin, v8::Maybe (42 samples, 0.80%)</title><rect x="275" y="325" width="9" height="15" fill="rgb(254,91,37)"/><text text-anchor="left" x="278.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::PropertyAttributes, v8::Maybe (28 samples, 0.53%)</title><rect x="278" y="309" width="6" height="15" fill="rgb(236,218,53)"/><text text-anchor="left" x="281.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::WriteDataValue(v8::internal::Handle (1 samples, 0.02%)</title><rect x="284" y="293" width="0" height="15" fill="rgb(237,31,26)"/><text text-anchor="left" x="287.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3daa2c (52 samples, 0.99%)</title><rect x="273" y="405" width="12" height="15" fill="rgb(214,96,23)"/><text text-anchor="left" x="276.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ObjectAssign (52 samples, 0.99%)</title><rect x="273" y="389" width="12" height="15" fill="rgb(219,195,52)"/><text text-anchor="left" x="276.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_SetDataProperties (51 samples, 0.97%)</title><rect x="273" y="373" width="12" height="15" fill="rgb(242,15,36)"/><text text-anchor="left" x="276.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (46 samples, 0.87%)</title><rect x="274" y="357" width="11" height="15" fill="rgb(229,10,52)"/><text text-anchor="left" x="277.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_SetKeyedProperty (45 samples, 0.85%)</title><rect x="275" y="341" width="10" height="15" fill="rgb(224,121,9)"/><text text-anchor="left" x="278.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="284" y="325" width="1" height="15" fill="rgb(244,210,19)"/><text text-anchor="left" x="287.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9151 (55 samples, 1.04%)</title><rect x="273" y="421" width="12" height="15" fill="rgb(244,202,24)"/><text text-anchor="left" x="276.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="285" y="405" width="0" height="15" fill="rgb(228,207,21)"/><text text-anchor="left" x="288.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ObjectAssign (1 samples, 0.02%)</title><rect x="285" y="389" width="0" height="15" fill="rgb(232,162,6)"/><text text-anchor="left" x="288.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_SetDataProperties (1 samples, 0.02%)</title><rect x="285" y="373" width="0" height="15" fill="rgb(247,68,19)"/><text text-anchor="left" x="288.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="285" y="357" width="0" height="15" fill="rgb(253,155,29)"/><text text-anchor="left" x="288.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_SetKeyedProperty (1 samples, 0.02%)</title><rect x="285" y="341" width="0" height="15" fill="rgb(236,44,49)"/><text text-anchor="left" x="288.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::StoreOrigin, v8::Maybe (1 samples, 0.02%)</title><rect x="285" y="325" width="0" height="15" fill="rgb(250,117,34)"/><text text-anchor="left" x="288.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::PropertyAttributes, v8::Maybe (1 samples, 0.02%)</title><rect x="285" y="309" width="0" height="15" fill="rgb(214,96,29)"/><text text-anchor="left" x="288.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::ApplyTransitionToDataProperty(v8::internal::Handle (1 samples, 0.02%)</title><rect x="285" y="293" width="0" height="15" fill="rgb(236,147,0)"/><text text-anchor="left" x="288.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::MigrateToMap(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="285" y="277" width="0" height="15" fill="rgb(211,59,23)"/><text text-anchor="left" x="288.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::PropertyArray&gt; v8::internal::Factory::CopyArrayAndGrow&lt;v8::internal::PropertyArray&gt;(v8::internal::Handle (1 samples, 0.02%)</title><rect x="285" y="261" width="0" height="15" fill="rgb(247,214,4)"/><text text-anchor="left" x="288.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (1 samples, 0.02%)</title><rect x="285" y="245" width="0" height="15" fill="rgb(251,187,54)"/><text text-anchor="left" x="288.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9163 (1 samples, 0.02%)</title><rect x="285" y="421" width="0" height="15" fill="rgb(220,10,35)"/><text text-anchor="left" x="288.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`DYLD-STUB$$pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="287" y="341" width="0" height="15" fill="rgb(229,51,53)"/><text text-anchor="left" x="290.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexwait (29 samples, 0.55%)</title><rect x="288" y="309" width="6" height="15" fill="rgb(206,65,5)"/><text text-anchor="left" x="291.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::mutex::lock (34 samples, 0.65%)</title><rect x="287" y="341" width="8" height="15" fill="rgb(212,100,20)"/><text text-anchor="left" x="290.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (34 samples, 0.65%)</title><rect x="287" y="325" width="8" height="15" fill="rgb(253,227,22)"/><text text-anchor="left" x="290.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_wait (4 samples, 0.08%)</title><rect x="294" y="309" width="1" height="15" fill="rgb(227,211,46)"/><text text-anchor="left" x="297.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::mutex::unlock (9 samples, 0.17%)</title><rect x="295" y="341" width="2" height="15" fill="rgb(206,189,31)"/><text text-anchor="left" x="298.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_unlock_slow (9 samples, 0.17%)</title><rect x="295" y="325" width="2" height="15" fill="rgb(219,106,4)"/><text text-anchor="left" x="298.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexdrop (9 samples, 0.17%)</title><rect x="295" y="309" width="2" height="15" fill="rgb(209,96,10)"/><text text-anchor="left" x="298.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::hash&lt;void*&gt;, true&gt;, std::__1::__unordered_map_equal&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::equal_to&lt;void*&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt; &gt; &gt;::__emplace_unique_key_args&lt;void*, std::__1::pair&lt;void*, int&gt; &gt;(void* const&amp;, std::__1::pair (3 samples, 0.06%)</title><rect x="297" y="341" width="1" height="15" fill="rgb(218,151,2)"/><text text-anchor="left" x="300.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GlobalBackingStoreRegistry::Register(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="299" y="325" width="0" height="15" fill="rgb(222,88,9)"/><text text-anchor="left" x="302.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::Lookup (20 samples, 0.38%)</title><rect x="299" y="293" width="4" height="15" fill="rgb(237,106,47)"/><text text-anchor="left" x="302.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (4 samples, 0.08%)</title><rect x="303" y="293" width="1" height="15" fill="rgb(251,95,22)"/><text text-anchor="left" x="306.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::GetBackingStore (25 samples, 0.47%)</title><rect x="299" y="325" width="5" height="15" fill="rgb(234,178,39)"/><text text-anchor="left" x="302.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::LookupBackingStore (25 samples, 0.47%)</title><rect x="299" y="309" width="5" height="15" fill="rgb(235,110,13)"/><text text-anchor="left" x="302.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="304" y="293" width="0" height="15" fill="rgb(212,49,22)"/><text text-anchor="left" x="307.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="304" y="325" width="1" height="15" fill="rgb(238,37,26)"/><text text-anchor="left" x="307.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::ArrayBuffer::GetBackingStore (33 samples, 0.63%)</title><rect x="298" y="341" width="7" height="15" fill="rgb(237,138,54)"/><text text-anchor="left" x="301.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (2 samples, 0.04%)</title><rect x="305" y="325" width="0" height="15" fill="rgb(212,108,30)"/><text text-anchor="left" x="308.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::ArrayBufferView::Buffer (1 samples, 0.02%)</title><rect x="305" y="341" width="0" height="15" fill="rgb(210,54,45)"/><text text-anchor="left" x="308.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="305" y="341" width="1" height="15" fill="rgb(230,119,3)"/><text text-anchor="left" x="308.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::PinnedBuf::PinnedBuf(v8::Local (83 samples, 1.58%)</title><rect x="287" y="357" width="19" height="15" fill="rgb(239,189,16)"/><text text-anchor="left" x="290.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="306" y="341" width="0" height="15" fill="rgb(218,182,37)"/><text text-anchor="left" x="309.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`__rust_alloc (1 samples, 0.02%)</title><rect x="309" y="325" width="0" height="15" fill="rgb(225,225,37)"/><text text-anchor="left" x="312.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (1 samples, 0.02%)</title><rect x="312" y="229" width="0" height="15" fill="rgb(212,206,30)"/><text text-anchor="left" x="315.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="312" y="229" width="0" height="15" fill="rgb(249,192,2)"/><text text-anchor="left" x="315.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (9 samples, 0.17%)</title><rect x="311" y="293" width="2" height="15" fill="rgb(218,73,7)"/><text text-anchor="left" x="314.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (9 samples, 0.17%)</title><rect x="311" y="277" width="2" height="15" fill="rgb(254,104,31)"/><text text-anchor="left" x="314.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (9 samples, 0.17%)</title><rect x="311" y="261" width="2" height="15" fill="rgb(238,159,7)"/><text text-anchor="left" x="314.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (8 samples, 0.15%)</title><rect x="311" y="245" width="2" height="15" fill="rgb(223,28,27)"/><text text-anchor="left" x="314.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (2 samples, 0.04%)</title><rect x="312" y="229" width="1" height="15" fill="rgb(254,20,38)"/><text text-anchor="left" x="315.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::ops::io::op_write::h46ede51f92e86b0c (11 samples, 0.21%)</title><rect x="310" y="309" width="3" height="15" fill="rgb(244,224,14)"/><text text-anchor="left" x="313.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="313" y="293" width="0" height="15" fill="rgb(207,64,21)"/><text text-anchor="left" x="316.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_malloc (1 samples, 0.02%)</title><rect x="314" y="277" width="0" height="15" fill="rgb(215,156,18)"/><text text-anchor="left" x="317.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (4 samples, 0.08%)</title><rect x="316" y="245" width="1" height="15" fill="rgb(254,17,14)"/><text text-anchor="left" x="319.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="317" y="245" width="0" height="15" fill="rgb(252,174,0)"/><text text-anchor="left" x="320.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (7 samples, 0.13%)</title><rect x="317" y="245" width="2" height="15" fill="rgb(227,70,17)"/><text text-anchor="left" x="320.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (28 samples, 0.53%)</title><rect x="313" y="293" width="6" height="15" fill="rgb(246,185,41)"/><text text-anchor="left" x="316.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (25 samples, 0.47%)</title><rect x="314" y="277" width="5" height="15" fill="rgb(254,123,23)"/><text text-anchor="left" x="317.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (23 samples, 0.44%)</title><rect x="314" y="261" width="5" height="15" fill="rgb(238,10,7)"/><text text-anchor="left" x="317.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (2 samples, 0.04%)</title><rect x="319" y="245" width="0" height="15" fill="rgb(235,72,43)"/><text text-anchor="left" x="322.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno_cli::state::ThreadSafeState::core_op::_$u7b$$u7b$closure$u7d$$u7d$::hd23d7737d3031ede (47 samples, 0.89%)</title><rect x="309" y="325" width="11" height="15" fill="rgb(254,208,12)"/><text text-anchor="left" x="312.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (30 samples, 0.57%)</title><rect x="313" y="309" width="7" height="15" fill="rgb(234,2,37)"/><text text-anchor="left" x="316.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="319" y="293" width="1" height="15" fill="rgb(242,101,33)"/><text text-anchor="left" x="322.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::panicking::panicking::h5de0b61715a6a65d (1 samples, 0.02%)</title><rect x="320" y="325" width="0" height="15" fill="rgb(224,106,25)"/><text text-anchor="left" x="323.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::ops::OpRegistry::call::h1de9d8150d92fbdb (57 samples, 1.08%)</title><rect x="308" y="341" width="12" height="15" fill="rgb(228,15,4)"/><text text-anchor="left" x="311.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libdyld.dylib`tlv_get_addr (2 samples, 0.04%)</title><rect x="320" y="325" width="0" height="15" fill="rgb(240,10,15)"/><text text-anchor="left" x="323.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::panicking::panicking::h5de0b61715a6a65d (2 samples, 0.04%)</title><rect x="320" y="341" width="1" height="15" fill="rgb(219,197,41)"/><text text-anchor="left" x="323.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (2 samples, 0.04%)</title><rect x="323" y="277" width="0" height="15" fill="rgb(216,227,8)"/><text text-anchor="left" x="326.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="323" y="277" width="1" height="15" fill="rgb(218,28,35)"/><text text-anchor="left" x="326.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="324" y="277" width="0" height="15" fill="rgb(226,77,9)"/><text text-anchor="left" x="327.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (17 samples, 0.32%)</title><rect x="321" y="325" width="4" height="15" fill="rgb(252,149,0)"/><text text-anchor="left" x="324.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (17 samples, 0.32%)</title><rect x="321" y="309" width="4" height="15" fill="rgb(247,224,50)"/><text text-anchor="left" x="324.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (16 samples, 0.30%)</title><rect x="321" y="293" width="4" height="15" fill="rgb(207,73,46)"/><text text-anchor="left" x="324.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (4 samples, 0.08%)</title><rect x="324" y="277" width="1" height="15" fill="rgb(250,23,25)"/><text text-anchor="left" x="327.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="325" y="261" width="0" height="15" fill="rgb(251,96,25)"/><text text-anchor="left" x="328.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (19 samples, 0.36%)</title><rect x="321" y="341" width="4" height="15" fill="rgb(219,225,47)"/><text text-anchor="left" x="324.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="325" y="325" width="0" height="15" fill="rgb(232,34,7)"/><text text-anchor="left" x="328.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_rwlock_rdlock (4 samples, 0.08%)</title><rect x="325" y="341" width="1" height="15" fill="rgb(216,106,32)"/><text text-anchor="left" x="328.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::isolate::Isolate::pre_dispatch::h287359344b5fb5d7 (92 samples, 1.75%)</title><rect x="306" y="357" width="20" height="15" fill="rgb(240,183,52)"/><text text-anchor="left" x="309.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_rwlock_unlock (2 samples, 0.04%)</title><rect x="326" y="341" width="0" height="15" fill="rgb(231,88,15)"/><text text-anchor="left" x="329.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::hash&lt;void*&gt;, true&gt;, std::__1::__unordered_map_equal&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::equal_to&lt;void*&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt; &gt; &gt;::__emplace_unique_key_args&lt;void*, std::__1::pair&lt;void*, int&gt; &gt;(void* const&amp;, std::__1::pair (1 samples, 0.02%)</title><rect x="326" y="357" width="1" height="15" fill="rgb(227,85,21)"/><text text-anchor="left" x="329.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::Lookup (5 samples, 0.09%)</title><rect x="328" y="309" width="1" height="15" fill="rgb(226,6,0)"/><text text-anchor="left" x="331.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::GetBackingStore (6 samples, 0.11%)</title><rect x="328" y="341" width="1" height="15" fill="rgb(220,156,2)"/><text text-anchor="left" x="331.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::LookupBackingStore (6 samples, 0.11%)</title><rect x="328" y="325" width="1" height="15" fill="rgb(217,55,35)"/><text text-anchor="left" x="331.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="329" y="309" width="0" height="15" fill="rgb(254,222,47)"/><text text-anchor="left" x="332.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::ArrayBuffer::GetBackingStore (11 samples, 0.21%)</title><rect x="327" y="357" width="2" height="15" fill="rgb(207,81,27)"/><text text-anchor="left" x="330.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="329" y="341" width="0" height="15" fill="rgb(207,123,46)"/><text text-anchor="left" x="332.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::ArrayBufferView::Buffer (2 samples, 0.04%)</title><rect x="329" y="357" width="1" height="15" fill="rgb(229,47,24)"/><text text-anchor="left" x="332.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSTypedArray::GetBuffer (2 samples, 0.04%)</title><rect x="329" y="341" width="1" height="15" fill="rgb(205,12,5)"/><text text-anchor="left" x="332.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Locker::IsActive (2 samples, 0.04%)</title><rect x="330" y="341" width="0" height="15" fill="rgb(219,140,26)"/><text text-anchor="left" x="333.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::HandleScope::HandleScope (3 samples, 0.06%)</title><rect x="330" y="357" width="0" height="15" fill="rgb(209,22,35)"/><text text-anchor="left" x="333.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_getspecific (1 samples, 0.02%)</title><rect x="330" y="341" width="0" height="15" fill="rgb(230,17,50)"/><text text-anchor="left" x="333.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallApiCallback (204 samples, 3.87%)</title><rect x="285" y="389" width="46" height="15" fill="rgb(251,220,4)"/><text text-anchor="left" x="288.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::Send(v8::FunctionCallbackInfo (203 samples, 3.86%)</title><rect x="285" y="373" width="46" height="15" fill="rgb(238,101,25)"/><text text-anchor="left" x="288.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Locker::IsActive (3 samples, 0.06%)</title><rect x="330" y="357" width="1" height="15" fill="rgb(242,220,45)"/><text text-anchor="left" x="333.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3da6df (205 samples, 3.89%)</title><rect x="285" y="405" width="46" height="15" fill="rgb(214,155,18)"/><text text-anchor="left" x="288.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::Send(v8::FunctionCallbackInfo (1 samples, 0.02%)</title><rect x="331" y="389" width="0" height="15" fill="rgb(227,130,52)"/><text text-anchor="left" x="334.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9194 (207 samples, 3.93%)</title><rect x="285" y="421" width="47" height="15" fill="rgb(225,24,9)"/><text text-anchor="left" x="288.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallApiCallback (2 samples, 0.04%)</title><rect x="331" y="405" width="1" height="15" fill="rgb(233,120,33)"/><text text-anchor="left" x="334.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::FixedArray&gt; v8::internal::Factory::NewFixedArrayWithMap&lt;v8::internal::FixedArray&gt; (9 samples, 0.17%)</title><rect x="334" y="341" width="2" height="15" fill="rgb(217,111,50)"/><text text-anchor="left" x="337.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (1 samples, 0.02%)</title><rect x="335" y="325" width="1" height="15" fill="rgb(247,80,5)"/><text text-anchor="left" x="338.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="335" y="309" width="1" height="15" fill="rgb(245,91,45)"/><text text-anchor="left" x="338.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="335" y="293" width="1" height="15" fill="rgb(219,143,13)"/><text text-anchor="left" x="338.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="335" y="277" width="1" height="15" fill="rgb(245,86,13)"/><text text-anchor="left" x="338.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::AllocateRaw (1 samples, 0.02%)</title><rect x="335" y="261" width="1" height="15" fill="rgb(223,98,30)"/><text text-anchor="left" x="338.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::SlowRefillLinearAllocationArea (1 samples, 0.02%)</title><rect x="335" y="245" width="1" height="15" fill="rgb(234,222,29)"/><text text-anchor="left" x="338.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::RawSlowRefillLinearAllocationArea (1 samples, 0.02%)</title><rect x="335" y="229" width="1" height="15" fill="rgb(225,8,29)"/><text text-anchor="left" x="338.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::RefillLinearAllocationAreaFromFreeList (1 samples, 0.02%)</title><rect x="335" y="213" width="1" height="15" fill="rgb(226,151,15)"/><text text-anchor="left" x="338.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::FreeLinearAllocationArea (1 samples, 0.02%)</title><rect x="335" y="197" width="1" height="15" fill="rgb(236,101,32)"/><text text-anchor="left" x="338.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FreeListManyCached::Free (1 samples, 0.02%)</title><rect x="335" y="181" width="1" height="15" fill="rgb(218,9,16)"/><text text-anchor="left" x="338.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (14 samples, 0.27%)</title><rect x="333" y="389" width="3" height="15" fill="rgb(233,81,39)"/><text text-anchor="left" x="336.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_MapGrow (14 samples, 0.27%)</title><rect x="333" y="373" width="3" height="15" fill="rgb(212,92,28)"/><text text-anchor="left" x="336.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashTable&lt;v8::internal::OrderedHashMap, 2&gt;::Rehash(v8::internal::Isolate*, v8::internal::Handle (14 samples, 0.27%)</title><rect x="333" y="357" width="3" height="15" fill="rgb(218,49,48)"/><text text-anchor="left" x="336.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap_GenerationalBarrierSlow (1 samples, 0.02%)</title><rect x="336" y="341" width="0" height="15" fill="rgb(240,179,26)"/><text text-anchor="left" x="339.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MemoryChunk::AllocateSlotSet (1 samples, 0.02%)</title><rect x="336" y="325" width="0" height="15" fill="rgb(254,99,3)"/><text text-anchor="left" x="339.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::AlignedAlloc (1 samples, 0.02%)</title><rect x="336" y="309" width="0" height="15" fill="rgb(226,160,7)"/><text text-anchor="left" x="339.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_memalign (1 samples, 0.02%)</title><rect x="336" y="293" width="0" height="15" fill="rgb(214,173,1)"/><text text-anchor="left" x="339.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9214 (20 samples, 0.38%)</title><rect x="332" y="421" width="4" height="15" fill="rgb(229,58,37)"/><text text-anchor="left" x="335.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapPrototypeSet (20 samples, 0.38%)</title><rect x="332" y="405" width="4" height="15" fill="rgb(248,74,31)"/><text text-anchor="left" x="335.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RecordWrite (1 samples, 0.02%)</title><rect x="336" y="389" width="0" height="15" fill="rgb(233,189,4)"/><text text-anchor="left" x="339.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9233 (1 samples, 0.02%)</title><rect x="336" y="421" width="0" height="15" fill="rgb(242,143,51)"/><text text-anchor="left" x="339.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (1 samples, 0.02%)</title><rect x="336" y="405" width="0" height="15" fill="rgb(219,153,31)"/><text text-anchor="left" x="339.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9304 (1 samples, 0.02%)</title><rect x="336" y="421" width="0" height="15" fill="rgb(254,225,35)"/><text text-anchor="left" x="339.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (1 samples, 0.02%)</title><rect x="336" y="405" width="0" height="15" fill="rgb(242,62,21)"/><text text-anchor="left" x="339.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="337" y="245" width="0" height="15" fill="rgb(210,20,51)"/><text text-anchor="left" x="340.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="337" y="229" width="0" height="15" fill="rgb(242,115,22)"/><text text-anchor="left" x="340.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::IterateAndScavengePromotedObjectsVisitor&gt; (1 samples, 0.02%)</title><rect x="337" y="165" width="0" height="15" fill="rgb(227,193,33)"/><text text-anchor="left" x="340.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="337" y="149" width="0" height="15" fill="rgb(212,152,16)"/><text text-anchor="left" x="340.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (2 samples, 0.04%)</title><rect x="337" y="181" width="0" height="15" fill="rgb(229,129,35)"/><text text-anchor="left" x="340.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (1 samples, 0.02%)</title><rect x="337" y="165" width="0" height="15" fill="rgb(249,36,43)"/><text text-anchor="left" x="340.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexwait (1 samples, 0.02%)</title><rect x="337" y="149" width="0" height="15" fill="rgb(212,56,52)"/><text text-anchor="left" x="340.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (4 samples, 0.08%)</title><rect x="337" y="389" width="1" height="15" fill="rgb(245,162,36)"/><text text-anchor="left" x="340.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (4 samples, 0.08%)</title><rect x="337" y="373" width="1" height="15" fill="rgb(213,83,37)"/><text text-anchor="left" x="340.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (4 samples, 0.08%)</title><rect x="337" y="357" width="1" height="15" fill="rgb(250,199,35)"/><text text-anchor="left" x="340.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (4 samples, 0.08%)</title><rect x="337" y="341" width="1" height="15" fill="rgb(211,49,15)"/><text text-anchor="left" x="340.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (4 samples, 0.08%)</title><rect x="337" y="325" width="1" height="15" fill="rgb(221,125,37)"/><text text-anchor="left" x="340.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (4 samples, 0.08%)</title><rect x="337" y="309" width="1" height="15" fill="rgb(225,139,32)"/><text text-anchor="left" x="340.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (4 samples, 0.08%)</title><rect x="337" y="293" width="1" height="15" fill="rgb(212,38,11)"/><text text-anchor="left" x="340.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (4 samples, 0.08%)</title><rect x="337" y="277" width="1" height="15" fill="rgb(212,6,4)"/><text text-anchor="left" x="340.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (4 samples, 0.08%)</title><rect x="337" y="261" width="1" height="15" fill="rgb(217,39,10)"/><text text-anchor="left" x="340.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (3 samples, 0.06%)</title><rect x="337" y="245" width="1" height="15" fill="rgb(208,101,21)"/><text text-anchor="left" x="340.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (3 samples, 0.06%)</title><rect x="337" y="229" width="1" height="15" fill="rgb(225,189,41)"/><text text-anchor="left" x="340.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (3 samples, 0.06%)</title><rect x="337" y="213" width="1" height="15" fill="rgb(244,159,36)"/><text text-anchor="left" x="340.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (3 samples, 0.06%)</title><rect x="337" y="197" width="1" height="15" fill="rgb(214,15,40)"/><text text-anchor="left" x="340.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvbroad (1 samples, 0.02%)</title><rect x="337" y="181" width="1" height="15" fill="rgb(229,213,46)"/><text text-anchor="left" x="340.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitCaught (6 samples, 0.11%)</title><rect x="336" y="405" width="2" height="15" fill="rgb(248,206,14)"/><text text-anchor="left" x="339.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (1 samples, 0.02%)</title><rect x="338" y="389" width="0" height="15" fill="rgb(221,176,49)"/><text text-anchor="left" x="341.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="338" y="373" width="0" height="15" fill="rgb(217,110,48)"/><text text-anchor="left" x="341.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="338" y="357" width="0" height="15" fill="rgb(236,102,21)"/><text text-anchor="left" x="341.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="338" y="341" width="0" height="15" fill="rgb(228,142,1)"/><text text-anchor="left" x="341.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="338" y="325" width="0" height="15" fill="rgb(236,180,50)"/><text text-anchor="left" x="341.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="338" y="309" width="0" height="15" fill="rgb(222,17,44)"/><text text-anchor="left" x="341.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="338" y="293" width="0" height="15" fill="rgb(227,170,9)"/><text text-anchor="left" x="341.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="338" y="277" width="0" height="15" fill="rgb(235,135,8)"/><text text-anchor="left" x="341.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="338" y="261" width="0" height="15" fill="rgb(249,147,51)"/><text text-anchor="left" x="341.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="338" y="245" width="0" height="15" fill="rgb(248,104,5)"/><text text-anchor="left" x="341.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="338" y="229" width="0" height="15" fill="rgb(248,38,18)"/><text text-anchor="left" x="341.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="338" y="213" width="0" height="15" fill="rgb(222,207,44)"/><text text-anchor="left" x="341.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="338" y="197" width="0" height="15" fill="rgb(233,169,8)"/><text text-anchor="left" x="341.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="338" y="181" width="0" height="15" fill="rgb(219,132,31)"/><text text-anchor="left" x="341.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d93b5 (7 samples, 0.13%)</title><rect x="336" y="421" width="2" height="15" fill="rgb(211,73,35)"/><text text-anchor="left" x="339.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PerformPromiseThen (1 samples, 0.02%)</title><rect x="338" y="405" width="0" height="15" fill="rgb(220,72,48)"/><text text-anchor="left" x="341.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d949d (1 samples, 0.02%)</title><rect x="338" y="421" width="0" height="15" fill="rgb(246,114,19)"/><text text-anchor="left" x="341.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="338" y="405" width="0" height="15" fill="rgb(210,117,37)"/><text text-anchor="left" x="341.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="338" y="389" width="0" height="15" fill="rgb(230,78,16)"/><text text-anchor="left" x="341.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="338" y="373" width="0" height="15" fill="rgb(214,70,45)"/><text text-anchor="left" x="341.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="338" y="357" width="0" height="15" fill="rgb(241,72,42)"/><text text-anchor="left" x="341.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="338" y="341" width="0" height="15" fill="rgb(225,20,41)"/><text text-anchor="left" x="341.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="338" y="325" width="0" height="15" fill="rgb(246,122,35)"/><text text-anchor="left" x="341.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="338" y="309" width="0" height="15" fill="rgb(248,136,18)"/><text text-anchor="left" x="341.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="338" y="293" width="0" height="15" fill="rgb(219,54,4)"/><text text-anchor="left" x="341.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="338" y="277" width="0" height="15" fill="rgb(213,171,18)"/><text text-anchor="left" x="341.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="338" y="261" width="0" height="15" fill="rgb(227,162,44)"/><text text-anchor="left" x="341.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="338" y="245" width="0" height="15" fill="rgb(205,64,23)"/><text text-anchor="left" x="341.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="338" y="229" width="0" height="15" fill="rgb(237,186,6)"/><text text-anchor="left" x="341.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="338" y="213" width="0" height="15" fill="rgb(217,14,5)"/><text text-anchor="left" x="341.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="338" y="197" width="0" height="15" fill="rgb(215,192,46)"/><text text-anchor="left" x="341.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="338" y="277" width="1" height="15" fill="rgb(229,153,42)"/><text text-anchor="left" x="341.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="338" y="261" width="1" height="15" fill="rgb(224,56,51)"/><text text-anchor="left" x="341.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="338" y="245" width="1" height="15" fill="rgb(209,116,41)"/><text text-anchor="left" x="341.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="338" y="229" width="1" height="15" fill="rgb(205,78,22)"/><text text-anchor="left" x="341.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="338" y="213" width="1" height="15" fill="rgb(231,30,9)"/><text text-anchor="left" x="341.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="338" y="197" width="1" height="15" fill="rgb(248,72,6)"/><text text-anchor="left" x="341.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d953b (2 samples, 0.04%)</title><rect x="338" y="421" width="1" height="15" fill="rgb(228,163,16)"/><text text-anchor="left" x="341.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="338" y="405" width="1" height="15" fill="rgb(236,105,0)"/><text text-anchor="left" x="341.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="338" y="389" width="1" height="15" fill="rgb(206,149,29)"/><text text-anchor="left" x="341.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="338" y="373" width="1" height="15" fill="rgb(213,123,17)"/><text text-anchor="left" x="341.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="338" y="357" width="1" height="15" fill="rgb(248,15,31)"/><text text-anchor="left" x="341.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="338" y="341" width="1" height="15" fill="rgb(236,104,3)"/><text text-anchor="left" x="341.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="338" y="325" width="1" height="15" fill="rgb(249,41,0)"/><text text-anchor="left" x="341.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="338" y="309" width="1" height="15" fill="rgb(249,59,47)"/><text text-anchor="left" x="341.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="338" y="293" width="1" height="15" fill="rgb(207,8,50)"/><text text-anchor="left" x="341.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Space::PauseAllocationObservers (1 samples, 0.02%)</title><rect x="339" y="277" width="0" height="15" fill="rgb(209,189,41)"/><text text-anchor="left" x="342.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d9553 (6 samples, 0.11%)</title><rect x="339" y="421" width="1" height="15" fill="rgb(251,128,43)"/><text text-anchor="left" x="342.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (6 samples, 0.11%)</title><rect x="339" y="405" width="1" height="15" fill="rgb(242,211,5)"/><text text-anchor="left" x="342.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (6 samples, 0.11%)</title><rect x="339" y="389" width="1" height="15" fill="rgb(225,225,26)"/><text text-anchor="left" x="342.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (5 samples, 0.09%)</title><rect x="339" y="373" width="1" height="15" fill="rgb(247,30,35)"/><text text-anchor="left" x="342.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (5 samples, 0.09%)</title><rect x="339" y="357" width="1" height="15" fill="rgb(249,74,10)"/><text text-anchor="left" x="342.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (5 samples, 0.09%)</title><rect x="339" y="341" width="1" height="15" fill="rgb(221,134,9)"/><text text-anchor="left" x="342.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (5 samples, 0.09%)</title><rect x="339" y="325" width="1" height="15" fill="rgb(236,93,14)"/><text text-anchor="left" x="342.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (5 samples, 0.09%)</title><rect x="339" y="309" width="1" height="15" fill="rgb(243,65,54)"/><text text-anchor="left" x="342.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (5 samples, 0.09%)</title><rect x="339" y="293" width="1" height="15" fill="rgb(223,32,19)"/><text text-anchor="left" x="342.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (5 samples, 0.09%)</title><rect x="339" y="277" width="1" height="15" fill="rgb(206,124,49)"/><text text-anchor="left" x="342.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (4 samples, 0.08%)</title><rect x="339" y="261" width="1" height="15" fill="rgb(224,164,23)"/><text text-anchor="left" x="342.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (4 samples, 0.08%)</title><rect x="339" y="245" width="1" height="15" fill="rgb(232,142,38)"/><text text-anchor="left" x="342.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (3 samples, 0.06%)</title><rect x="339" y="229" width="1" height="15" fill="rgb(251,1,17)"/><text text-anchor="left" x="342.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (2 samples, 0.04%)</title><rect x="340" y="213" width="0" height="15" fill="rgb(243,101,11)"/><text text-anchor="left" x="343.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="340" y="197" width="0" height="15" fill="rgb(253,186,6)"/><text text-anchor="left" x="343.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3da5e4 (1 samples, 0.02%)</title><rect x="340" y="421" width="0" height="15" fill="rgb(244,208,17)"/><text text-anchor="left" x="343.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3da844 (1 samples, 0.02%)</title><rect x="340" y="421" width="1" height="15" fill="rgb(210,185,49)"/><text text-anchor="left" x="343.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e1d04 (1 samples, 0.02%)</title><rect x="341" y="421" width="0" height="15" fill="rgb(237,104,30)"/><text text-anchor="left" x="344.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e1d08 (1 samples, 0.02%)</title><rect x="341" y="421" width="0" height="15" fill="rgb(215,131,45)"/><text text-anchor="left" x="344.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e1d78 (1 samples, 0.02%)</title><rect x="341" y="421" width="0" height="15" fill="rgb(239,0,14)"/><text text-anchor="left" x="344.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="341" y="405" width="0" height="15" fill="rgb(250,148,52)"/><text text-anchor="left" x="344.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="341" y="389" width="0" height="15" fill="rgb(222,73,54)"/><text text-anchor="left" x="344.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="341" y="373" width="0" height="15" fill="rgb(208,42,9)"/><text text-anchor="left" x="344.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="341" y="357" width="0" height="15" fill="rgb(219,228,0)"/><text text-anchor="left" x="344.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="341" y="341" width="0" height="15" fill="rgb(246,226,22)"/><text text-anchor="left" x="344.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="341" y="325" width="0" height="15" fill="rgb(211,212,50)"/><text text-anchor="left" x="344.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="341" y="309" width="0" height="15" fill="rgb(226,51,14)"/><text text-anchor="left" x="344.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::GraphBuilderPhase&gt; (1 samples, 0.02%)</title><rect x="341" y="293" width="0" height="15" fill="rgb(248,24,48)"/><text text-anchor="left" x="344.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphBuilderPhase::Run (1 samples, 0.02%)</title><rect x="341" y="277" width="0" height="15" fill="rgb(234,199,13)"/><text text-anchor="left" x="344.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BuildGraphFromBytecode(v8::internal::compiler::JSHeapBroker*, v8::internal::Zone*, v8::internal::compiler::SharedFunctionInfoRef const&amp;, v8::internal::compiler::FeedbackVectorRef const&amp;, v8::internal::BailoutId, v8::internal::compiler::JSGraph*, v8::internal::compiler::CallFrequency const&amp;, v8::internal::compiler::SourcePositionTable*, int, v8::base::Flags (1 samples, 0.02%)</title><rect x="341" y="261" width="0" height="15" fill="rgb(221,55,14)"/><text text-anchor="left" x="344.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::CreateGraph (1 samples, 0.02%)</title><rect x="341" y="245" width="0" height="15" fill="rgb(229,156,36)"/><text text-anchor="left" x="344.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::VisitBytecodes (1 samples, 0.02%)</title><rect x="341" y="229" width="0" height="15" fill="rgb(242,205,5)"/><text text-anchor="left" x="344.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::VisitSingleBytecode (1 samples, 0.02%)</title><rect x="341" y="213" width="0" height="15" fill="rgb(246,156,2)"/><text text-anchor="left" x="344.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::BuildCall (1 samples, 0.02%)</title><rect x="341" y="197" width="0" height="15" fill="rgb(245,120,15)"/><text text-anchor="left" x="344.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::Environment::Checkpoint (1 samples, 0.02%)</title><rect x="341" y="181" width="0" height="15" fill="rgb(229,218,14)"/><text text-anchor="left" x="344.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::CommonOperatorBuilder::FrameState (1 samples, 0.02%)</title><rect x="341" y="165" width="0" height="15" fill="rgb(221,223,14)"/><text text-anchor="left" x="344.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d2a7a (1 samples, 0.02%)</title><rect x="341" y="373" width="1" height="15" fill="rgb(227,131,2)"/><text text-anchor="left" x="344.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallApiCallback (1 samples, 0.02%)</title><rect x="341" y="357" width="1" height="15" fill="rgb(254,220,33)"/><text text-anchor="left" x="344.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::Send(v8::FunctionCallbackInfo (1 samples, 0.02%)</title><rect x="341" y="341" width="1" height="15" fill="rgb(233,33,48)"/><text text-anchor="left" x="344.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`deno::PinnedBuf::PinnedBuf(v8::Local (1 samples, 0.02%)</title><rect x="341" y="325" width="1" height="15" fill="rgb(246,192,30)"/><text text-anchor="left" x="344.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::ArrayBuffer::GetBackingStore (1 samples, 0.02%)</title><rect x="341" y="309" width="1" height="15" fill="rgb(241,31,29)"/><text text-anchor="left" x="344.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d2b1a (1 samples, 0.02%)</title><rect x="342" y="373" width="0" height="15" fill="rgb(240,111,14)"/><text text-anchor="left" x="345.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (1 samples, 0.02%)</title><rect x="342" y="357" width="0" height="15" fill="rgb(231,69,48)"/><text text-anchor="left" x="345.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="342" y="357" width="0" height="15" fill="rgb(254,150,20)"/><text text-anchor="left" x="345.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="342" y="341" width="0" height="15" fill="rgb(252,85,25)"/><text text-anchor="left" x="345.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="342" y="325" width="0" height="15" fill="rgb(210,226,7)"/><text text-anchor="left" x="345.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="342" y="309" width="0" height="15" fill="rgb(233,168,21)"/><text text-anchor="left" x="345.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="342" y="293" width="0" height="15" fill="rgb(246,225,48)"/><text text-anchor="left" x="345.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="342" y="277" width="0" height="15" fill="rgb(219,51,42)"/><text text-anchor="left" x="345.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="342" y="261" width="0" height="15" fill="rgb(225,133,48)"/><text text-anchor="left" x="345.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::InliningPhase&gt; (1 samples, 0.02%)</title><rect x="342" y="245" width="0" height="15" fill="rgb(233,116,48)"/><text text-anchor="left" x="345.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::InliningPhase::Run (1 samples, 0.02%)</title><rect x="342" y="229" width="0" height="15" fill="rgb(228,64,13)"/><text text-anchor="left" x="345.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceNode (1 samples, 0.02%)</title><rect x="342" y="213" width="0" height="15" fill="rgb(205,70,10)"/><text text-anchor="left" x="345.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceTop (1 samples, 0.02%)</title><rect x="342" y="197" width="0" height="15" fill="rgb(225,24,37)"/><text text-anchor="left" x="345.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ConstructHandler (2 samples, 0.04%)</title><rect x="343" y="341" width="0" height="15" fill="rgb(219,142,48)"/><text text-anchor="left" x="346.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSBuiltinsConstructStub (2 samples, 0.04%)</title><rect x="343" y="325" width="0" height="15" fill="rgb(229,87,38)"/><text text-anchor="left" x="346.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_PromiseConstructor (2 samples, 0.04%)</title><rect x="343" y="309" width="0" height="15" fill="rgb(238,20,10)"/><text text-anchor="left" x="346.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (6 samples, 0.11%)</title><rect x="342" y="373" width="1" height="15" fill="rgb(218,91,13)"/><text text-anchor="left" x="345.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (4 samples, 0.08%)</title><rect x="342" y="357" width="1" height="15" fill="rgb(207,96,40)"/><text text-anchor="left" x="345.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ObjectAssign (1 samples, 0.02%)</title><rect x="343" y="341" width="0" height="15" fill="rgb(226,221,48)"/><text text-anchor="left" x="346.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_SetDataProperties (1 samples, 0.02%)</title><rect x="343" y="325" width="0" height="15" fill="rgb(220,189,43)"/><text text-anchor="left" x="346.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="343" y="309" width="0" height="15" fill="rgb(227,107,32)"/><text text-anchor="left" x="346.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_SetKeyedProperty (1 samples, 0.02%)</title><rect x="343" y="293" width="0" height="15" fill="rgb(205,26,53)"/><text text-anchor="left" x="346.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::StoreOrigin, v8::Maybe (1 samples, 0.02%)</title><rect x="343" y="277" width="0" height="15" fill="rgb(237,159,27)"/><text text-anchor="left" x="346.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::PropertyAttributes, v8::Maybe (1 samples, 0.02%)</title><rect x="343" y="261" width="0" height="15" fill="rgb(242,71,11)"/><text text-anchor="left" x="346.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::ApplyTransitionToDataProperty(v8::internal::Handle (1 samples, 0.02%)</title><rect x="343" y="245" width="0" height="15" fill="rgb(241,1,14)"/><text text-anchor="left" x="346.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::MigrateToMap(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="343" y="229" width="0" height="15" fill="rgb(212,199,0)"/><text text-anchor="left" x="346.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSReceiver::SetProperties (1 samples, 0.02%)</title><rect x="343" y="213" width="0" height="15" fill="rgb(243,176,21)"/><text text-anchor="left" x="346.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (10 samples, 0.19%)</title><rect x="341" y="421" width="2" height="15" fill="rgb(246,2,18)"/><text text-anchor="left" x="344.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (9 samples, 0.17%)</title><rect x="341" y="405" width="2" height="15" fill="rgb(225,189,24)"/><text text-anchor="left" x="344.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (9 samples, 0.17%)</title><rect x="341" y="389" width="2" height="15" fill="rgb(217,1,4)"/><text text-anchor="left" x="344.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InvokeIntrinsicHandler (1 samples, 0.02%)</title><rect x="343" y="373" width="0" height="15" fill="rgb(219,159,45)"/><text text-anchor="left" x="346.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionEnter (1 samples, 0.02%)</title><rect x="343" y="357" width="0" height="15" fill="rgb(249,53,28)"/><text text-anchor="left" x="346.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="343" y="341" width="0" height="15" fill="rgb(223,2,21)"/><text text-anchor="left" x="346.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="343" y="325" width="0" height="15" fill="rgb(228,157,26)"/><text text-anchor="left" x="346.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="343" y="309" width="0" height="15" fill="rgb(207,221,14)"/><text text-anchor="left" x="346.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="343" y="293" width="0" height="15" fill="rgb(229,7,52)"/><text text-anchor="left" x="346.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="343" y="277" width="0" height="15" fill="rgb(214,39,11)"/><text text-anchor="left" x="346.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="343" y="261" width="0" height="15" fill="rgb(223,217,15)"/><text text-anchor="left" x="346.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="343" y="245" width="0" height="15" fill="rgb(227,42,54)"/><text text-anchor="left" x="346.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="343" y="229" width="0" height="15" fill="rgb(219,47,21)"/><text text-anchor="left" x="346.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="343" y="213" width="0" height="15" fill="rgb(229,195,40)"/><text text-anchor="left" x="346.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="343" y="197" width="0" height="15" fill="rgb(230,206,0)"/><text text-anchor="left" x="346.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="343" y="181" width="0" height="15" fill="rgb(215,43,24)"/><text text-anchor="left" x="346.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="343" y="165" width="0" height="15" fill="rgb(240,202,9)"/><text text-anchor="left" x="346.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="343" y="149" width="0" height="15" fill="rgb(216,147,20)"/><text text-anchor="left" x="346.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::ConditionVariable::WaitFor (1 samples, 0.02%)</title><rect x="343" y="133" width="0" height="15" fill="rgb(237,77,10)"/><text text-anchor="left" x="346.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvwait (1 samples, 0.02%)</title><rect x="343" y="117" width="0" height="15" fill="rgb(227,27,30)"/><text text-anchor="left" x="346.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca2af (336 samples, 6.38%)</title><rect x="269" y="437" width="75" height="15" fill="rgb(212,136,32)"/><text text-anchor="left" x="272.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x28236c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_LoadIC (2 samples, 0.04%)</title><rect x="343" y="421" width="1" height="15" fill="rgb(214,55,43)"/><text text-anchor="left" x="346.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GCTracer::Start (1 samples, 0.02%)</title><rect x="344" y="309" width="0" height="15" fill="rgb(224,71,13)"/><text text-anchor="left" x="347.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::ResetLinearAllocationArea (2 samples, 0.04%)</title><rect x="344" y="277" width="1" height="15" fill="rgb(213,39,20)"/><text text-anchor="left" x="347.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (2 samples, 0.04%)</title><rect x="344" y="261" width="1" height="15" fill="rgb(207,210,12)"/><text text-anchor="left" x="347.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (4 samples, 0.08%)</title><rect x="346" y="229" width="1" height="15" fill="rgb(214,183,9)"/><text text-anchor="left" x="349.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (2 samples, 0.04%)</title><rect x="346" y="213" width="1" height="15" fill="rgb(239,97,5)"/><text text-anchor="left" x="349.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (2 samples, 0.04%)</title><rect x="346" y="197" width="1" height="15" fill="rgb(213,139,0)"/><text text-anchor="left" x="349.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (2 samples, 0.04%)</title><rect x="346" y="181" width="1" height="15" fill="rgb(251,162,12)"/><text text-anchor="left" x="349.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (2 samples, 0.04%)</title><rect x="346" y="165" width="1" height="15" fill="rgb(230,115,8)"/><text text-anchor="left" x="349.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (2 samples, 0.04%)</title><rect x="346" y="149" width="1" height="15" fill="rgb(253,202,54)"/><text text-anchor="left" x="349.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (12 samples, 0.23%)</title><rect x="345" y="261" width="2" height="15" fill="rgb(234,138,13)"/><text text-anchor="left" x="348.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (12 samples, 0.23%)</title><rect x="345" y="245" width="2" height="15" fill="rgb(247,208,37)"/><text text-anchor="left" x="348.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (3 samples, 0.06%)</title><rect x="347" y="229" width="0" height="15" fill="rgb(254,166,10)"/><text text-anchor="left" x="350.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="347" y="213" width="0" height="15" fill="rgb(216,191,20)"/><text text-anchor="left" x="350.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Platform::CallBlockingTaskOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="347" y="245" width="0" height="15" fill="rgb(246,74,31)"/><text text-anchor="left" x="350.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultPlatform::CallOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="347" y="229" width="0" height="15" fill="rgb(253,207,51)"/><text text-anchor="left" x="350.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultWorkerThreadsTaskRunner::PostTask(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="347" y="213" width="0" height="15" fill="rgb(243,221,41)"/><text text-anchor="left" x="350.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DelayedTaskQueue::Append(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="347" y="197" width="0" height="15" fill="rgb(235,11,13)"/><text text-anchor="left" x="350.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvsignal (1 samples, 0.02%)</title><rect x="347" y="181" width="0" height="15" fill="rgb(240,95,14)"/><text text-anchor="left" x="350.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="347" y="197" width="1" height="15" fill="rgb(227,225,18)"/><text text-anchor="left" x="350.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Worklist&lt;std::__1::pair&lt;v8::internal::HeapObject, int&gt;, 256&gt;::Pop(int, std::__1::pair (1 samples, 0.02%)</title><rect x="347" y="181" width="1" height="15" fill="rgb(210,53,50)"/><text text-anchor="left" x="350.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (3 samples, 0.06%)</title><rect x="347" y="261" width="1" height="15" fill="rgb(245,172,7)"/><text text-anchor="left" x="350.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (2 samples, 0.04%)</title><rect x="347" y="245" width="1" height="15" fill="rgb(252,190,9)"/><text text-anchor="left" x="350.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (2 samples, 0.04%)</title><rect x="347" y="229" width="1" height="15" fill="rgb(225,39,13)"/><text text-anchor="left" x="350.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (2 samples, 0.04%)</title><rect x="347" y="213" width="1" height="15" fill="rgb(229,100,51)"/><text text-anchor="left" x="350.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvbroad (1 samples, 0.02%)</title><rect x="348" y="197" width="0" height="15" fill="rgb(221,92,9)"/><text text-anchor="left" x="351.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (16 samples, 0.30%)</title><rect x="345" y="277" width="3" height="15" fill="rgb(249,227,12)"/><text text-anchor="left" x="348.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Worklist&lt;std::__1::pair&lt;v8::internal::HeapObject, int&gt;, 256&gt;::~Worklist (1 samples, 0.02%)</title><rect x="348" y="261" width="0" height="15" fill="rgb(206,228,21)"/><text text-anchor="left" x="351.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="348" y="245" width="0" height="15" fill="rgb(232,141,53)"/><text text-anchor="left" x="351.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_size (1 samples, 0.02%)</title><rect x="348" y="229" width="0" height="15" fill="rgb(236,68,10)"/><text text-anchor="left" x="351.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca2c7 (20 samples, 0.38%)</title><rect x="344" y="437" width="4" height="15" fill="rgb(241,65,53)"/><text text-anchor="left" x="347.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (20 samples, 0.38%)</title><rect x="344" y="421" width="4" height="15" fill="rgb(223,8,43)"/><text text-anchor="left" x="347.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (20 samples, 0.38%)</title><rect x="344" y="405" width="4" height="15" fill="rgb(230,148,51)"/><text text-anchor="left" x="347.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (20 samples, 0.38%)</title><rect x="344" y="389" width="4" height="15" fill="rgb(254,68,0)"/><text text-anchor="left" x="347.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (20 samples, 0.38%)</title><rect x="344" y="373" width="4" height="15" fill="rgb(252,53,26)"/><text text-anchor="left" x="347.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (20 samples, 0.38%)</title><rect x="344" y="357" width="4" height="15" fill="rgb(219,140,14)"/><text text-anchor="left" x="347.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (20 samples, 0.38%)</title><rect x="344" y="341" width="4" height="15" fill="rgb(219,161,45)"/><text text-anchor="left" x="347.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (20 samples, 0.38%)</title><rect x="344" y="325" width="4" height="15" fill="rgb(214,115,22)"/><text text-anchor="left" x="347.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (19 samples, 0.36%)</title><rect x="344" y="309" width="4" height="15" fill="rgb(223,217,16)"/><text text-anchor="left" x="347.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (19 samples, 0.36%)</title><rect x="344" y="293" width="4" height="15" fill="rgb(227,92,21)"/><text text-anchor="left" x="347.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SemiSpace::Swap (1 samples, 0.02%)</title><rect x="348" y="277" width="0" height="15" fill="rgb(232,222,21)"/><text text-anchor="left" x="351.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca2d3 (1 samples, 0.02%)</title><rect x="348" y="437" width="1" height="15" fill="rgb(230,31,11)"/><text text-anchor="left" x="351.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca381 (1 samples, 0.02%)</title><rect x="349" y="437" width="0" height="15" fill="rgb(219,110,3)"/><text text-anchor="left" x="352.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="349" y="421" width="0" height="15" fill="rgb(246,194,8)"/><text text-anchor="left" x="352.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="349" y="405" width="0" height="15" fill="rgb(230,121,41)"/><text text-anchor="left" x="352.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="349" y="389" width="0" height="15" fill="rgb(226,30,38)"/><text text-anchor="left" x="352.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="349" y="373" width="0" height="15" fill="rgb(244,159,17)"/><text text-anchor="left" x="352.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="349" y="357" width="0" height="15" fill="rgb(223,28,19)"/><text text-anchor="left" x="352.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="349" y="341" width="0" height="15" fill="rgb(210,149,1)"/><text text-anchor="left" x="352.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="349" y="325" width="0" height="15" fill="rgb(207,154,21)"/><text text-anchor="left" x="352.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="349" y="309" width="0" height="15" fill="rgb(248,142,36)"/><text text-anchor="left" x="352.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::CopyMetadataForConcurrentCompilePhase&gt; (1 samples, 0.02%)</title><rect x="349" y="293" width="0" height="15" fill="rgb(244,189,25)"/><text text-anchor="left" x="352.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::CopyMetadataForConcurrentCompilePhase::Run (1 samples, 0.02%)</title><rect x="349" y="277" width="0" height="15" fill="rgb(250,121,16)"/><text text-anchor="left" x="352.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceNode (1 samples, 0.02%)</title><rect x="349" y="261" width="0" height="15" fill="rgb(233,16,3)"/><text text-anchor="left" x="352.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceTop (1 samples, 0.02%)</title><rect x="349" y="245" width="0" height="15" fill="rgb(222,76,25)"/><text text-anchor="left" x="352.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::Reduce (1 samples, 0.02%)</title><rect x="349" y="229" width="0" height="15" fill="rgb(250,12,51)"/><text text-anchor="left" x="352.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapCopyReducer::Reduce (1 samples, 0.02%)</title><rect x="349" y="213" width="0" height="15" fill="rgb(207,83,31)"/><text text-anchor="left" x="352.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::SourceTextModuleData::Serialize (1 samples, 0.02%)</title><rect x="349" y="197" width="0" height="15" fill="rgb(218,20,54)"/><text text-anchor="left" x="352.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapBroker::GetOrCreateData(v8::internal::Handle (1 samples, 0.02%)</title><rect x="349" y="181" width="0" height="15" fill="rgb(215,117,29)"/><text text-anchor="left" x="352.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::RefsMap::LookupOrInsert (1 samples, 0.02%)</title><rect x="349" y="165" width="0" height="15" fill="rgb(253,92,46)"/><text text-anchor="left" x="352.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::TemplateHashMapImpl&lt;unsigned long, v8::internal::compiler::ObjectData*, v8::internal::compiler::AddressMatcher, v8::internal::ZoneAllocationPolicy&gt;::Resize (1 samples, 0.02%)</title><rect x="349" y="149" width="0" height="15" fill="rgb(222,143,6)"/><text text-anchor="left" x="352.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca4a7 (2 samples, 0.04%)</title><rect x="349" y="437" width="0" height="15" fill="rgb(231,56,13)"/><text text-anchor="left" x="352.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JumpIfToBooleanTrueHandler (1 samples, 0.02%)</title><rect x="349" y="421" width="0" height="15" fill="rgb(249,0,13)"/><text text-anchor="left" x="352.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d857b (1 samples, 0.02%)</title><rect x="349" y="421" width="0" height="15" fill="rgb(234,198,34)"/><text text-anchor="left" x="352.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d85cd (1 samples, 0.02%)</title><rect x="349" y="421" width="1" height="15" fill="rgb(235,152,24)"/><text text-anchor="left" x="352.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d85e8 (1 samples, 0.02%)</title><rect x="350" y="421" width="0" height="15" fill="rgb(240,140,30)"/><text text-anchor="left" x="353.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="350" y="405" width="0" height="15" fill="rgb(214,69,41)"/><text text-anchor="left" x="353.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d861d (1 samples, 0.02%)</title><rect x="350" y="421" width="0" height="15" fill="rgb(243,56,54)"/><text text-anchor="left" x="353.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::ResetLinearAllocationArea (1 samples, 0.02%)</title><rect x="350" y="277" width="0" height="15" fill="rgb(222,69,3)"/><text text-anchor="left" x="353.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="350" y="261" width="0" height="15" fill="rgb(253,36,52)"/><text text-anchor="left" x="353.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="350" y="261" width="1" height="15" fill="rgb(244,30,43)"/><text text-anchor="left" x="353.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="350" y="245" width="1" height="15" fill="rgb(220,172,23)"/><text text-anchor="left" x="353.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="350" y="229" width="1" height="15" fill="rgb(228,154,50)"/><text text-anchor="left" x="353.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d86ec (3 samples, 0.06%)</title><rect x="350" y="421" width="1" height="15" fill="rgb(250,223,40)"/><text text-anchor="left" x="353.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (3 samples, 0.06%)</title><rect x="350" y="405" width="1" height="15" fill="rgb(217,18,36)"/><text text-anchor="left" x="353.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (3 samples, 0.06%)</title><rect x="350" y="389" width="1" height="15" fill="rgb(227,81,10)"/><text text-anchor="left" x="353.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (3 samples, 0.06%)</title><rect x="350" y="373" width="1" height="15" fill="rgb(209,1,29)"/><text text-anchor="left" x="353.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="350" y="357" width="1" height="15" fill="rgb(252,62,45)"/><text text-anchor="left" x="353.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="350" y="341" width="1" height="15" fill="rgb(241,63,53)"/><text text-anchor="left" x="353.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (3 samples, 0.06%)</title><rect x="350" y="325" width="1" height="15" fill="rgb(211,46,17)"/><text text-anchor="left" x="353.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (3 samples, 0.06%)</title><rect x="350" y="309" width="1" height="15" fill="rgb(239,195,6)"/><text text-anchor="left" x="353.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (3 samples, 0.06%)</title><rect x="350" y="293" width="1" height="15" fill="rgb(241,45,13)"/><text text-anchor="left" x="353.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="350" y="277" width="1" height="15" fill="rgb(228,126,22)"/><text text-anchor="left" x="353.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="351" y="261" width="0" height="15" fill="rgb(231,138,11)"/><text text-anchor="left" x="354.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="351" y="245" width="0" height="15" fill="rgb(240,65,49)"/><text text-anchor="left" x="354.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="351" y="229" width="0" height="15" fill="rgb(253,187,47)"/><text text-anchor="left" x="354.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="351" y="213" width="0" height="15" fill="rgb(240,144,21)"/><text text-anchor="left" x="354.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="351" y="197" width="0" height="15" fill="rgb(229,28,23)"/><text text-anchor="left" x="354.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="351" y="405" width="0" height="15" fill="rgb(223,101,41)"/><text text-anchor="left" x="354.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="351" y="389" width="0" height="15" fill="rgb(248,107,30)"/><text text-anchor="left" x="354.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="351" y="373" width="0" height="15" fill="rgb(240,86,12)"/><text text-anchor="left" x="354.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="351" y="357" width="0" height="15" fill="rgb(206,171,29)"/><text text-anchor="left" x="354.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="351" y="341" width="0" height="15" fill="rgb(235,72,37)"/><text text-anchor="left" x="354.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="351" y="325" width="0" height="15" fill="rgb(232,131,32)"/><text text-anchor="left" x="354.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="351" y="309" width="0" height="15" fill="rgb(239,203,40)"/><text text-anchor="left" x="354.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::HeapBrokerInitializationPhase&gt; (1 samples, 0.02%)</title><rect x="351" y="293" width="0" height="15" fill="rgb(221,123,32)"/><text text-anchor="left" x="354.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapBroker::InitializeAndStartSerializing(v8::internal::Handle (1 samples, 0.02%)</title><rect x="351" y="277" width="0" height="15" fill="rgb(246,64,35)"/><text text-anchor="left" x="354.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::NativeContextData::Serialize (1 samples, 0.02%)</title><rect x="351" y="261" width="0" height="15" fill="rgb(227,7,5)"/><text text-anchor="left" x="354.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSFunctionData::Serialize (1 samples, 0.02%)</title><rect x="351" y="245" width="0" height="15" fill="rgb(220,120,24)"/><text text-anchor="left" x="354.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSHeapBroker::GetOrCreateData(v8::internal::Handle (1 samples, 0.02%)</title><rect x="351" y="229" width="0" height="15" fill="rgb(217,203,54)"/><text text-anchor="left" x="354.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSObjectData::JSObjectData(v8::internal::compiler::JSHeapBroker*, v8::internal::compiler::ObjectData**, v8::internal::Handle (1 samples, 0.02%)</title><rect x="351" y="213" width="0" height="15" fill="rgb(209,40,45)"/><text text-anchor="left" x="354.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::HeapObjectData::HeapObjectData(v8::internal::compiler::JSHeapBroker*, v8::internal::compiler::ObjectData**, v8::internal::Handle (1 samples, 0.02%)</title><rect x="351" y="197" width="0" height="15" fill="rgb(213,152,47)"/><text text-anchor="left" x="354.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::CanonicalHandleScope::Lookup (1 samples, 0.02%)</title><rect x="351" y="181" width="0" height="15" fill="rgb(231,223,22)"/><text text-anchor="left" x="354.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::RootIndexMap::Lookup (1 samples, 0.02%)</title><rect x="351" y="165" width="0" height="15" fill="rgb(233,218,4)"/><text text-anchor="left" x="354.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca574 (9 samples, 0.17%)</title><rect x="349" y="437" width="2" height="15" fill="rgb(219,130,2)"/><text text-anchor="left" x="352.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (2 samples, 0.04%)</title><rect x="351" y="421" width="0" height="15" fill="rgb(232,192,8)"/><text text-anchor="left" x="354.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsAny (1 samples, 0.02%)</title><rect x="351" y="405" width="0" height="15" fill="rgb(217,173,29)"/><text text-anchor="left" x="354.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca57b (1 samples, 0.02%)</title><rect x="351" y="437" width="1" height="15" fill="rgb(241,18,53)"/><text text-anchor="left" x="354.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca589 (4 samples, 0.08%)</title><rect x="352" y="437" width="0" height="15" fill="rgb(232,176,27)"/><text text-anchor="left" x="355.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (4 samples, 0.08%)</title><rect x="352" y="421" width="0" height="15" fill="rgb(248,193,41)"/><text text-anchor="left" x="355.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccd61 (2 samples, 0.04%)</title><rect x="352" y="437" width="1" height="15" fill="rgb(237,195,5)"/><text text-anchor="left" x="355.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cceab (1 samples, 0.02%)</title><rect x="353" y="437" width="0" height="15" fill="rgb(216,149,7)"/><text text-anchor="left" x="356.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccec0 (3 samples, 0.06%)</title><rect x="353" y="437" width="1" height="15" fill="rgb(221,67,45)"/><text text-anchor="left" x="356.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccec7 (1 samples, 0.02%)</title><rect x="354" y="437" width="0" height="15" fill="rgb(216,138,49)"/><text text-anchor="left" x="357.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cced1 (1 samples, 0.02%)</title><rect x="354" y="437" width="0" height="15" fill="rgb(234,8,24)"/><text text-anchor="left" x="357.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cced5 (1 samples, 0.02%)</title><rect x="354" y="437" width="0" height="15" fill="rgb(238,120,54)"/><text text-anchor="left" x="357.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccedd (1 samples, 0.02%)</title><rect x="354" y="437" width="1" height="15" fill="rgb(242,45,0)"/><text text-anchor="left" x="357.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cceef (1 samples, 0.02%)</title><rect x="355" y="437" width="0" height="15" fill="rgb(236,176,35)"/><text text-anchor="left" x="358.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccefb (1 samples, 0.02%)</title><rect x="355" y="437" width="0" height="15" fill="rgb(207,69,13)"/><text text-anchor="left" x="358.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccf05 (1 samples, 0.02%)</title><rect x="355" y="437" width="0" height="15" fill="rgb(215,37,18)"/><text text-anchor="left" x="358.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccf26 (1 samples, 0.02%)</title><rect x="355" y="437" width="1" height="15" fill="rgb(234,111,10)"/><text text-anchor="left" x="358.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccf47 (4 samples, 0.08%)</title><rect x="356" y="437" width="0" height="15" fill="rgb(225,227,2)"/><text text-anchor="left" x="359.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccf52 (1 samples, 0.02%)</title><rect x="356" y="437" width="1" height="15" fill="rgb(210,118,11)"/><text text-anchor="left" x="359.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ccff2 (2 samples, 0.04%)</title><rect x="357" y="437" width="0" height="15" fill="rgb(208,190,23)"/><text text-anchor="left" x="360.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd006 (2 samples, 0.04%)</title><rect x="357" y="437" width="1" height="15" fill="rgb(250,226,29)"/><text text-anchor="left" x="360.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd01b (1 samples, 0.02%)</title><rect x="358" y="437" width="0" height="15" fill="rgb(210,116,32)"/><text text-anchor="left" x="361.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd030 (3 samples, 0.06%)</title><rect x="358" y="437" width="0" height="15" fill="rgb(230,18,4)"/><text text-anchor="left" x="361.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd040 (1 samples, 0.02%)</title><rect x="358" y="437" width="1" height="15" fill="rgb(250,173,25)"/><text text-anchor="left" x="361.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd0e2 (3 samples, 0.06%)</title><rect x="359" y="437" width="0" height="15" fill="rgb(218,121,51)"/><text text-anchor="left" x="362.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd0f7 (2 samples, 0.04%)</title><rect x="359" y="437" width="1" height="15" fill="rgb(228,221,34)"/><text text-anchor="left" x="362.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd109 (3 samples, 0.06%)</title><rect x="360" y="437" width="0" height="15" fill="rgb(254,106,34)"/><text text-anchor="left" x="363.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_EnqueueMicrotask (4 samples, 0.08%)</title><rect x="360" y="421" width="1" height="15" fill="rgb(236,168,49)"/><text text-anchor="left" x="363.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (9 samples, 0.17%)</title><rect x="361" y="421" width="2" height="15" fill="rgb(215,215,46)"/><text text-anchor="left" x="364.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (1 samples, 0.02%)</title><rect x="363" y="421" width="1" height="15" fill="rgb(245,193,0)"/><text text-anchor="left" x="366.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd164 (35 samples, 0.66%)</title><rect x="360" y="437" width="8" height="15" fill="rgb(247,224,30)"/><text text-anchor="left" x="363.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (21 samples, 0.40%)</title><rect x="364" y="421" width="4" height="15" fill="rgb(248,73,50)"/><text text-anchor="left" x="367.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (20 samples, 0.38%)</title><rect x="364" y="405" width="4" height="15" fill="rgb(208,117,45)"/><text text-anchor="left" x="367.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::ToArrayIndexSlow (1 samples, 0.02%)</title><rect x="368" y="389" width="0" height="15" fill="rgb(243,198,23)"/><text text-anchor="left" x="371.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd1a1 (2 samples, 0.04%)</title><rect x="368" y="437" width="1" height="15" fill="rgb(221,208,50)"/><text text-anchor="left" x="371.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (2 samples, 0.04%)</title><rect x="368" y="421" width="1" height="15" fill="rgb(229,41,8)"/><text text-anchor="left" x="371.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (3 samples, 0.06%)</title><rect x="369" y="421" width="0" height="15" fill="rgb(223,123,18)"/><text text-anchor="left" x="372.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cd1c7 (4 samples, 0.08%)</title><rect x="369" y="437" width="1" height="15" fill="rgb(250,93,16)"/><text text-anchor="left" x="372.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (1 samples, 0.02%)</title><rect x="369" y="421" width="1" height="15" fill="rgb(240,150,14)"/><text text-anchor="left" x="372.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (1 samples, 0.02%)</title><rect x="369" y="405" width="1" height="15" fill="rgb(245,224,24)"/><text text-anchor="left" x="372.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cda96 (1 samples, 0.02%)</title><rect x="370" y="437" width="0" height="15" fill="rgb(226,79,45)"/><text text-anchor="left" x="373.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cdc6c (1 samples, 0.02%)</title><rect x="370" y="437" width="0" height="15" fill="rgb(212,149,29)"/><text text-anchor="left" x="373.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (2 samples, 0.04%)</title><rect x="373" y="357" width="1" height="15" fill="rgb(224,45,10)"/><text text-anchor="left" x="376.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="373" y="341" width="1" height="15" fill="rgb(225,91,40)"/><text text-anchor="left" x="376.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PropertyOrElement(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (9 samples, 0.17%)</title><rect x="374" y="341" width="2" height="15" fill="rgb(207,36,23)"/><text text-anchor="left" x="377.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::LookupIterator::NextInternal&lt;false&gt; (7 samples, 0.13%)</title><rect x="375" y="325" width="1" height="15" fill="rgb(249,136,25)"/><text text-anchor="left" x="378.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInRegularHolder&lt;false&gt; (3 samples, 0.06%)</title><rect x="375" y="309" width="1" height="15" fill="rgb(223,44,24)"/><text text-anchor="left" x="378.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::ApplyTransitionToDataProperty(v8::internal::Handle (9 samples, 0.17%)</title><rect x="376" y="325" width="2" height="15" fill="rgb(211,79,16)"/><text text-anchor="left" x="379.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::MigrateToMap(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (9 samples, 0.17%)</title><rect x="376" y="309" width="2" height="15" fill="rgb(211,203,22)"/><text text-anchor="left" x="379.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::PropertyArray&gt; v8::internal::Factory::CopyArrayAndGrow&lt;v8::internal::PropertyArray&gt;(v8::internal::Handle (5 samples, 0.09%)</title><rect x="377" y="293" width="1" height="15" fill="rgb(212,111,26)"/><text text-anchor="left" x="380.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (2 samples, 0.04%)</title><rect x="378" y="277" width="0" height="15" fill="rgb(224,167,10)"/><text text-anchor="left" x="381.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="378" y="261" width="0" height="15" fill="rgb(251,65,30)"/><text text-anchor="left" x="381.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::InternalUpdateProtector(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="378" y="325" width="1" height="15" fill="rgb(235,22,50)"/><text text-anchor="left" x="381.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::UpdateDescriptorForValue(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::InternalIndex, v8::internal::PropertyConstness, v8::internal::Handle (2 samples, 0.04%)</title><rect x="380" y="293" width="0" height="15" fill="rgb(234,121,8)"/><text text-anchor="left" x="383.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (9 samples, 0.17%)</title><rect x="379" y="325" width="2" height="15" fill="rgb(227,193,19)"/><text text-anchor="left" x="382.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Map::TransitionToDataProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (5 samples, 0.09%)</title><rect x="380" y="309" width="1" height="15" fill="rgb(237,68,32)"/><text text-anchor="left" x="383.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::TransitionsAccessor::SearchTransition (2 samples, 0.04%)</title><rect x="380" y="293" width="1" height="15" fill="rgb(241,52,26)"/><text text-anchor="left" x="383.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cdcb3 (49 samples, 0.93%)</title><rect x="370" y="437" width="11" height="15" fill="rgb(224,133,4)"/><text text-anchor="left" x="373.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ObjectAssign (49 samples, 0.93%)</title><rect x="370" y="421" width="11" height="15" fill="rgb(235,142,31)"/><text text-anchor="left" x="373.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_SetDataProperties (47 samples, 0.89%)</title><rect x="371" y="405" width="10" height="15" fill="rgb(216,77,14)"/><text text-anchor="left" x="374.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (36 samples, 0.68%)</title><rect x="373" y="389" width="8" height="15" fill="rgb(248,65,27)"/><text text-anchor="left" x="376.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_SetKeyedProperty (35 samples, 0.66%)</title><rect x="373" y="373" width="8" height="15" fill="rgb(230,150,25)"/><text text-anchor="left" x="376.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::StoreOrigin, v8::Maybe (33 samples, 0.63%)</title><rect x="374" y="357" width="7" height="15" fill="rgb(224,30,51)"/><text text-anchor="left" x="377.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::PropertyAttributes, v8::Maybe (22 samples, 0.42%)</title><rect x="376" y="341" width="5" height="15" fill="rgb(217,127,35)"/><text text-anchor="left" x="379.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::WriteDataValue(v8::internal::Handle (1 samples, 0.02%)</title><rect x="381" y="325" width="0" height="15" fill="rgb(209,119,14)"/><text text-anchor="left" x="384.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cdd3d (1 samples, 0.02%)</title><rect x="381" y="437" width="0" height="15" fill="rgb(227,138,10)"/><text text-anchor="left" x="384.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cddca (1 samples, 0.02%)</title><rect x="381" y="437" width="1" height="15" fill="rgb(241,70,8)"/><text text-anchor="left" x="384.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (2 samples, 0.04%)</title><rect x="383" y="373" width="0" height="15" fill="rgb(240,51,12)"/><text text-anchor="left" x="386.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::GetRootForNonJSReceiver(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="384" y="341" width="0" height="15" fill="rgb(238,154,17)"/><text text-anchor="left" x="387.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_GetProperty (10 samples, 0.19%)</title><rect x="382" y="389" width="2" height="15" fill="rgb(254,167,52)"/><text text-anchor="left" x="385.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime::GetObjectProperty(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (5 samples, 0.09%)</title><rect x="383" y="373" width="1" height="15" fill="rgb(221,74,41)"/><text text-anchor="left" x="386.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::PropertyOrElement(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (5 samples, 0.09%)</title><rect x="383" y="357" width="1" height="15" fill="rgb(214,25,50)"/><text text-anchor="left" x="386.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::LookupIterator(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle&lt;v8::internal::Name&gt;, v8::internal::Handle (3 samples, 0.06%)</title><rect x="384" y="341" width="0" height="15" fill="rgb(247,226,1)"/><text text-anchor="left" x="387.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInRegularHolder&lt;false&gt; (2 samples, 0.04%)</title><rect x="384" y="325" width="0" height="15" fill="rgb(228,197,41)"/><text text-anchor="left" x="387.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::LookupSingleCharacterStringFromCode (1 samples, 0.02%)</title><rect x="385" y="373" width="0" height="15" fill="rgb(242,229,27)"/><text text-anchor="left" x="388.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="386" y="293" width="0" height="15" fill="rgb(244,41,40)"/><text text-anchor="left" x="389.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::GCTracer::Start (1 samples, 0.02%)</title><rect x="386" y="277" width="0" height="15" fill="rgb(246,3,4)"/><text text-anchor="left" x="389.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawFixedArray (4 samples, 0.08%)</title><rect x="385" y="341" width="1" height="15" fill="rgb(253,193,54)"/><text text-anchor="left" x="388.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="386" y="325" width="0" height="15" fill="rgb(220,229,51)"/><text text-anchor="left" x="389.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="386" y="309" width="0" height="15" fill="rgb(230,42,34)"/><text text-anchor="left" x="389.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="386" y="293" width="0" height="15" fill="rgb(206,112,35)"/><text text-anchor="left" x="389.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="386" y="277" width="0" height="15" fill="rgb(222,155,32)"/><text text-anchor="left" x="389.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="386" y="261" width="0" height="15" fill="rgb(210,102,40)"/><text text-anchor="left" x="389.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="386" y="245" width="0" height="15" fill="rgb(239,161,8)"/><text text-anchor="left" x="389.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="386" y="229" width="0" height="15" fill="rgb(238,207,7)"/><text text-anchor="left" x="389.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="386" y="213" width="0" height="15" fill="rgb(252,102,24)"/><text text-anchor="left" x="389.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="386" y="197" width="0" height="15" fill="rgb(251,227,9)"/><text text-anchor="left" x="389.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="386" y="181" width="0" height="15" fill="rgb(250,192,45)"/><text text-anchor="left" x="389.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="386" y="165" width="0" height="15" fill="rgb(217,115,49)"/><text text-anchor="left" x="389.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewJSArrayStorage (6 samples, 0.11%)</title><rect x="385" y="357" width="1" height="15" fill="rgb(234,37,23)"/><text text-anchor="left" x="388.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="386" y="341" width="0" height="15" fill="rgb(214,126,22)"/><text text-anchor="left" x="389.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewJSArray (13 samples, 0.25%)</title><rect x="385" y="373" width="3" height="15" fill="rgb(220,185,44)"/><text text-anchor="left" x="388.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewJSArrayWithUnverifiedElements(v8::internal::Handle (7 samples, 0.13%)</title><rect x="386" y="357" width="2" height="15" fill="rgb(226,34,43)"/><text text-anchor="left" x="389.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawWithAllocationSite(v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::AllocationType, v8::internal::Handle (6 samples, 0.11%)</title><rect x="387" y="341" width="1" height="15" fill="rgb(254,1,30)"/><text text-anchor="left" x="390.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="388" y="325" width="0" height="15" fill="rgb(246,52,53)"/><text text-anchor="left" x="391.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="388" y="309" width="0" height="15" fill="rgb(254,19,13)"/><text text-anchor="left" x="391.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="388" y="293" width="0" height="15" fill="rgb(206,88,30)"/><text text-anchor="left" x="391.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="388" y="277" width="0" height="15" fill="rgb(241,24,2)"/><text text-anchor="left" x="391.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="388" y="261" width="0" height="15" fill="rgb(227,30,41)"/><text text-anchor="left" x="391.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="388" y="245" width="0" height="15" fill="rgb(213,202,27)"/><text text-anchor="left" x="391.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="388" y="229" width="0" height="15" fill="rgb(235,20,18)"/><text text-anchor="left" x="391.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="388" y="213" width="0" height="15" fill="rgb(252,69,7)"/><text text-anchor="left" x="391.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="388" y="197" width="0" height="15" fill="rgb(250,229,43)"/><text text-anchor="left" x="391.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="388" y="181" width="0" height="15" fill="rgb(229,166,41)"/><text text-anchor="left" x="391.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`unsigned short v8::internal::StringShape::DispatchToSpecificTypeWithoutCast&lt;unsigned short v8::internal::StringShape::DispatchToSpecificType&lt;v8::internal::String::Get(int)::StringGetDispatcher, unsigned short, int&amp;&gt;(v8::internal::String, int&amp;)::CastingDispatcher, unsigned short, v8::internal::String&amp;, int&amp;&gt; (1 samples, 0.02%)</title><rect x="388" y="357" width="0" height="15" fill="rgb(209,14,44)"/><text text-anchor="left" x="391.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::LookupSingleCharacterStringFromCode (1 samples, 0.02%)</title><rect x="388" y="357" width="0" height="15" fill="rgb(225,130,48)"/><text text-anchor="left" x="391.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="389" y="341" width="0" height="15" fill="rgb(248,88,41)"/><text text-anchor="left" x="392.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (7 samples, 0.13%)</title><rect x="388" y="357" width="2" height="15" fill="rgb(219,19,28)"/><text text-anchor="left" x="391.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="389" y="341" width="1" height="15" fill="rgb(249,17,43)"/><text text-anchor="left" x="392.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="390" y="325" width="0" height="15" fill="rgb(235,175,9)"/><text text-anchor="left" x="393.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="390" y="309" width="0" height="15" fill="rgb(207,213,27)"/><text text-anchor="left" x="393.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="390" y="357" width="0" height="15" fill="rgb(248,165,30)"/><text text-anchor="left" x="393.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::Flatten(v8::internal::Isolate*, v8::internal::Handle (2 samples, 0.04%)</title><rect x="390" y="357" width="1" height="15" fill="rgb(244,68,4)"/><text text-anchor="left" x="393.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewProperSubString(v8::internal::Handle (15 samples, 0.28%)</title><rect x="388" y="373" width="3" height="15" fill="rgb(207,209,17)"/><text text-anchor="left" x="391.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::String::WriteToFlat&lt;unsigned char&gt; (3 samples, 0.06%)</title><rect x="391" y="357" width="0" height="15" fill="rgb(243,55,41)"/><text text-anchor="left" x="394.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cde36 (49 samples, 0.93%)</title><rect x="382" y="437" width="11" height="15" fill="rgb(240,167,53)"/><text text-anchor="left" x="385.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringPrototypeSplit (49 samples, 0.93%)</title><rect x="382" y="421" width="11" height="15" fill="rgb(234,31,13)"/><text text-anchor="left" x="385.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (47 samples, 0.89%)</title><rect x="382" y="405" width="11" height="15" fill="rgb(205,68,12)"/><text text-anchor="left" x="385.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_StringSplit (36 samples, 0.68%)</title><rect x="384" y="389" width="9" height="15" fill="rgb(245,136,35)"/><text text-anchor="left" x="387.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FindStringIndicesDispatch(v8::internal::Isolate*, v8::internal::String, v8::internal::String, std::__1::vector&lt;int, std::__1::allocator (5 samples, 0.09%)</title><rect x="391" y="373" width="2" height="15" fill="rgb(227,172,21)"/><text text-anchor="left" x="394.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::FindOneByteStringIndices(v8::internal::Vector&lt;unsigned char const&gt;, unsigned char, std::__1::vector&lt;int, std::__1::allocator (5 samples, 0.09%)</title><rect x="391" y="357" width="2" height="15" fill="rgb(247,198,17)"/><text text-anchor="left" x="394.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memchr$VARIANT$Haswell (4 samples, 0.08%)</title><rect x="392" y="341" width="1" height="15" fill="rgb(242,51,54)"/><text text-anchor="left" x="395.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cdffc (1 samples, 0.02%)</title><rect x="393" y="437" width="0" height="15" fill="rgb(240,94,52)"/><text text-anchor="left" x="396.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce09c (1 samples, 0.02%)</title><rect x="393" y="437" width="0" height="15" fill="rgb(220,150,46)"/><text text-anchor="left" x="396.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce0a0 (1 samples, 0.02%)</title><rect x="393" y="437" width="0" height="15" fill="rgb(228,141,5)"/><text text-anchor="left" x="396.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce0a4 (1 samples, 0.02%)</title><rect x="393" y="437" width="0" height="15" fill="rgb(242,19,21)"/><text text-anchor="left" x="396.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce2a4 (1 samples, 0.02%)</title><rect x="393" y="437" width="1" height="15" fill="rgb(235,193,3)"/><text text-anchor="left" x="396.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce43d (1 samples, 0.02%)</title><rect x="394" y="437" width="0" height="15" fill="rgb(206,126,54)"/><text text-anchor="left" x="397.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`int v8::internal::FastAsciiConvert&lt;true&gt; (2 samples, 0.04%)</title><rect x="394" y="357" width="1" height="15" fill="rgb(254,206,41)"/><text text-anchor="left" x="397.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="395" y="309" width="1" height="15" fill="rgb(241,208,37)"/><text text-anchor="left" x="398.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object v8::internal::(anonymous namespace)::ConvertCase&lt;unibrow::ToLowercase&gt;(v8::internal::Handle&lt;v8::internal::String&gt;, v8::internal::Isolate*, unibrow::Mapping (7 samples, 0.13%)</title><rect x="394" y="373" width="2" height="15" fill="rgb(245,67,49)"/><text text-anchor="left" x="397.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (5 samples, 0.09%)</title><rect x="395" y="357" width="1" height="15" fill="rgb(234,138,54)"/><text text-anchor="left" x="398.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="395" y="341" width="1" height="15" fill="rgb(226,197,43)"/><text text-anchor="left" x="398.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="395" y="325" width="1" height="15" fill="rgb(208,133,47)"/><text text-anchor="left" x="398.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="396" y="309" width="0" height="15" fill="rgb(223,184,42)"/><text text-anchor="left" x="399.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="396" y="293" width="0" height="15" fill="rgb(241,41,11)"/><text text-anchor="left" x="399.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="396" y="277" width="0" height="15" fill="rgb(246,166,26)"/><text text-anchor="left" x="399.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="396" y="261" width="0" height="15" fill="rgb(245,216,39)"/><text text-anchor="left" x="399.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="396" y="245" width="0" height="15" fill="rgb(207,28,38)"/><text text-anchor="left" x="399.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="396" y="229" width="0" height="15" fill="rgb(223,101,36)"/><text text-anchor="left" x="399.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_small (1 samples, 0.02%)</title><rect x="396" y="213" width="0" height="15" fill="rgb(231,157,3)"/><text text-anchor="left" x="399.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3d2b (10 samples, 0.19%)</title><rect x="394" y="421" width="2" height="15" fill="rgb(227,207,39)"/><text text-anchor="left" x="397.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (10 samples, 0.19%)</title><rect x="394" y="405" width="2" height="15" fill="rgb(247,163,34)"/><text text-anchor="left" x="397.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_StringPrototypeToLowerCase (9 samples, 0.17%)</title><rect x="394" y="389" width="2" height="15" fill="rgb(244,66,53)"/><text text-anchor="left" x="397.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="396" y="373" width="0" height="15" fill="rgb(216,104,48)"/><text text-anchor="left" x="399.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3d79 (3 samples, 0.06%)</title><rect x="396" y="421" width="1" height="15" fill="rgb(237,14,31)"/><text text-anchor="left" x="399.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringPrototypeTrim (3 samples, 0.06%)</title><rect x="396" y="405" width="1" height="15" fill="rgb(217,23,41)"/><text text-anchor="left" x="399.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3d97 (2 samples, 0.04%)</title><rect x="397" y="421" width="0" height="15" fill="rgb(225,98,52)"/><text text-anchor="left" x="400.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3dd6 (1 samples, 0.02%)</title><rect x="397" y="421" width="0" height="15" fill="rgb(249,160,0)"/><text text-anchor="left" x="400.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2b47 (1 samples, 0.02%)</title><rect x="398" y="389" width="0" height="15" fill="rgb(224,206,37)"/><text text-anchor="left" x="401.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2b73 (1 samples, 0.02%)</title><rect x="398" y="389" width="0" height="15" fill="rgb(210,52,49)"/><text text-anchor="left" x="401.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3e0f (5 samples, 0.09%)</title><rect x="397" y="421" width="2" height="15" fill="rgb(210,142,50)"/><text text-anchor="left" x="400.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RegExpPrototypeTestFast (5 samples, 0.09%)</title><rect x="397" y="405" width="2" height="15" fill="rgb(225,221,45)"/><text text-anchor="left" x="400.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2bc7 (1 samples, 0.02%)</title><rect x="398" y="389" width="1" height="15" fill="rgb(247,42,6)"/><text text-anchor="left" x="401.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3e3f (1 samples, 0.02%)</title><rect x="399" y="421" width="0" height="15" fill="rgb(242,183,27)"/><text text-anchor="left" x="402.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3e60 (12 samples, 0.23%)</title><rect x="399" y="421" width="2" height="15" fill="rgb(235,163,48)"/><text text-anchor="left" x="402.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FindOrderedHashMapEntry (12 samples, 0.23%)</title><rect x="399" y="405" width="2" height="15" fill="rgb(211,69,32)"/><text text-anchor="left" x="402.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashMap::GetHash (6 samples, 0.11%)</title><rect x="400" y="389" width="1" height="15" fill="rgb(237,219,32)"/><text text-anchor="left" x="403.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::GetSimpleHash (4 samples, 0.08%)</title><rect x="401" y="373" width="0" height="15" fill="rgb(245,87,6)"/><text text-anchor="left" x="404.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::ComputeAndSetHash (3 samples, 0.06%)</title><rect x="401" y="357" width="0" height="15" fill="rgb(240,116,32)"/><text text-anchor="left" x="404.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce443 (35 samples, 0.66%)</title><rect x="394" y="437" width="8" height="15" fill="rgb(252,192,27)"/><text text-anchor="left" x="397.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (1 samples, 0.02%)</title><rect x="401" y="421" width="1" height="15" fill="rgb(234,24,29)"/><text text-anchor="left" x="404.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="401" y="405" width="1" height="15" fill="rgb(217,192,10)"/><text text-anchor="left" x="404.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="401" y="389" width="1" height="15" fill="rgb(248,40,10)"/><text text-anchor="left" x="404.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="401" y="373" width="1" height="15" fill="rgb(210,135,7)"/><text text-anchor="left" x="404.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="401" y="357" width="1" height="15" fill="rgb(205,71,17)"/><text text-anchor="left" x="404.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="401" y="341" width="1" height="15" fill="rgb(252,27,14)"/><text text-anchor="left" x="404.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="401" y="325" width="1" height="15" fill="rgb(236,14,31)"/><text text-anchor="left" x="404.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="401" y="309" width="1" height="15" fill="rgb(227,205,34)"/><text text-anchor="left" x="404.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::InliningPhase&gt; (1 samples, 0.02%)</title><rect x="401" y="293" width="1" height="15" fill="rgb(216,56,36)"/><text text-anchor="left" x="404.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::InliningPhase::Run (1 samples, 0.02%)</title><rect x="401" y="277" width="1" height="15" fill="rgb(225,150,11)"/><text text-anchor="left" x="404.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceNode (1 samples, 0.02%)</title><rect x="401" y="261" width="1" height="15" fill="rgb(253,142,52)"/><text text-anchor="left" x="404.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceTop (1 samples, 0.02%)</title><rect x="401" y="245" width="1" height="15" fill="rgb(206,82,24)"/><text text-anchor="left" x="404.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::Reduce (1 samples, 0.02%)</title><rect x="401" y="229" width="1" height="15" fill="rgb(219,180,26)"/><text text-anchor="left" x="404.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSCallReducer::ReduceJSCall (1 samples, 0.02%)</title><rect x="401" y="213" width="1" height="15" fill="rgb(254,30,54)"/><text text-anchor="left" x="404.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSCallReducer::ReduceRegExpPrototypeTest (1 samples, 0.02%)</title><rect x="401" y="197" width="1" height="15" fill="rgb(228,153,0)"/><text text-anchor="left" x="404.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::MapInference::AllOfInstanceTypes(std::__1::function&lt;bool (1 samples, 0.02%)</title><rect x="401" y="181" width="1" height="15" fill="rgb(230,95,12)"/><text text-anchor="left" x="404.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_EnqueueMicrotask (3 samples, 0.06%)</title><rect x="402" y="421" width="0" height="15" fill="rgb(227,203,11)"/><text text-anchor="left" x="405.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (6 samples, 0.11%)</title><rect x="402" y="421" width="2" height="15" fill="rgb(205,148,50)"/><text text-anchor="left" x="405.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce4b7 (15 samples, 0.28%)</title><rect x="402" y="437" width="3" height="15" fill="rgb(244,8,20)"/><text text-anchor="left" x="405.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (6 samples, 0.11%)</title><rect x="404" y="421" width="1" height="15" fill="rgb(248,135,33)"/><text text-anchor="left" x="407.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (4 samples, 0.08%)</title><rect x="404" y="405" width="1" height="15" fill="rgb(232,131,46)"/><text text-anchor="left" x="407.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c7561 (1 samples, 0.02%)</title><rect x="405" y="421" width="0" height="15" fill="rgb(249,106,19)"/><text text-anchor="left" x="408.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e1ee9 (4 samples, 0.08%)</title><rect x="405" y="389" width="1" height="15" fill="rgb(243,152,41)"/><text text-anchor="left" x="408.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InstanceOf (4 samples, 0.08%)</title><rect x="405" y="373" width="1" height="15" fill="rgb(215,229,51)"/><text text-anchor="left" x="408.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (4 samples, 0.08%)</title><rect x="405" y="357" width="1" height="15" fill="rgb(226,65,21)"/><text text-anchor="left" x="408.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e1f25 (2 samples, 0.04%)</title><rect x="406" y="389" width="1" height="15" fill="rgb(224,201,41)"/><text text-anchor="left" x="409.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSBuiltinsConstructStub (2 samples, 0.04%)</title><rect x="406" y="373" width="1" height="15" fill="rgb(239,13,27)"/><text text-anchor="left" x="409.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapConstructor (1 samples, 0.02%)</title><rect x="406" y="357" width="1" height="15" fill="rgb(252,93,13)"/><text text-anchor="left" x="409.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e1f91 (1 samples, 0.02%)</title><rect x="407" y="389" width="0" height="15" fill="rgb(229,47,25)"/><text text-anchor="left" x="410.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="407" y="373" width="0" height="15" fill="rgb(207,129,13)"/><text text-anchor="left" x="410.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="407" y="357" width="0" height="15" fill="rgb(208,67,8)"/><text text-anchor="left" x="410.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="407" y="341" width="0" height="15" fill="rgb(238,218,21)"/><text text-anchor="left" x="410.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="407" y="325" width="0" height="15" fill="rgb(220,174,19)"/><text text-anchor="left" x="410.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="407" y="309" width="0" height="15" fill="rgb(246,1,25)"/><text text-anchor="left" x="410.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="407" y="293" width="0" height="15" fill="rgb(232,93,17)"/><text text-anchor="left" x="410.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="407" y="277" width="0" height="15" fill="rgb(243,52,35)"/><text text-anchor="left" x="410.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::InliningPhase&gt; (1 samples, 0.02%)</title><rect x="407" y="261" width="0" height="15" fill="rgb(222,90,38)"/><text text-anchor="left" x="410.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::InliningPhase::Run (1 samples, 0.02%)</title><rect x="407" y="245" width="0" height="15" fill="rgb(230,7,41)"/><text text-anchor="left" x="410.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceNode (1 samples, 0.02%)</title><rect x="407" y="229" width="0" height="15" fill="rgb(212,186,9)"/><text text-anchor="left" x="410.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::ReduceTop (1 samples, 0.02%)</title><rect x="407" y="213" width="0" height="15" fill="rgb(227,110,8)"/><text text-anchor="left" x="410.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphReducer::Reduce (1 samples, 0.02%)</title><rect x="407" y="197" width="0" height="15" fill="rgb(249,150,47)"/><text text-anchor="left" x="410.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSInliningHeuristic::Reduce (1 samples, 0.02%)</title><rect x="407" y="181" width="0" height="15" fill="rgb(226,161,44)"/><text text-anchor="left" x="410.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSInliningHeuristic::InlineCandidate (1 samples, 0.02%)</title><rect x="407" y="165" width="0" height="15" fill="rgb(226,199,54)"/><text text-anchor="left" x="410.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::JSInliner::ReduceJSCall (1 samples, 0.02%)</title><rect x="407" y="149" width="0" height="15" fill="rgb(218,105,44)"/><text text-anchor="left" x="410.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::SharedFunctionInfoRef::GetBytecodeArray (1 samples, 0.02%)</title><rect x="407" y="133" width="0" height="15" fill="rgb(253,121,0)"/><text text-anchor="left" x="410.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::ObjectRef::ObjectRef(v8::internal::compiler::JSHeapBroker*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="407" y="117" width="0" height="15" fill="rgb(233,69,5)"/><text text-anchor="left" x="410.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::RefsMap::LookupOrInsert (1 samples, 0.02%)</title><rect x="407" y="101" width="0" height="15" fill="rgb(234,206,7)"/><text text-anchor="left" x="410.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c756e (9 samples, 0.17%)</title><rect x="405" y="421" width="2" height="15" fill="rgb(213,59,29)"/><text text-anchor="left" x="408.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSConstructStubGeneric (9 samples, 0.17%)</title><rect x="405" y="405" width="2" height="15" fill="rgb(236,94,47)"/><text text-anchor="left" x="408.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (2 samples, 0.04%)</title><rect x="407" y="389" width="0" height="15" fill="rgb(219,140,12)"/><text text-anchor="left" x="410.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StaKeyedPropertyHandler (1 samples, 0.02%)</title><rect x="407" y="373" width="0" height="15" fill="rgb(238,33,1)"/><text text-anchor="left" x="410.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_KeyedStoreIC (1 samples, 0.02%)</title><rect x="407" y="357" width="0" height="15" fill="rgb(231,57,25)"/><text text-anchor="left" x="410.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d1f84 (1 samples, 0.02%)</title><rect x="407" y="405" width="1" height="15" fill="rgb(249,95,34)"/><text text-anchor="left" x="410.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d2042 (1 samples, 0.02%)</title><rect x="408" y="405" width="0" height="15" fill="rgb(251,30,7)"/><text text-anchor="left" x="411.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d21ab (5 samples, 0.09%)</title><rect x="408" y="405" width="1" height="15" fill="rgb(226,12,0)"/><text text-anchor="left" x="411.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSubArray (5 samples, 0.09%)</title><rect x="408" y="389" width="1" height="15" fill="rgb(233,2,42)"/><text text-anchor="left" x="411.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (3 samples, 0.06%)</title><rect x="408" y="373" width="1" height="15" fill="rgb(234,75,23)"/><text text-anchor="left" x="411.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (1 samples, 0.02%)</title><rect x="409" y="389" width="0" height="15" fill="rgb(245,94,45)"/><text text-anchor="left" x="412.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c75c6 (15 samples, 0.28%)</title><rect x="407" y="421" width="4" height="15" fill="rgb(207,163,40)"/><text text-anchor="left" x="410.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d21d4 (8 samples, 0.15%)</title><rect x="409" y="405" width="2" height="15" fill="rgb(214,186,19)"/><text text-anchor="left" x="412.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResolvePromise (7 samples, 0.13%)</title><rect x="409" y="389" width="2" height="15" fill="rgb(229,175,34)"/><text text-anchor="left" x="412.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (6 samples, 0.11%)</title><rect x="409" y="373" width="2" height="15" fill="rgb(228,18,15)"/><text text-anchor="left" x="412.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce5a8 (26 samples, 0.49%)</title><rect x="405" y="437" width="6" height="15" fill="rgb(217,160,53)"/><text text-anchor="left" x="408.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c75db (1 samples, 0.02%)</title><rect x="411" y="421" width="0" height="15" fill="rgb(245,171,45)"/><text text-anchor="left" x="414.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (1 samples, 0.02%)</title><rect x="411" y="405" width="0" height="15" fill="rgb(207,74,3)"/><text text-anchor="left" x="414.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="412" y="325" width="0" height="15" fill="rgb(210,134,54)"/><text text-anchor="left" x="415.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::EnsureAllocation (1 samples, 0.02%)</title><rect x="412" y="309" width="0" height="15" fill="rgb(220,213,27)"/><text text-anchor="left" x="415.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::AddFreshPage (1 samples, 0.02%)</title><rect x="412" y="293" width="0" height="15" fill="rgb(219,175,12)"/><text text-anchor="left" x="415.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce5c0 (5 samples, 0.09%)</title><rect x="411" y="437" width="1" height="15" fill="rgb(215,74,29)"/><text text-anchor="left" x="414.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (5 samples, 0.09%)</title><rect x="411" y="421" width="1" height="15" fill="rgb(208,9,46)"/><text text-anchor="left" x="414.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="412" y="405" width="0" height="15" fill="rgb(217,81,18)"/><text text-anchor="left" x="415.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="412" y="389" width="0" height="15" fill="rgb(236,22,24)"/><text text-anchor="left" x="415.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="412" y="373" width="0" height="15" fill="rgb(254,170,38)"/><text text-anchor="left" x="415.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="412" y="357" width="0" height="15" fill="rgb(223,151,21)"/><text text-anchor="left" x="415.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="412" y="341" width="0" height="15" fill="rgb(235,220,45)"/><text text-anchor="left" x="415.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="412" y="325" width="0" height="15" fill="rgb(220,123,26)"/><text text-anchor="left" x="415.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="412" y="309" width="0" height="15" fill="rgb(210,47,16)"/><text text-anchor="left" x="415.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="412" y="293" width="0" height="15" fill="rgb(209,8,40)"/><text text-anchor="left" x="415.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="412" y="277" width="0" height="15" fill="rgb(248,101,25)"/><text text-anchor="left" x="415.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="412" y="261" width="0" height="15" fill="rgb(219,12,30)"/><text text-anchor="left" x="415.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="412" y="245" width="0" height="15" fill="rgb(215,182,16)"/><text text-anchor="left" x="415.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ce5f7 (1 samples, 0.02%)</title><rect x="412" y="437" width="0" height="15" fill="rgb(222,94,34)"/><text text-anchor="left" x="415.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="412" y="277" width="0" height="15" fill="rgb(226,57,13)"/><text text-anchor="left" x="415.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="412" y="261" width="0" height="15" fill="rgb(214,140,12)"/><text text-anchor="left" x="415.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ceb6b (2 samples, 0.04%)</title><rect x="412" y="437" width="1" height="15" fill="rgb(215,67,5)"/><text text-anchor="left" x="415.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="412" y="421" width="1" height="15" fill="rgb(215,201,52)"/><text text-anchor="left" x="415.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="412" y="405" width="1" height="15" fill="rgb(241,88,7)"/><text text-anchor="left" x="415.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="412" y="389" width="1" height="15" fill="rgb(229,56,35)"/><text text-anchor="left" x="415.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="412" y="373" width="1" height="15" fill="rgb(220,69,30)"/><text text-anchor="left" x="415.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="412" y="357" width="1" height="15" fill="rgb(214,143,0)"/><text text-anchor="left" x="415.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="412" y="341" width="1" height="15" fill="rgb(239,119,45)"/><text text-anchor="left" x="415.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="412" y="325" width="1" height="15" fill="rgb(213,98,40)"/><text text-anchor="left" x="415.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="412" y="309" width="1" height="15" fill="rgb(232,184,0)"/><text text-anchor="left" x="415.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="412" y="293" width="1" height="15" fill="rgb(242,39,31)"/><text text-anchor="left" x="415.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="412" y="277" width="1" height="15" fill="rgb(228,57,20)"/><text text-anchor="left" x="415.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="412" y="261" width="1" height="15" fill="rgb(206,187,50)"/><text text-anchor="left" x="415.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="412" y="245" width="1" height="15" fill="rgb(223,164,14)"/><text text-anchor="left" x="415.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="412" y="229" width="1" height="15" fill="rgb(207,182,35)"/><text text-anchor="left" x="415.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::ScavengePage (1 samples, 0.02%)</title><rect x="412" y="213" width="1" height="15" fill="rgb(218,156,0)"/><text text-anchor="left" x="415.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="412" y="197" width="1" height="15" fill="rgb(252,21,37)"/><text text-anchor="left" x="415.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PagedSpace::AllocateRaw (1 samples, 0.02%)</title><rect x="412" y="181" width="1" height="15" fill="rgb(228,171,45)"/><text text-anchor="left" x="415.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="412" y="165" width="1" height="15" fill="rgb(241,147,19)"/><text text-anchor="left" x="415.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ceb97 (1 samples, 0.02%)</title><rect x="413" y="437" width="0" height="15" fill="rgb(250,21,20)"/><text text-anchor="left" x="416.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="413" y="421" width="0" height="15" fill="rgb(228,112,12)"/><text text-anchor="left" x="416.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="413" y="405" width="0" height="15" fill="rgb(225,53,43)"/><text text-anchor="left" x="416.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="413" y="389" width="0" height="15" fill="rgb(233,61,53)"/><text text-anchor="left" x="416.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="413" y="373" width="0" height="15" fill="rgb(229,111,30)"/><text text-anchor="left" x="416.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="413" y="357" width="0" height="15" fill="rgb(228,91,43)"/><text text-anchor="left" x="416.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="413" y="341" width="0" height="15" fill="rgb(245,122,2)"/><text text-anchor="left" x="416.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="413" y="325" width="0" height="15" fill="rgb(244,161,23)"/><text text-anchor="left" x="416.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="413" y="309" width="0" height="15" fill="rgb(222,148,24)"/><text text-anchor="left" x="416.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="413" y="293" width="0" height="15" fill="rgb(249,35,2)"/><text text-anchor="left" x="416.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="413" y="277" width="0" height="15" fill="rgb(205,172,32)"/><text text-anchor="left" x="416.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="413" y="261" width="0" height="15" fill="rgb(235,89,24)"/><text text-anchor="left" x="416.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="413" y="245" width="0" height="15" fill="rgb(240,158,29)"/><text text-anchor="left" x="416.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="413" y="229" width="0" height="15" fill="rgb(250,197,7)"/><text text-anchor="left" x="416.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_malloc_should_clear (1 samples, 0.02%)</title><rect x="413" y="213" width="0" height="15" fill="rgb(254,127,33)"/><text text-anchor="left" x="416.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_malloc_from_free_list (1 samples, 0.02%)</title><rect x="413" y="197" width="0" height="15" fill="rgb(239,120,28)"/><text text-anchor="left" x="416.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_free_list_add_ptr (1 samples, 0.02%)</title><rect x="413" y="181" width="0" height="15" fill="rgb(229,94,8)"/><text text-anchor="left" x="416.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfb48 (2 samples, 0.04%)</title><rect x="413" y="437" width="0" height="15" fill="rgb(212,162,31)"/><text text-anchor="left" x="416.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cfd57 (1 samples, 0.02%)</title><rect x="413" y="437" width="1" height="15" fill="rgb(223,214,8)"/><text text-anchor="left" x="416.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d25ef (4 samples, 0.08%)</title><rect x="414" y="437" width="0" height="15" fill="rgb(234,136,14)"/><text text-anchor="left" x="417.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FulfillPromise (4 samples, 0.08%)</title><rect x="414" y="421" width="0" height="15" fill="rgb(212,72,52)"/><text text-anchor="left" x="417.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3c28 (1 samples, 0.02%)</title><rect x="414" y="437" width="1" height="15" fill="rgb(208,51,31)"/><text text-anchor="left" x="417.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d65cc (1 samples, 0.02%)</title><rect x="415" y="437" width="0" height="15" fill="rgb(232,153,20)"/><text text-anchor="left" x="418.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d65f1 (1 samples, 0.02%)</title><rect x="415" y="437" width="0" height="15" fill="rgb(248,23,32)"/><text text-anchor="left" x="418.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6827 (1 samples, 0.02%)</title><rect x="415" y="437" width="0" height="15" fill="rgb(233,18,38)"/><text text-anchor="left" x="418.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArgumentsAdaptorTrampoline (1 samples, 0.02%)</title><rect x="416" y="421" width="0" height="15" fill="rgb(227,28,31)"/><text text-anchor="left" x="419.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`DYLD-STUB$$gettimeofday (1 samples, 0.02%)</title><rect x="417" y="341" width="0" height="15" fill="rgb(215,162,39)"/><text text-anchor="left" x="420.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`gettimeofday (6 samples, 0.11%)</title><rect x="417" y="325" width="1" height="15" fill="rgb(244,224,53)"/><text text-anchor="left" x="420.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__commpage_gettimeofday_internal (5 samples, 0.09%)</title><rect x="417" y="309" width="1" height="15" fill="rgb(207,52,9)"/><text text-anchor="left" x="420.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`mach_absolute_time (3 samples, 0.06%)</title><rect x="418" y="293" width="0" height="15" fill="rgb(213,168,24)"/><text text-anchor="left" x="421.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::Time::Now (8 samples, 0.15%)</title><rect x="417" y="341" width="2" height="15" fill="rgb(246,205,10)"/><text text-anchor="left" x="420.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__commpage_gettimeofday_internal (1 samples, 0.02%)</title><rect x="418" y="325" width="1" height="15" fill="rgb(239,51,34)"/><text text-anchor="left" x="421.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSDate::CurrentTimeValue (12 samples, 0.23%)</title><rect x="416" y="373" width="3" height="15" fill="rgb(232,41,20)"/><text text-anchor="left" x="419.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::OS::TimeCurrentMillis (12 samples, 0.23%)</title><rect x="416" y="357" width="3" height="15" fill="rgb(249,47,49)"/><text text-anchor="left" x="419.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`gettimeofday (2 samples, 0.04%)</title><rect x="419" y="341" width="0" height="15" fill="rgb(227,70,32)"/><text text-anchor="left" x="422.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Handle&lt;v8::internal::Object&gt; v8::internal::Factory::NewNumber&lt;(v8::internal::AllocationType)0&gt; (2 samples, 0.04%)</title><rect x="420" y="357" width="0" height="15" fill="rgb(223,19,1)"/><text text-anchor="left" x="423.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="420" y="341" width="0" height="15" fill="rgb(250,153,37)"/><text text-anchor="left" x="423.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="420" y="325" width="0" height="15" fill="rgb(244,120,3)"/><text text-anchor="left" x="423.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSDate::SetValue (1 samples, 0.02%)</title><rect x="420" y="357" width="1" height="15" fill="rgb(243,70,29)"/><text text-anchor="left" x="423.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawWithAllocationSite(v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::AllocationType, v8::internal::Handle (2 samples, 0.04%)</title><rect x="421" y="325" width="1" height="15" fill="rgb(250,209,53)"/><text text-anchor="left" x="424.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="421" y="309" width="1" height="15" fill="rgb(246,87,48)"/><text text-anchor="left" x="424.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="421" y="293" width="1" height="15" fill="rgb(207,119,23)"/><text text-anchor="left" x="424.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="421" y="277" width="1" height="15" fill="rgb(228,143,23)"/><text text-anchor="left" x="424.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::InitializeJSObjectBody(v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="422" y="325" width="0" height="15" fill="rgb(230,37,38)"/><text text-anchor="left" x="425.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewJSObjectFromMap(v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::AllocationType, v8::internal::Handle (7 samples, 0.13%)</title><rect x="421" y="341" width="2" height="15" fill="rgb(237,5,1)"/><text text-anchor="left" x="424.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::InitializeJSObjectFromMap(v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="422" y="325" width="1" height="15" fill="rgb(253,18,46)"/><text text-anchor="left" x="425.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (30 samples, 0.57%)</title><rect x="416" y="405" width="7" height="15" fill="rgb(230,196,37)"/><text text-anchor="left" x="419.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_DateConstructor (30 samples, 0.57%)</title><rect x="416" y="389" width="7" height="15" fill="rgb(240,143,21)"/><text text-anchor="left" x="419.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSDate::New(v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle (18 samples, 0.34%)</title><rect x="419" y="373" width="4" height="15" fill="rgb(215,79,39)"/><text text-anchor="left" x="422.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::New(v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (11 samples, 0.21%)</title><rect x="421" y="357" width="2" height="15" fill="rgb(246,79,12)"/><text text-anchor="left" x="424.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSFunction::GetDerivedMap(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="423" y="341" width="0" height="15" fill="rgb(211,225,40)"/><text text-anchor="left" x="426.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSFunction::EnsureHasInitialMap(v8::internal::Handle (2 samples, 0.04%)</title><rect x="423" y="325" width="0" height="15" fill="rgb(206,148,53)"/><text text-anchor="left" x="426.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d682a (35 samples, 0.66%)</title><rect x="415" y="437" width="8" height="15" fill="rgb(241,189,24)"/><text text-anchor="left" x="418.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSBuiltinsConstructStub (33 samples, 0.63%)</title><rect x="416" y="421" width="7" height="15" fill="rgb(225,107,7)"/><text text-anchor="left" x="419.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_DateConstructor (1 samples, 0.02%)</title><rect x="423" y="405" width="0" height="15" fill="rgb(249,193,38)"/><text text-anchor="left" x="426.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d683e (1 samples, 0.02%)</title><rect x="423" y="437" width="0" height="15" fill="rgb(239,63,24)"/><text text-anchor="left" x="426.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d684c (1 samples, 0.02%)</title><rect x="423" y="437" width="1" height="15" fill="rgb(252,140,13)"/><text text-anchor="left" x="426.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::DateCache::BreakDownTime (5 samples, 0.09%)</title><rect x="425" y="389" width="1" height="15" fill="rgb(220,85,14)"/><text text-anchor="left" x="428.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::DateCache::YearMonthDayFromDays (2 samples, 0.04%)</title><rect x="425" y="373" width="1" height="15" fill="rgb(206,9,54)"/><text text-anchor="left" x="428.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (3 samples, 0.06%)</title><rect x="426" y="373" width="0" height="15" fill="rgb(208,38,16)"/><text text-anchor="left" x="429.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="426" y="357" width="0" height="15" fill="rgb(242,55,43)"/><text text-anchor="left" x="429.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="426" y="341" width="0" height="15" fill="rgb(231,177,9)"/><text text-anchor="left" x="429.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewStringFromOneByte(v8::internal::Vector (4 samples, 0.08%)</title><rect x="426" y="389" width="1" height="15" fill="rgb(222,141,33)"/><text text-anchor="left" x="429.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="426" y="373" width="1" height="15" fill="rgb(243,68,25)"/><text text-anchor="left" x="429.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__ultoa (5 samples, 0.09%)</title><rect x="428" y="309" width="1" height="15" fill="rgb(248,46,53)"/><text text-anchor="left" x="431.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__sfvwrite (22 samples, 0.42%)</title><rect x="436" y="293" width="5" height="15" fill="rgb(215,166,48)"/><text text-anchor="left" x="439.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (5 samples, 0.09%)</title><rect x="440" y="277" width="1" height="15" fill="rgb(248,4,18)"/><text text-anchor="left" x="443.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`DYLD-STUB$$_platform_memmove (1 samples, 0.02%)</title><rect x="441" y="293" width="0" height="15" fill="rgb(213,94,54)"/><text text-anchor="left" x="444.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="441" y="293" width="0" height="15" fill="rgb(222,151,25)"/><text text-anchor="left" x="444.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__vfprintf (57 samples, 1.08%)</title><rect x="429" y="309" width="13" height="15" fill="rgb(222,221,42)"/><text text-anchor="left" x="432.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_strlen (2 samples, 0.04%)</title><rect x="441" y="293" width="1" height="15" fill="rgb(246,207,54)"/><text text-anchor="left" x="444.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SNPrintF(v8::internal::Vector (69 samples, 1.31%)</title><rect x="427" y="389" width="15" height="15" fill="rgb(220,205,33)"/><text text-anchor="left" x="430.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::OS::VSNPrintF (68 samples, 1.29%)</title><rect x="427" y="373" width="15" height="15" fill="rgb(241,189,39)"/><text text-anchor="left" x="430.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`vsnprintf (67 samples, 1.27%)</title><rect x="427" y="357" width="15" height="15" fill="rgb(248,124,9)"/><text text-anchor="left" x="430.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`_vsnprintf (66 samples, 1.25%)</title><rect x="427" y="341" width="15" height="15" fill="rgb(250,133,5)"/><text text-anchor="left" x="430.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_c.dylib`__v2printf (64 samples, 1.22%)</title><rect x="428" y="325" width="14" height="15" fill="rgb(212,117,28)"/><text text-anchor="left" x="431.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (1 samples, 0.02%)</title><rect x="442" y="309" width="0" height="15" fill="rgb(228,142,36)"/><text text-anchor="left" x="445.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_DatePrototypeToUTCString (82 samples, 1.56%)</title><rect x="424" y="405" width="18" height="15" fill="rgb(251,184,29)"/><text text-anchor="left" x="427.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_strlen (1 samples, 0.02%)</title><rect x="442" y="389" width="0" height="15" fill="rgb(241,114,52)"/><text text-anchor="left" x="445.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::DateCache::BreakDownTime (2 samples, 0.04%)</title><rect x="442" y="405" width="1" height="15" fill="rgb(219,47,20)"/><text text-anchor="left" x="445.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (86 samples, 1.63%)</title><rect x="424" y="421" width="19" height="15" fill="rgb(232,47,43)"/><text text-anchor="left" x="427.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SNPrintF(v8::internal::Vector (1 samples, 0.02%)</title><rect x="443" y="405" width="0" height="15" fill="rgb(228,63,47)"/><text text-anchor="left" x="446.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6886 (88 samples, 1.67%)</title><rect x="424" y="437" width="19" height="15" fill="rgb(220,201,5)"/><text text-anchor="left" x="427.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_DatePrototypeToUTCString (2 samples, 0.04%)</title><rect x="443" y="421" width="0" height="15" fill="rgb(210,157,31)"/><text text-anchor="left" x="446.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d68a2 (1 samples, 0.02%)</title><rect x="443" y="437" width="1" height="15" fill="rgb(240,4,6)"/><text text-anchor="left" x="446.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d68b0 (1 samples, 0.02%)</title><rect x="444" y="437" width="0" height="15" fill="rgb(240,131,5)"/><text text-anchor="left" x="447.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d68da (1 samples, 0.02%)</title><rect x="444" y="437" width="0" height="15" fill="rgb(242,186,37)"/><text text-anchor="left" x="447.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringConstructor (1 samples, 0.02%)</title><rect x="444" y="421" width="0" height="15" fill="rgb(237,85,38)"/><text text-anchor="left" x="447.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d68e8 (1 samples, 0.02%)</title><rect x="444" y="437" width="0" height="15" fill="rgb(206,17,43)"/><text text-anchor="left" x="447.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`int v8::internal::FastAsciiConvert&lt;true&gt; (1 samples, 0.02%)</title><rect x="444" y="389" width="1" height="15" fill="rgb(223,19,3)"/><text text-anchor="left" x="447.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`int v8::internal::FastAsciiConvert&lt;true&gt; (2 samples, 0.04%)</title><rect x="445" y="373" width="0" height="15" fill="rgb(237,29,37)"/><text text-anchor="left" x="448.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (3 samples, 0.06%)</title><rect x="445" y="373" width="1" height="15" fill="rgb(213,113,19)"/><text text-anchor="left" x="448.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="446" y="357" width="0" height="15" fill="rgb(224,65,51)"/><text text-anchor="left" x="449.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="446" y="341" width="0" height="15" fill="rgb(212,226,25)"/><text text-anchor="left" x="449.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::Flatten(v8::internal::Isolate*, v8::internal::Handle (1 samples, 0.02%)</title><rect x="446" y="373" width="0" height="15" fill="rgb(237,126,54)"/><text text-anchor="left" x="449.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object v8::internal::(anonymous namespace)::ConvertCase&lt;unibrow::ToLowercase&gt;(v8::internal::Handle&lt;v8::internal::String&gt;, v8::internal::Isolate*, unibrow::Mapping (9 samples, 0.17%)</title><rect x="445" y="389" width="2" height="15" fill="rgb(221,74,25)"/><text text-anchor="left" x="448.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::GetFlatContent(v8::internal::PerThreadAssertScopeDebugOnly&lt; (2 samples, 0.04%)</title><rect x="446" y="373" width="1" height="15" fill="rgb(244,8,38)"/><text text-anchor="left" x="449.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (11 samples, 0.21%)</title><rect x="444" y="421" width="3" height="15" fill="rgb(208,223,7)"/><text text-anchor="left" x="447.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_StringPrototypeToLowerCase (11 samples, 0.21%)</title><rect x="444" y="405" width="3" height="15" fill="rgb(239,137,49)"/><text text-anchor="left" x="447.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::GetFlatContent(v8::internal::PerThreadAssertScopeDebugOnly&lt; (1 samples, 0.02%)</title><rect x="447" y="389" width="0" height="15" fill="rgb(227,202,46)"/><text text-anchor="left" x="450.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6919 (12 samples, 0.23%)</title><rect x="444" y="437" width="3" height="15" fill="rgb(211,156,20)"/><text text-anchor="left" x="447.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_StringPrototypeToLowerCase (1 samples, 0.02%)</title><rect x="447" y="421" width="0" height="15" fill="rgb(228,129,42)"/><text text-anchor="left" x="450.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6968 (1 samples, 0.02%)</title><rect x="447" y="437" width="0" height="15" fill="rgb(214,182,31)"/><text text-anchor="left" x="450.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringPrototypeTrim (1 samples, 0.02%)</title><rect x="447" y="421" width="0" height="15" fill="rgb(232,104,1)"/><text text-anchor="left" x="450.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6a02 (3 samples, 0.06%)</title><rect x="447" y="437" width="1" height="15" fill="rgb(245,121,17)"/><text text-anchor="left" x="450.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RegExpPrototypeTestFast (3 samples, 0.06%)</title><rect x="447" y="421" width="1" height="15" fill="rgb(216,198,50)"/><text text-anchor="left" x="450.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2b73 (1 samples, 0.02%)</title><rect x="448" y="405" width="0" height="15" fill="rgb(224,152,36)"/><text text-anchor="left" x="451.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2ea7 (2 samples, 0.04%)</title><rect x="449" y="405" width="1" height="15" fill="rgb(248,40,48)"/><text text-anchor="left" x="452.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2ebd (1 samples, 0.02%)</title><rect x="450" y="405" width="0" height="15" fill="rgb(230,130,41)"/><text text-anchor="left" x="453.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2f18 (1 samples, 0.02%)</title><rect x="450" y="405" width="0" height="15" fill="rgb(241,135,17)"/><text text-anchor="left" x="453.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2f33 (1 samples, 0.02%)</title><rect x="450" y="405" width="0" height="15" fill="rgb(234,69,14)"/><text text-anchor="left" x="453.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c305b (2 samples, 0.04%)</title><rect x="450" y="405" width="1" height="15" fill="rgb(224,108,27)"/><text text-anchor="left" x="453.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6a7c (14 samples, 0.27%)</title><rect x="448" y="437" width="3" height="15" fill="rgb(219,142,49)"/><text text-anchor="left" x="451.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RegExpPrototypeTestFast (14 samples, 0.27%)</title><rect x="448" y="421" width="3" height="15" fill="rgb(214,10,1)"/><text text-anchor="left" x="451.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3065 (1 samples, 0.02%)</title><rect x="451" y="405" width="0" height="15" fill="rgb(229,191,25)"/><text text-anchor="left" x="454.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6ac2 (1 samples, 0.02%)</title><rect x="451" y="437" width="0" height="15" fill="rgb(224,75,48)"/><text text-anchor="left" x="454.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapPrototypeSet (13 samples, 0.25%)</title><rect x="451" y="421" width="3" height="15" fill="rgb(205,26,42)"/><text text-anchor="left" x="454.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OrderedHashMap::GetHash (7 samples, 0.13%)</title><rect x="453" y="405" width="1" height="15" fill="rgb(216,204,24)"/><text text-anchor="left" x="456.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object::GetSimpleHash (7 samples, 0.13%)</title><rect x="453" y="389" width="1" height="15" fill="rgb(205,208,6)"/><text text-anchor="left" x="456.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::ComputeAndSetHash (7 samples, 0.13%)</title><rect x="453" y="373" width="1" height="15" fill="rgb(248,206,47)"/><text text-anchor="left" x="456.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`unsigned int v8::internal::StringHasher::HashSequentialString&lt;unsigned char&gt; (5 samples, 0.09%)</title><rect x="453" y="357" width="1" height="15" fill="rgb(241,62,38)"/><text text-anchor="left" x="456.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6ad2 (14 samples, 0.27%)</title><rect x="451" y="437" width="3" height="15" fill="rgb(232,139,41)"/><text text-anchor="left" x="454.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringEqual (1 samples, 0.02%)</title><rect x="454" y="421" width="0" height="15" fill="rgb(227,27,32)"/><text text-anchor="left" x="457.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6af4 (1 samples, 0.02%)</title><rect x="454" y="437" width="1" height="15" fill="rgb(222,201,5)"/><text text-anchor="left" x="457.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d6c04 (1 samples, 0.02%)</title><rect x="455" y="437" width="0" height="15" fill="rgb(205,154,37)"/><text text-anchor="left" x="458.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3ce8 (1 samples, 0.02%)</title><rect x="455" y="421" width="0" height="15" fill="rgb(216,50,17)"/><text text-anchor="left" x="458.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca889 (1 samples, 0.02%)</title><rect x="455" y="421" width="0" height="15" fill="rgb(214,4,37)"/><text text-anchor="left" x="458.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca8b1 (1 samples, 0.02%)</title><rect x="455" y="421" width="1" height="15" fill="rgb(218,135,6)"/><text text-anchor="left" x="458.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca8b9 (2 samples, 0.04%)</title><rect x="456" y="421" width="0" height="15" fill="rgb(214,180,20)"/><text text-anchor="left" x="459.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca8cb (2 samples, 0.04%)</title><rect x="456" y="421" width="0" height="15" fill="rgb(243,201,0)"/><text text-anchor="left" x="459.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3ca8f3 (2 samples, 0.04%)</title><rect x="456" y="421" width="1" height="15" fill="rgb(212,224,34)"/><text text-anchor="left" x="459.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3caa34 (2 samples, 0.04%)</title><rect x="457" y="421" width="0" height="15" fill="rgb(233,112,47)"/><text text-anchor="left" x="460.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cab14 (1 samples, 0.02%)</title><rect x="457" y="421" width="1" height="15" fill="rgb(214,11,15)"/><text text-anchor="left" x="460.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cab5c (1 samples, 0.02%)</title><rect x="458" y="421" width="0" height="15" fill="rgb(248,225,41)"/><text text-anchor="left" x="461.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringAdd_CheckNone (1 samples, 0.02%)</title><rect x="458" y="405" width="0" height="15" fill="rgb(243,5,33)"/><text text-anchor="left" x="461.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="458" y="389" width="0" height="15" fill="rgb(249,169,40)"/><text text-anchor="left" x="461.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="458" y="373" width="0" height="15" fill="rgb(223,33,41)"/><text text-anchor="left" x="461.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="458" y="357" width="0" height="15" fill="rgb(214,55,14)"/><text text-anchor="left" x="461.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="458" y="341" width="0" height="15" fill="rgb(251,139,7)"/><text text-anchor="left" x="461.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="458" y="325" width="0" height="15" fill="rgb(225,86,16)"/><text text-anchor="left" x="461.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="458" y="309" width="0" height="15" fill="rgb(240,209,9)"/><text text-anchor="left" x="461.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="458" y="293" width="0" height="15" fill="rgb(247,141,33)"/><text text-anchor="left" x="461.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="458" y="277" width="0" height="15" fill="rgb(244,178,22)"/><text text-anchor="left" x="461.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="458" y="261" width="0" height="15" fill="rgb(226,4,5)"/><text text-anchor="left" x="461.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="458" y="245" width="0" height="15" fill="rgb(218,105,6)"/><text text-anchor="left" x="461.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="458" y="229" width="0" height="15" fill="rgb(218,150,14)"/><text text-anchor="left" x="461.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="458" y="213" width="0" height="15" fill="rgb(241,7,0)"/><text text-anchor="left" x="461.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="458" y="197" width="0" height="15" fill="rgb(230,1,35)"/><text text-anchor="left" x="461.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="458" y="181" width="0" height="15" fill="rgb(241,200,14)"/><text text-anchor="left" x="461.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="458" y="165" width="0" height="15" fill="rgb(239,183,5)"/><text text-anchor="left" x="461.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cab72 (1 samples, 0.02%)</title><rect x="458" y="421" width="0" height="15" fill="rgb(211,183,38)"/><text text-anchor="left" x="461.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringAdd_CheckNone (1 samples, 0.02%)</title><rect x="458" y="405" width="0" height="15" fill="rgb(244,90,5)"/><text text-anchor="left" x="461.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="458" y="389" width="0" height="15" fill="rgb(226,46,4)"/><text text-anchor="left" x="461.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="458" y="373" width="0" height="15" fill="rgb(248,205,35)"/><text text-anchor="left" x="461.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="458" y="357" width="0" height="15" fill="rgb(252,156,36)"/><text text-anchor="left" x="461.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="458" y="341" width="0" height="15" fill="rgb(220,105,24)"/><text text-anchor="left" x="461.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="458" y="325" width="0" height="15" fill="rgb(254,163,24)"/><text text-anchor="left" x="461.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="458" y="309" width="0" height="15" fill="rgb(223,131,53)"/><text text-anchor="left" x="461.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="458" y="293" width="0" height="15" fill="rgb(254,174,35)"/><text text-anchor="left" x="461.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="458" y="277" width="0" height="15" fill="rgb(246,183,43)"/><text text-anchor="left" x="461.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="458" y="261" width="0" height="15" fill="rgb(218,32,19)"/><text text-anchor="left" x="461.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="458" y="245" width="0" height="15" fill="rgb(251,10,27)"/><text text-anchor="left" x="461.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="458" y="229" width="0" height="15" fill="rgb(240,224,51)"/><text text-anchor="left" x="461.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="458" y="213" width="0" height="15" fill="rgb(216,87,15)"/><text text-anchor="left" x="461.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="458" y="197" width="0" height="15" fill="rgb(234,183,41)"/><text text-anchor="left" x="461.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cabea (1 samples, 0.02%)</title><rect x="458" y="421" width="0" height="15" fill="rgb(208,125,10)"/><text text-anchor="left" x="461.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cabed (2 samples, 0.04%)</title><rect x="458" y="421" width="1" height="15" fill="rgb(216,109,14)"/><text text-anchor="left" x="461.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringAdd_CheckNone (2 samples, 0.04%)</title><rect x="458" y="405" width="1" height="15" fill="rgb(232,175,25)"/><text text-anchor="left" x="461.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (2 samples, 0.04%)</title><rect x="458" y="389" width="1" height="15" fill="rgb(219,93,53)"/><text text-anchor="left" x="461.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (2 samples, 0.04%)</title><rect x="458" y="373" width="1" height="15" fill="rgb(253,207,3)"/><text text-anchor="left" x="461.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (2 samples, 0.04%)</title><rect x="458" y="357" width="1" height="15" fill="rgb(218,79,37)"/><text text-anchor="left" x="461.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (2 samples, 0.04%)</title><rect x="458" y="341" width="1" height="15" fill="rgb(254,126,8)"/><text text-anchor="left" x="461.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (2 samples, 0.04%)</title><rect x="458" y="325" width="1" height="15" fill="rgb(225,38,10)"/><text text-anchor="left" x="461.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (2 samples, 0.04%)</title><rect x="458" y="309" width="1" height="15" fill="rgb(226,68,40)"/><text text-anchor="left" x="461.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (2 samples, 0.04%)</title><rect x="458" y="293" width="1" height="15" fill="rgb(206,11,54)"/><text text-anchor="left" x="461.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (2 samples, 0.04%)</title><rect x="458" y="277" width="1" height="15" fill="rgb(214,127,31)"/><text text-anchor="left" x="461.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (2 samples, 0.04%)</title><rect x="458" y="261" width="1" height="15" fill="rgb(216,153,51)"/><text text-anchor="left" x="461.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (2 samples, 0.04%)</title><rect x="458" y="245" width="1" height="15" fill="rgb(236,111,25)"/><text text-anchor="left" x="461.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (2 samples, 0.04%)</title><rect x="458" y="229" width="1" height="15" fill="rgb(238,142,49)"/><text text-anchor="left" x="461.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="458" y="213" width="1" height="15" fill="rgb(232,65,15)"/><text text-anchor="left" x="461.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="458" y="197" width="1" height="15" fill="rgb(223,54,1)"/><text text-anchor="left" x="461.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="458" y="181" width="1" height="15" fill="rgb(251,189,8)"/><text text-anchor="left" x="461.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e31a1 (1 samples, 0.02%)</title><rect x="459" y="405" width="0" height="15" fill="rgb(211,3,54)"/><text text-anchor="left" x="462.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e326f (1 samples, 0.02%)</title><rect x="459" y="405" width="0" height="15" fill="rgb(209,146,10)"/><text text-anchor="left" x="462.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringConstructor (1 samples, 0.02%)</title><rect x="459" y="389" width="0" height="15" fill="rgb(234,171,53)"/><text text-anchor="left" x="462.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e32a7 (1 samples, 0.02%)</title><rect x="459" y="405" width="1" height="15" fill="rgb(208,142,47)"/><text text-anchor="left" x="462.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`int v8::internal::FastAsciiConvert&lt;true&gt; (2 samples, 0.04%)</title><rect x="460" y="341" width="0" height="15" fill="rgb(245,181,28)"/><text text-anchor="left" x="463.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (2 samples, 0.04%)</title><rect x="460" y="341" width="1" height="15" fill="rgb(213,133,23)"/><text text-anchor="left" x="463.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="461" y="325" width="0" height="15" fill="rgb(208,222,25)"/><text text-anchor="left" x="464.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="461" y="309" width="0" height="15" fill="rgb(245,215,12)"/><text text-anchor="left" x="464.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e32b4 (7 samples, 0.13%)</title><rect x="460" y="405" width="1" height="15" fill="rgb(214,70,5)"/><text text-anchor="left" x="463.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (6 samples, 0.11%)</title><rect x="460" y="389" width="1" height="15" fill="rgb(241,155,33)"/><text text-anchor="left" x="463.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_StringPrototypeToLowerCase (6 samples, 0.11%)</title><rect x="460" y="373" width="1" height="15" fill="rgb(221,225,1)"/><text text-anchor="left" x="463.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Object v8::internal::(anonymous namespace)::ConvertCase&lt;unibrow::ToLowercase&gt;(v8::internal::Handle&lt;v8::internal::String&gt;, v8::internal::Isolate*, unibrow::Mapping (5 samples, 0.09%)</title><rect x="460" y="357" width="1" height="15" fill="rgb(232,63,14)"/><text text-anchor="left" x="463.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::GetFlatContent(v8::internal::PerThreadAssertScopeDebugOnly&lt; (1 samples, 0.02%)</title><rect x="461" y="341" width="0" height="15" fill="rgb(253,216,41)"/><text text-anchor="left" x="464.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e32e0 (1 samples, 0.02%)</title><rect x="461" y="405" width="0" height="15" fill="rgb(214,221,41)"/><text text-anchor="left" x="464.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringConstructor (1 samples, 0.02%)</title><rect x="461" y="389" width="0" height="15" fill="rgb(224,89,27)"/><text text-anchor="left" x="464.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2b67 (1 samples, 0.02%)</title><rect x="461" y="373" width="1" height="15" fill="rgb(238,159,28)"/><text text-anchor="left" x="464.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2b73 (3 samples, 0.06%)</title><rect x="462" y="373" width="0" height="15" fill="rgb(207,212,2)"/><text text-anchor="left" x="465.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e3398 (5 samples, 0.09%)</title><rect x="461" y="405" width="1" height="15" fill="rgb(241,183,29)"/><text text-anchor="left" x="464.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_RegExpPrototypeTestFast (5 samples, 0.09%)</title><rect x="461" y="389" width="1" height="15" fill="rgb(207,166,39)"/><text text-anchor="left" x="464.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c2c93 (1 samples, 0.02%)</title><rect x="462" y="373" width="0" height="15" fill="rgb(218,214,33)"/><text text-anchor="left" x="465.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FindOrderedHashMapEntry (2 samples, 0.04%)</title><rect x="462" y="389" width="1" height="15" fill="rgb(212,134,34)"/><text text-anchor="left" x="465.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3e33e2 (4 samples, 0.08%)</title><rect x="462" y="405" width="1" height="15" fill="rgb(221,206,4)"/><text text-anchor="left" x="465.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringEqual (2 samples, 0.04%)</title><rect x="463" y="389" width="0" height="15" fill="rgb(252,21,45)"/><text text-anchor="left" x="466.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d615f (1 samples, 0.02%)</title><rect x="463" y="389" width="1" height="15" fill="rgb(211,23,3)"/><text text-anchor="left" x="466.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cac2e (23 samples, 0.44%)</title><rect x="459" y="421" width="5" height="15" fill="rgb(230,9,33)"/><text text-anchor="left" x="462.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_InterpreterEntryTrampoline (2 samples, 0.04%)</title><rect x="463" y="405" width="1" height="15" fill="rgb(249,203,29)"/><text text-anchor="left" x="466.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="464" y="389" width="0" height="15" fill="rgb(212,1,23)"/><text text-anchor="left" x="467.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_CompileOptimized_Concurrent (1 samples, 0.02%)</title><rect x="464" y="373" width="0" height="15" fill="rgb(242,28,1)"/><text text-anchor="left" x="467.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::CompileOptimized(v8::internal::Handle (1 samples, 0.02%)</title><rect x="464" y="357" width="0" height="15" fill="rgb(218,162,27)"/><text text-anchor="left" x="467.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::GetOptimizedCode(v8::internal::Handle (1 samples, 0.02%)</title><rect x="464" y="341" width="0" height="15" fill="rgb(236,182,8)"/><text text-anchor="left" x="467.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizedCompilationJob::PrepareJob (1 samples, 0.02%)</title><rect x="464" y="325" width="0" height="15" fill="rgb(241,63,50)"/><text text-anchor="left" x="467.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::PrepareJobImpl (1 samples, 0.02%)</title><rect x="464" y="309" width="0" height="15" fill="rgb(235,16,33)"/><text text-anchor="left" x="467.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::CreateGraph (1 samples, 0.02%)</title><rect x="464" y="293" width="0" height="15" fill="rgb(243,226,52)"/><text text-anchor="left" x="467.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::compiler::PipelineImpl::Run&lt;v8::internal::compiler::GraphBuilderPhase&gt; (1 samples, 0.02%)</title><rect x="464" y="277" width="0" height="15" fill="rgb(252,174,31)"/><text text-anchor="left" x="467.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::GraphBuilderPhase::Run (1 samples, 0.02%)</title><rect x="464" y="261" width="0" height="15" fill="rgb(220,154,25)"/><text text-anchor="left" x="467.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BuildGraphFromBytecode(v8::internal::compiler::JSHeapBroker*, v8::internal::Zone*, v8::internal::compiler::SharedFunctionInfoRef const&amp;, v8::internal::compiler::FeedbackVectorRef const&amp;, v8::internal::BailoutId, v8::internal::compiler::JSGraph*, v8::internal::compiler::CallFrequency const&amp;, v8::internal::compiler::SourcePositionTable*, int, v8::base::Flags (1 samples, 0.02%)</title><rect x="464" y="245" width="0" height="15" fill="rgb(205,115,3)"/><text text-anchor="left" x="467.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::CreateGraph (1 samples, 0.02%)</title><rect x="464" y="229" width="0" height="15" fill="rgb(232,92,13)"/><text text-anchor="left" x="467.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::VisitBytecodes (1 samples, 0.02%)</title><rect x="464" y="213" width="0" height="15" fill="rgb(251,138,46)"/><text text-anchor="left" x="467.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::BytecodeGraphBuilder::VisitLdaNamedProperty (1 samples, 0.02%)</title><rect x="464" y="197" width="0" height="15" fill="rgb(211,196,15)"/><text text-anchor="left" x="467.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::CanonicalHandleScope::Lookup (1 samples, 0.02%)</title><rect x="464" y="181" width="0" height="15" fill="rgb(214,206,23)"/><text text-anchor="left" x="467.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::RootIndexMap::Lookup (1 samples, 0.02%)</title><rect x="464" y="165" width="0" height="15" fill="rgb(209,184,24)"/><text text-anchor="left" x="467.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cac3c (1 samples, 0.02%)</title><rect x="464" y="421" width="0" height="15" fill="rgb(213,5,9)"/><text text-anchor="left" x="467.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cac40 (1 samples, 0.02%)</title><rect x="464" y="421" width="0" height="15" fill="rgb(209,79,10)"/><text text-anchor="left" x="467.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cac6c (1 samples, 0.02%)</title><rect x="464" y="421" width="0" height="15" fill="rgb(214,114,48)"/><text text-anchor="left" x="467.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cac78 (1 samples, 0.02%)</title><rect x="464" y="421" width="1" height="15" fill="rgb(225,52,15)"/><text text-anchor="left" x="467.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d127e (1 samples, 0.02%)</title><rect x="465" y="405" width="0" height="15" fill="rgb(213,106,42)"/><text text-anchor="left" x="468.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="465" y="389" width="0" height="15" fill="rgb(251,6,44)"/><text text-anchor="left" x="468.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_StackGuardWithGap (1 samples, 0.02%)</title><rect x="465" y="373" width="0" height="15" fill="rgb(254,160,48)"/><text text-anchor="left" x="468.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::StackGuard::HandleInterrupts (1 samples, 0.02%)</title><rect x="465" y="357" width="0" height="15" fill="rgb(228,54,52)"/><text text-anchor="left" x="468.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::OptimizingCompileDispatcher::InstallOptimizedFunctions (1 samples, 0.02%)</title><rect x="465" y="341" width="0" height="15" fill="rgb(233,67,52)"/><text text-anchor="left" x="468.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Compiler::FinalizeOptimizedCompilationJob (1 samples, 0.02%)</title><rect x="465" y="325" width="0" height="15" fill="rgb(232,102,7)"/><text text-anchor="left" x="468.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineCompilationJob::FinalizeJobImpl (1 samples, 0.02%)</title><rect x="465" y="309" width="0" height="15" fill="rgb(254,181,11)"/><text text-anchor="left" x="468.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::PipelineImpl::FinalizeCode (1 samples, 0.02%)</title><rect x="465" y="293" width="0" height="15" fill="rgb(234,178,11)"/><text text-anchor="left" x="468.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::CodeGenerator::FinalizeCode (1 samples, 0.02%)</title><rect x="465" y="277" width="0" height="15" fill="rgb(220,188,22)"/><text text-anchor="left" x="468.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::compiler::CodeGenerator::GenerateDeoptimizationData (1 samples, 0.02%)</title><rect x="465" y="261" width="0" height="15" fill="rgb(228,129,2)"/><text text-anchor="left" x="468.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cac85 (7 samples, 0.13%)</title><rect x="465" y="421" width="1" height="15" fill="rgb(234,59,31)"/><text text-anchor="left" x="468.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateGeneratorObject (6 samples, 0.11%)</title><rect x="465" y="405" width="1" height="15" fill="rgb(228,198,27)"/><text text-anchor="left" x="468.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cace0 (1 samples, 0.02%)</title><rect x="466" y="421" width="0" height="15" fill="rgb(207,69,52)"/><text text-anchor="left" x="469.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cad50 (1 samples, 0.02%)</title><rect x="466" y="421" width="1" height="15" fill="rgb(253,170,49)"/><text text-anchor="left" x="469.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cad60 (1 samples, 0.02%)</title><rect x="467" y="421" width="0" height="15" fill="rgb(253,87,1)"/><text text-anchor="left" x="470.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringAdd_CheckNone (1 samples, 0.02%)</title><rect x="467" y="405" width="0" height="15" fill="rgb(233,71,54)"/><text text-anchor="left" x="470.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="467" y="389" width="0" height="15" fill="rgb(254,5,2)"/><text text-anchor="left" x="470.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="467" y="373" width="0" height="15" fill="rgb(212,20,44)"/><text text-anchor="left" x="470.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="467" y="357" width="0" height="15" fill="rgb(241,40,19)"/><text text-anchor="left" x="470.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="467" y="341" width="0" height="15" fill="rgb(247,203,31)"/><text text-anchor="left" x="470.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="467" y="325" width="0" height="15" fill="rgb(216,138,33)"/><text text-anchor="left" x="470.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="467" y="309" width="0" height="15" fill="rgb(215,160,48)"/><text text-anchor="left" x="470.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="467" y="293" width="0" height="15" fill="rgb(227,146,25)"/><text text-anchor="left" x="470.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="467" y="277" width="0" height="15" fill="rgb(225,210,40)"/><text text-anchor="left" x="470.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="467" y="261" width="0" height="15" fill="rgb(228,83,34)"/><text text-anchor="left" x="470.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="467" y="245" width="0" height="15" fill="rgb(251,173,27)"/><text text-anchor="left" x="470.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="467" y="229" width="0" height="15" fill="rgb(240,96,7)"/><text text-anchor="left" x="470.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="467" y="213" width="0" height="15" fill="rgb(244,71,17)"/><text text-anchor="left" x="470.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="467" y="197" width="0" height="15" fill="rgb(228,50,52)"/><text text-anchor="left" x="470.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="467" y="181" width="0" height="15" fill="rgb(233,50,16)"/><text text-anchor="left" x="470.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="467" y="165" width="0" height="15" fill="rgb(235,109,44)"/><text text-anchor="left" x="470.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="467" y="149" width="0" height="15" fill="rgb(234,149,14)"/><text text-anchor="left" x="470.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="467" y="133" width="0" height="15" fill="rgb(248,217,48)"/><text text-anchor="left" x="470.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cad68 (1 samples, 0.02%)</title><rect x="467" y="421" width="0" height="15" fill="rgb(238,42,31)"/><text text-anchor="left" x="470.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0b00 (1 samples, 0.02%)</title><rect x="467" y="405" width="0" height="15" fill="rgb(213,76,20)"/><text text-anchor="left" x="470.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateIterResultObject (3 samples, 0.06%)</title><rect x="467" y="405" width="1" height="15" fill="rgb(239,83,23)"/><text text-anchor="left" x="470.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0c15 (2 samples, 0.04%)</title><rect x="469" y="389" width="0" height="15" fill="rgb(205,88,19)"/><text text-anchor="left" x="472.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0c2c (1 samples, 0.02%)</title><rect x="469" y="389" width="0" height="15" fill="rgb(233,79,20)"/><text text-anchor="left" x="472.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferCollector::FreeAllocations (1 samples, 0.02%)</title><rect x="471" y="213" width="0" height="15" fill="rgb(250,81,49)"/><text text-anchor="left" x="474.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::MakeCancelableTask(v8::internal::Isolate*, std::__1::function&lt;void (1 samples, 0.02%)</title><rect x="471" y="197" width="0" height="15" fill="rgb(240,172,8)"/><text text-anchor="left" x="474.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="471" y="181" width="0" height="15" fill="rgb(229,189,11)"/><text text-anchor="left" x="474.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="471" y="165" width="0" height="15" fill="rgb(221,180,49)"/><text text-anchor="left" x="474.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="471" y="149" width="0" height="15" fill="rgb(234,166,11)"/><text text-anchor="left" x="474.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="471" y="133" width="0" height="15" fill="rgb(234,36,7)"/><text text-anchor="left" x="474.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="471" y="117" width="0" height="15" fill="rgb(217,62,47)"/><text text-anchor="left" x="474.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (1 samples, 0.02%)</title><rect x="471" y="101" width="0" height="15" fill="rgb(220,50,14)"/><text text-anchor="left" x="474.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="471" y="213" width="0" height="15" fill="rgb(215,68,4)"/><text text-anchor="left" x="474.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="471" y="197" width="0" height="15" fill="rgb(232,196,19)"/><text text-anchor="left" x="474.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="471" y="181" width="0" height="15" fill="rgb(214,93,40)"/><text text-anchor="left" x="474.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="471" y="165" width="0" height="15" fill="rgb(242,213,50)"/><text text-anchor="left" x="474.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="471" y="213" width="1" height="15" fill="rgb(234,39,18)"/><text text-anchor="left" x="474.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0de6 (12 samples, 0.23%)</title><rect x="469" y="389" width="3" height="15" fill="rgb(245,59,12)"/><text text-anchor="left" x="472.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_MapIteratorPrototypeNext (12 samples, 0.23%)</title><rect x="469" y="373" width="3" height="15" fill="rgb(207,183,48)"/><text text-anchor="left" x="472.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (4 samples, 0.08%)</title><rect x="471" y="357" width="1" height="15" fill="rgb(210,57,21)"/><text text-anchor="left" x="474.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (4 samples, 0.08%)</title><rect x="471" y="341" width="1" height="15" fill="rgb(217,9,6)"/><text text-anchor="left" x="474.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (4 samples, 0.08%)</title><rect x="471" y="325" width="1" height="15" fill="rgb(221,170,28)"/><text text-anchor="left" x="474.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (4 samples, 0.08%)</title><rect x="471" y="309" width="1" height="15" fill="rgb(240,163,35)"/><text text-anchor="left" x="474.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (4 samples, 0.08%)</title><rect x="471" y="293" width="1" height="15" fill="rgb(249,98,6)"/><text text-anchor="left" x="474.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (4 samples, 0.08%)</title><rect x="471" y="277" width="1" height="15" fill="rgb(232,193,43)"/><text text-anchor="left" x="474.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (4 samples, 0.08%)</title><rect x="471" y="261" width="1" height="15" fill="rgb(254,179,17)"/><text text-anchor="left" x="474.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (4 samples, 0.08%)</title><rect x="471" y="245" width="1" height="15" fill="rgb(231,219,28)"/><text text-anchor="left" x="474.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (4 samples, 0.08%)</title><rect x="471" y="229" width="1" height="15" fill="rgb(226,40,54)"/><text text-anchor="left" x="474.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Scavenger(v8::internal::ScavengerCollector*, v8::internal::Heap*, bool, v8::internal::Worklist&lt;v8::internal::MemoryChunk*, 64&gt;*, v8::internal::Worklist&lt;std::__1::pair&lt;v8::internal::HeapObject, int&gt;, 256&gt;*, v8::internal::Scavenger::PromotionList*, v8::internal::Worklist (1 samples, 0.02%)</title><rect x="472" y="213" width="0" height="15" fill="rgb(254,13,9)"/><text text-anchor="left" x="475.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::AllocationSite, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;v8::internal::AllocationSite, std::__1::__hash_value_type&lt;v8::internal::AllocationSite, unsigned long&gt;, v8::internal::Object::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::AllocationSite, std::__1::__hash_value_type&lt;v8::internal::AllocationSite, unsigned long&gt;, std::__1::equal_to&lt;v8::internal::AllocationSite&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::AllocationSite, unsigned long&gt; &gt; &gt;::__rehash (1 samples, 0.02%)</title><rect x="472" y="197" width="0" height="15" fill="rgb(249,169,18)"/><text text-anchor="left" x="475.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0dea (1 samples, 0.02%)</title><rect x="472" y="389" width="0" height="15" fill="rgb(240,34,11)"/><text text-anchor="left" x="475.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0dfb (1 samples, 0.02%)</title><rect x="472" y="389" width="0" height="15" fill="rgb(205,223,20)"/><text text-anchor="left" x="475.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0eb4 (1 samples, 0.02%)</title><rect x="472" y="389" width="1" height="15" fill="rgb(248,144,9)"/><text text-anchor="left" x="475.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0f44 (1 samples, 0.02%)</title><rect x="473" y="389" width="0" height="15" fill="rgb(242,149,50)"/><text text-anchor="left" x="476.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d0f74 (1 samples, 0.02%)</title><rect x="473" y="389" width="0" height="15" fill="rgb(252,188,44)"/><text text-anchor="left" x="476.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d11d6 (1 samples, 0.02%)</title><rect x="473" y="389" width="0" height="15" fill="rgb(242,136,7)"/><text text-anchor="left" x="476.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="473" y="373" width="0" height="15" fill="rgb(232,11,24)"/><text text-anchor="left" x="476.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="473" y="357" width="0" height="15" fill="rgb(219,113,51)"/><text text-anchor="left" x="476.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="473" y="341" width="0" height="15" fill="rgb(211,188,22)"/><text text-anchor="left" x="476.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="473" y="325" width="0" height="15" fill="rgb(205,176,53)"/><text text-anchor="left" x="476.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="473" y="309" width="0" height="15" fill="rgb(232,91,9)"/><text text-anchor="left" x="476.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="473" y="293" width="0" height="15" fill="rgb(229,185,29)"/><text text-anchor="left" x="476.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="473" y="277" width="0" height="15" fill="rgb(221,174,7)"/><text text-anchor="left" x="476.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="473" y="261" width="0" height="15" fill="rgb(223,144,41)"/><text text-anchor="left" x="476.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="473" y="245" width="0" height="15" fill="rgb(230,79,13)"/><text text-anchor="left" x="476.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="473" y="229" width="0" height="15" fill="rgb(246,131,42)"/><text text-anchor="left" x="476.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="473" y="213" width="0" height="15" fill="rgb(235,138,32)"/><text text-anchor="left" x="476.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="473" y="197" width="0" height="15" fill="rgb(242,130,16)"/><text text-anchor="left" x="476.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="473" y="181" width="0" height="15" fill="rgb(215,22,39)"/><text text-anchor="left" x="476.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::ConditionVariable::WaitFor (1 samples, 0.02%)</title><rect x="473" y="165" width="0" height="15" fill="rgb(250,161,39)"/><text text-anchor="left" x="476.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_cond_wait (1 samples, 0.02%)</title><rect x="473" y="149" width="0" height="15" fill="rgb(250,68,51)"/><text text-anchor="left" x="476.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (1 samples, 0.02%)</title><rect x="473" y="133" width="0" height="15" fill="rgb(251,166,39)"/><text text-anchor="left" x="476.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexwait (1 samples, 0.02%)</title><rect x="473" y="117" width="0" height="15" fill="rgb(233,179,36)"/><text text-anchor="left" x="476.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallFunction_ReceiverIsNotNullOrUndefined (1 samples, 0.02%)</title><rect x="473" y="389" width="0" height="15" fill="rgb(225,228,23)"/><text text-anchor="left" x="476.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GeneratorPrototypeNext (27 samples, 0.51%)</title><rect x="468" y="405" width="6" height="15" fill="rgb(206,93,24)"/><text text-anchor="left" x="471.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsNotNullOrUndefined (3 samples, 0.06%)</title><rect x="473" y="389" width="1" height="15" fill="rgb(211,123,42)"/><text text-anchor="left" x="476.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cad99 (33 samples, 0.63%)</title><rect x="467" y="421" width="8" height="15" fill="rgb(221,42,33)"/><text text-anchor="left" x="470.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ResumeGeneratorTrampoline (2 samples, 0.04%)</title><rect x="474" y="405" width="1" height="15" fill="rgb(253,131,30)"/><text text-anchor="left" x="477.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cadb6 (1 samples, 0.02%)</title><rect x="475" y="421" width="0" height="15" fill="rgb(228,47,38)"/><text text-anchor="left" x="478.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3caf3f (2 samples, 0.04%)</title><rect x="475" y="421" width="0" height="15" fill="rgb(210,152,22)"/><text text-anchor="left" x="478.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ToString (2 samples, 0.04%)</title><rect x="475" y="405" width="0" height="15" fill="rgb(233,111,38)"/><text text-anchor="left" x="478.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="475" y="245" width="0" height="15" fill="rgb(244,165,16)"/><text text-anchor="left" x="478.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="475" y="229" width="0" height="15" fill="rgb(231,198,20)"/><text text-anchor="left" x="478.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="475" y="245" width="1" height="15" fill="rgb(239,69,7)"/><text text-anchor="left" x="478.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="475" y="229" width="1" height="15" fill="rgb(212,197,0)"/><text text-anchor="left" x="478.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="475" y="213" width="1" height="15" fill="rgb(213,10,51)"/><text text-anchor="left" x="478.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="475" y="197" width="1" height="15" fill="rgb(234,199,39)"/><text text-anchor="left" x="478.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="475" y="181" width="1" height="15" fill="rgb(233,95,0)"/><text text-anchor="left" x="478.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="475" y="165" width="1" height="15" fill="rgb(238,37,31)"/><text text-anchor="left" x="478.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="475" y="149" width="1" height="15" fill="rgb(237,174,38)"/><text text-anchor="left" x="478.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3caf71 (3 samples, 0.06%)</title><rect x="475" y="421" width="1" height="15" fill="rgb(220,44,47)"/><text text-anchor="left" x="478.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringAdd_CheckNone (3 samples, 0.06%)</title><rect x="475" y="405" width="1" height="15" fill="rgb(251,172,3)"/><text text-anchor="left" x="478.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (3 samples, 0.06%)</title><rect x="475" y="389" width="1" height="15" fill="rgb(221,145,11)"/><text text-anchor="left" x="478.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (3 samples, 0.06%)</title><rect x="475" y="373" width="1" height="15" fill="rgb(247,223,26)"/><text text-anchor="left" x="478.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (3 samples, 0.06%)</title><rect x="475" y="357" width="1" height="15" fill="rgb(213,159,21)"/><text text-anchor="left" x="478.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="475" y="341" width="1" height="15" fill="rgb(254,26,45)"/><text text-anchor="left" x="478.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="475" y="325" width="1" height="15" fill="rgb(232,76,35)"/><text text-anchor="left" x="478.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (3 samples, 0.06%)</title><rect x="475" y="309" width="1" height="15" fill="rgb(219,140,5)"/><text text-anchor="left" x="478.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (3 samples, 0.06%)</title><rect x="475" y="293" width="1" height="15" fill="rgb(206,219,29)"/><text text-anchor="left" x="478.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (3 samples, 0.06%)</title><rect x="475" y="277" width="1" height="15" fill="rgb(242,21,23)"/><text text-anchor="left" x="478.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (3 samples, 0.06%)</title><rect x="475" y="261" width="1" height="15" fill="rgb(246,60,41)"/><text text-anchor="left" x="478.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::~ItemParallelJob (1 samples, 0.02%)</title><rect x="476" y="245" width="0" height="15" fill="rgb(232,183,11)"/><text text-anchor="left" x="479.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`os_unfair_lock_lock_with_options (1 samples, 0.02%)</title><rect x="476" y="229" width="0" height="15" fill="rgb(253,164,53)"/><text text-anchor="left" x="479.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3caf8d (2 samples, 0.04%)</title><rect x="476" y="421" width="0" height="15" fill="rgb(252,164,53)"/><text text-anchor="left" x="479.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ToString (2 samples, 0.04%)</title><rect x="476" y="405" width="0" height="15" fill="rgb(222,190,52)"/><text text-anchor="left" x="479.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb003 (1 samples, 0.02%)</title><rect x="476" y="421" width="1" height="15" fill="rgb(212,22,37)"/><text text-anchor="left" x="479.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb00a (1 samples, 0.02%)</title><rect x="477" y="421" width="0" height="15" fill="rgb(229,15,10)"/><text text-anchor="left" x="480.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb043 (1 samples, 0.02%)</title><rect x="477" y="421" width="0" height="15" fill="rgb(208,44,42)"/><text text-anchor="left" x="480.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb054 (4 samples, 0.08%)</title><rect x="477" y="421" width="1" height="15" fill="rgb(225,151,22)"/><text text-anchor="left" x="480.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="478" y="389" width="0" height="15" fill="rgb(252,154,4)"/><text text-anchor="left" x="481.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewRawOneByteString (2 samples, 0.04%)</title><rect x="479" y="325" width="0" height="15" fill="rgb(208,40,13)"/><text text-anchor="left" x="482.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="479" y="309" width="0" height="15" fill="rgb(234,125,1)"/><text text-anchor="left" x="482.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="479" y="293" width="0" height="15" fill="rgb(252,91,7)"/><text text-anchor="left" x="482.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (1 samples, 0.02%)</title><rect x="479" y="277" width="0" height="15" fill="rgb(238,39,9)"/><text text-anchor="left" x="482.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::String::SlowFlatten(v8::internal::Isolate*, v8::internal::Handle (23 samples, 0.44%)</title><rect x="478" y="341" width="5" height="15" fill="rgb(211,194,28)"/><text text-anchor="left" x="481.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::String::WriteToFlat&lt;unsigned char&gt; (18 samples, 0.34%)</title><rect x="479" y="325" width="4" height="15" fill="rgb(227,131,35)"/><text text-anchor="left" x="482.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::String::WriteToFlat&lt;unsigned char&gt; (11 samples, 0.21%)</title><rect x="481" y="309" width="2" height="15" fill="rgb(251,81,30)"/><text text-anchor="left" x="484.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3de0 (25 samples, 0.47%)</title><rect x="478" y="405" width="6" height="15" fill="rgb(218,20,4)"/><text text-anchor="left" x="481.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringFromCodePointAt (24 samples, 0.46%)</title><rect x="478" y="389" width="6" height="15" fill="rgb(209,106,18)"/><text text-anchor="left" x="481.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (24 samples, 0.46%)</title><rect x="478" y="373" width="6" height="15" fill="rgb(210,50,28)"/><text text-anchor="left" x="481.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_StringCharCodeAt (24 samples, 0.46%)</title><rect x="478" y="357" width="6" height="15" fill="rgb(254,13,5)"/><text text-anchor="left" x="481.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="483" y="341" width="1" height="15" fill="rgb(227,129,5)"/><text text-anchor="left" x="486.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3e2f (1 samples, 0.02%)</title><rect x="484" y="405" width="0" height="15" fill="rgb(227,70,11)"/><text text-anchor="left" x="487.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3e80 (1 samples, 0.02%)</title><rect x="484" y="405" width="0" height="15" fill="rgb(206,180,15)"/><text text-anchor="left" x="487.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3e90 (2 samples, 0.04%)</title><rect x="484" y="405" width="0" height="15" fill="rgb(218,142,37)"/><text text-anchor="left" x="487.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3e94 (2 samples, 0.04%)</title><rect x="484" y="405" width="1" height="15" fill="rgb(217,220,0)"/><text text-anchor="left" x="487.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3e9c (3 samples, 0.06%)</title><rect x="485" y="405" width="1" height="15" fill="rgb(252,23,42)"/><text text-anchor="left" x="488.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3e9f (1 samples, 0.02%)</title><rect x="486" y="405" width="0" height="15" fill="rgb(221,155,15)"/><text text-anchor="left" x="489.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3ea4 (2 samples, 0.04%)</title><rect x="486" y="405" width="0" height="15" fill="rgb(247,102,47)"/><text text-anchor="left" x="489.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3eb8 (1 samples, 0.02%)</title><rect x="486" y="405" width="0" height="15" fill="rgb(248,145,3)"/><text text-anchor="left" x="489.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3ec2 (1 samples, 0.02%)</title><rect x="486" y="405" width="1" height="15" fill="rgb(239,95,20)"/><text text-anchor="left" x="489.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3ec4 (3 samples, 0.06%)</title><rect x="487" y="405" width="0" height="15" fill="rgb(229,112,41)"/><text text-anchor="left" x="490.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3ed4 (2 samples, 0.04%)</title><rect x="487" y="405" width="1" height="15" fill="rgb(243,11,52)"/><text text-anchor="left" x="490.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3ed7 (5 samples, 0.09%)</title><rect x="488" y="405" width="1" height="15" fill="rgb(239,219,38)"/><text text-anchor="left" x="491.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3edd (2 samples, 0.04%)</title><rect x="489" y="405" width="0" height="15" fill="rgb(238,79,54)"/><text text-anchor="left" x="492.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3edf (3 samples, 0.06%)</title><rect x="489" y="405" width="1" height="15" fill="rgb(247,194,49)"/><text text-anchor="left" x="492.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3eef (4 samples, 0.08%)</title><rect x="490" y="405" width="1" height="15" fill="rgb(214,12,30)"/><text text-anchor="left" x="493.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f0c (10 samples, 0.19%)</title><rect x="491" y="405" width="2" height="15" fill="rgb(210,127,10)"/><text text-anchor="left" x="494.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f12 (2 samples, 0.04%)</title><rect x="493" y="405" width="1" height="15" fill="rgb(211,60,44)"/><text text-anchor="left" x="496.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f16 (1 samples, 0.02%)</title><rect x="494" y="405" width="0" height="15" fill="rgb(208,32,23)"/><text text-anchor="left" x="497.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f1f (1 samples, 0.02%)</title><rect x="494" y="405" width="0" height="15" fill="rgb(215,138,29)"/><text text-anchor="left" x="497.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f21 (1 samples, 0.02%)</title><rect x="494" y="405" width="0" height="15" fill="rgb(245,129,3)"/><text text-anchor="left" x="497.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f2d (1 samples, 0.02%)</title><rect x="494" y="405" width="0" height="15" fill="rgb(237,28,21)"/><text text-anchor="left" x="497.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f30 (1 samples, 0.02%)</title><rect x="494" y="405" width="1" height="15" fill="rgb(234,202,30)"/><text text-anchor="left" x="497.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f38 (3 samples, 0.06%)</title><rect x="495" y="405" width="0" height="15" fill="rgb(244,212,23)"/><text text-anchor="left" x="498.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f3c (6 samples, 0.11%)</title><rect x="495" y="405" width="2" height="15" fill="rgb(229,24,17)"/><text text-anchor="left" x="498.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f40 (1 samples, 0.02%)</title><rect x="497" y="405" width="0" height="15" fill="rgb(226,1,2)"/><text text-anchor="left" x="500.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c3f49 (1 samples, 0.02%)</title><rect x="497" y="405" width="0" height="15" fill="rgb(246,131,21)"/><text text-anchor="left" x="500.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c4092 (1 samples, 0.02%)</title><rect x="497" y="405" width="0" height="15" fill="rgb(208,104,12)"/><text text-anchor="left" x="500.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GrowFastSmiOrObjectElements (1 samples, 0.02%)</title><rect x="497" y="389" width="0" height="15" fill="rgb(235,199,48)"/><text text-anchor="left" x="500.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (1 samples, 0.02%)</title><rect x="497" y="373" width="0" height="15" fill="rgb(240,48,7)"/><text text-anchor="left" x="500.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (1 samples, 0.02%)</title><rect x="497" y="357" width="0" height="15" fill="rgb(207,74,19)"/><text text-anchor="left" x="500.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (1 samples, 0.02%)</title><rect x="497" y="341" width="0" height="15" fill="rgb(232,129,10)"/><text text-anchor="left" x="500.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (1 samples, 0.02%)</title><rect x="497" y="325" width="0" height="15" fill="rgb(245,95,23)"/><text text-anchor="left" x="500.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (1 samples, 0.02%)</title><rect x="497" y="309" width="0" height="15" fill="rgb(207,150,27)"/><text text-anchor="left" x="500.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="497" y="293" width="0" height="15" fill="rgb(226,67,17)"/><text text-anchor="left" x="500.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="497" y="277" width="0" height="15" fill="rgb(222,113,16)"/><text text-anchor="left" x="500.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="497" y="261" width="0" height="15" fill="rgb(244,228,19)"/><text text-anchor="left" x="500.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="497" y="245" width="0" height="15" fill="rgb(222,120,26)"/><text text-anchor="left" x="500.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="497" y="229" width="0" height="15" fill="rgb(225,53,26)"/><text text-anchor="left" x="500.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="497" y="213" width="0" height="15" fill="rgb(224,139,5)"/><text text-anchor="left" x="500.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="497" y="197" width="0" height="15" fill="rgb(216,58,50)"/><text text-anchor="left" x="500.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c40db (5 samples, 0.09%)</title><rect x="497" y="405" width="2" height="15" fill="rgb(222,3,32)"/><text text-anchor="left" x="500.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c40fc (1 samples, 0.02%)</title><rect x="499" y="405" width="0" height="15" fill="rgb(243,213,49)"/><text text-anchor="left" x="502.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="501" y="197" width="0" height="15" fill="rgb(233,229,33)"/><text text-anchor="left" x="504.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="501" y="181" width="0" height="15" fill="rgb(228,215,9)"/><text text-anchor="left" x="504.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="501" y="165" width="0" height="15" fill="rgb(250,86,10)"/><text text-anchor="left" x="504.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="501" y="149" width="0" height="15" fill="rgb(217,83,21)"/><text text-anchor="left" x="504.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="501" y="133" width="0" height="15" fill="rgb(224,138,0)"/><text text-anchor="left" x="504.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="501" y="117" width="0" height="15" fill="rgb(227,142,12)"/><text text-anchor="left" x="504.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_free_definite_size (1 samples, 0.02%)</title><rect x="501" y="197" width="0" height="15" fill="rgb(231,105,51)"/><text text-anchor="left" x="504.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (3 samples, 0.06%)</title><rect x="501" y="197" width="1" height="15" fill="rgb(225,143,23)"/><text text-anchor="left" x="504.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_size (1 samples, 0.02%)</title><rect x="502" y="181" width="0" height="15" fill="rgb(209,73,16)"/><text text-anchor="left" x="505.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (19 samples, 0.36%)</title><rect x="499" y="229" width="4" height="15" fill="rgb(226,141,46)"/><text text-anchor="left" x="502.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (19 samples, 0.36%)</title><rect x="499" y="213" width="4" height="15" fill="rgb(244,143,32)"/><text text-anchor="left" x="502.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (4 samples, 0.08%)</title><rect x="502" y="197" width="1" height="15" fill="rgb(232,151,19)"/><text text-anchor="left" x="505.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="503" y="181" width="0" height="15" fill="rgb(216,100,20)"/><text text-anchor="left" x="506.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ConcurrentMarking::ClearMemoryChunkData (1 samples, 0.02%)</title><rect x="503" y="229" width="0" height="15" fill="rgb(225,228,30)"/><text text-anchor="left" x="506.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Platform::CallBlockingTaskOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="503" y="213" width="0" height="15" fill="rgb(217,25,7)"/><text text-anchor="left" x="506.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultPlatform::CallOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="503" y="197" width="0" height="15" fill="rgb(213,220,46)"/><text text-anchor="left" x="506.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultWorkerThreadsTaskRunner::PostTask(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="503" y="181" width="0" height="15" fill="rgb(216,194,17)"/><text text-anchor="left" x="506.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DelayedTaskQueue::Append(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="503" y="165" width="0" height="15" fill="rgb(212,0,31)"/><text text-anchor="left" x="506.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvsignal (1 samples, 0.02%)</title><rect x="503" y="149" width="0" height="15" fill="rgb(226,36,27)"/><text text-anchor="left" x="506.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::CancelableTaskManager::TryAbort (1 samples, 0.02%)</title><rect x="503" y="213" width="1" height="15" fill="rgb(211,124,39)"/><text text-anchor="left" x="506.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::ConditionVariable::WaitFor (1 samples, 0.02%)</title><rect x="504" y="165" width="0" height="15" fill="rgb(223,100,11)"/><text text-anchor="left" x="507.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (4 samples, 0.08%)</title><rect x="504" y="149" width="1" height="15" fill="rgb(219,104,28)"/><text text-anchor="left" x="507.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Worklist&lt;std::__1::pair&lt;v8::internal::HeapObject, int&gt;, 256&gt;::Pop(int, std::__1::pair (1 samples, 0.02%)</title><rect x="505" y="149" width="0" height="15" fill="rgb(229,107,4)"/><text text-anchor="left" x="508.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::IterateAndScavengePromotedObjectsVisitor&gt; (1 samples, 0.02%)</title><rect x="505" y="149" width="0" height="15" fill="rgb(214,85,17)"/><text text-anchor="left" x="508.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="505" y="133" width="0" height="15" fill="rgb(238,22,5)"/><text text-anchor="left" x="508.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (8 samples, 0.15%)</title><rect x="504" y="165" width="2" height="15" fill="rgb(205,149,46)"/><text text-anchor="left" x="507.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_unlock_slow (1 samples, 0.02%)</title><rect x="505" y="149" width="1" height="15" fill="rgb(230,202,36)"/><text text-anchor="left" x="508.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexdrop (1 samples, 0.02%)</title><rect x="505" y="133" width="1" height="15" fill="rgb(251,50,0)"/><text text-anchor="left" x="508.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (13 samples, 0.25%)</title><rect x="503" y="229" width="3" height="15" fill="rgb(207,151,7)"/><text text-anchor="left" x="506.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (11 samples, 0.21%)</title><rect x="504" y="213" width="2" height="15" fill="rgb(219,222,20)"/><text text-anchor="left" x="507.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (11 samples, 0.21%)</title><rect x="504" y="197" width="2" height="15" fill="rgb(234,106,35)"/><text text-anchor="left" x="507.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (11 samples, 0.21%)</title><rect x="504" y="181" width="2" height="15" fill="rgb(234,129,12)"/><text text-anchor="left" x="507.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::ScavengePage (2 samples, 0.04%)</title><rect x="506" y="165" width="0" height="15" fill="rgb(233,89,5)"/><text text-anchor="left" x="509.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (2 samples, 0.04%)</title><rect x="506" y="149" width="0" height="15" fill="rgb(237,88,32)"/><text text-anchor="left" x="509.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="506" y="133" width="0" height="15" fill="rgb(238,78,13)"/><text text-anchor="left" x="509.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="506" y="117" width="0" height="15" fill="rgb(238,8,35)"/><text text-anchor="left" x="509.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="506" y="101" width="0" height="15" fill="rgb(220,24,28)"/><text text-anchor="left" x="509.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="506" y="85" width="0" height="15" fill="rgb(205,180,33)"/><text text-anchor="left" x="509.00" y="95.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_malloc_should_clear (1 samples, 0.02%)</title><rect x="506" y="69" width="0" height="15" fill="rgb(214,67,10)"/><text text-anchor="left" x="509.00" y="79.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_malloc_from_free_list (1 samples, 0.02%)</title><rect x="506" y="53" width="0" height="15" fill="rgb(216,104,48)"/><text text-anchor="left" x="509.00" y="63.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear (1 samples, 0.02%)</title><rect x="506" y="37" width="0" height="15" fill="rgb(253,82,21)"/><text text-anchor="left" x="509.00" y="47.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::~ItemParallelJob (1 samples, 0.02%)</title><rect x="506" y="229" width="0" height="15" fill="rgb(245,97,0)"/><text text-anchor="left" x="509.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="506" y="213" width="0" height="15" fill="rgb(227,57,11)"/><text text-anchor="left" x="509.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::PromotionList::PromotionList (1 samples, 0.02%)</title><rect x="506" y="229" width="1" height="15" fill="rgb(212,143,42)"/><text text-anchor="left" x="509.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Worklist&lt;v8::internal::Scavenger::PromotionListEntry, 4&gt;::~Worklist (1 samples, 0.02%)</title><rect x="507" y="229" width="0" height="15" fill="rgb(237,65,32)"/><text text-anchor="left" x="510.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="507" y="213" width="0" height="15" fill="rgb(228,134,52)"/><text text-anchor="left" x="510.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (1 samples, 0.02%)</title><rect x="507" y="197" width="0" height="15" fill="rgb(248,101,14)"/><text text-anchor="left" x="510.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c40ff (37 samples, 0.70%)</title><rect x="499" y="405" width="8" height="15" fill="rgb(253,83,50)"/><text text-anchor="left" x="502.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GrowFastSmiOrObjectElements (37 samples, 0.70%)</title><rect x="499" y="389" width="8" height="15" fill="rgb(207,183,28)"/><text text-anchor="left" x="502.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (37 samples, 0.70%)</title><rect x="499" y="373" width="8" height="15" fill="rgb(248,153,51)"/><text text-anchor="left" x="502.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (37 samples, 0.70%)</title><rect x="499" y="357" width="8" height="15" fill="rgb(222,65,4)"/><text text-anchor="left" x="502.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (37 samples, 0.70%)</title><rect x="499" y="341" width="8" height="15" fill="rgb(212,47,6)"/><text text-anchor="left" x="502.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (37 samples, 0.70%)</title><rect x="499" y="325" width="8" height="15" fill="rgb(254,169,4)"/><text text-anchor="left" x="502.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (37 samples, 0.70%)</title><rect x="499" y="309" width="8" height="15" fill="rgb(229,176,20)"/><text text-anchor="left" x="502.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (37 samples, 0.70%)</title><rect x="499" y="293" width="8" height="15" fill="rgb(230,145,54)"/><text text-anchor="left" x="502.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (37 samples, 0.70%)</title><rect x="499" y="277" width="8" height="15" fill="rgb(247,1,4)"/><text text-anchor="left" x="502.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (37 samples, 0.70%)</title><rect x="499" y="261" width="8" height="15" fill="rgb(219,6,33)"/><text text-anchor="left" x="502.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (37 samples, 0.70%)</title><rect x="499" y="245" width="8" height="15" fill="rgb(231,113,47)"/><text text-anchor="left" x="502.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="507" y="229" width="0" height="15" fill="rgb(247,23,22)"/><text text-anchor="left" x="510.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="507" y="213" width="0" height="15" fill="rgb(213,179,27)"/><text text-anchor="left" x="510.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3c4107 (1 samples, 0.02%)</title><rect x="507" y="405" width="0" height="15" fill="rgb(249,125,27)"/><text text-anchor="left" x="510.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GrowFastSmiOrObjectElements (25 samples, 0.47%)</title><rect x="507" y="405" width="6" height="15" fill="rgb(247,120,42)"/><text text-anchor="left" x="510.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringCodePointAt (18 samples, 0.34%)</title><rect x="513" y="405" width="4" height="15" fill="rgb(229,58,50)"/><text text-anchor="left" x="516.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb076 (244 samples, 4.63%)</title><rect x="478" y="421" width="55" height="15" fill="rgb(235,1,11)"/><text text-anchor="left" x="481.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x282..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_StringFromCodePointAt (70 samples, 1.33%)</title><rect x="517" y="405" width="16" height="15" fill="rgb(251,174,9)"/><text text-anchor="left" x="520.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb07b (1 samples, 0.02%)</title><rect x="533" y="421" width="0" height="15" fill="rgb(214,50,36)"/><text text-anchor="left" x="536.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_FastNewObject (4 samples, 0.08%)</title><rect x="533" y="405" width="1" height="15" fill="rgb(251,124,50)"/><text text-anchor="left" x="536.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (2 samples, 0.04%)</title><rect x="538" y="197" width="0" height="15" fill="rgb(215,131,40)"/><text text-anchor="left" x="541.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (2 samples, 0.04%)</title><rect x="538" y="181" width="0" height="15" fill="rgb(229,227,23)"/><text text-anchor="left" x="541.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="538" y="165" width="0" height="15" fill="rgb(223,41,37)"/><text text-anchor="left" x="541.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="538" y="149" width="0" height="15" fill="rgb(245,157,12)"/><text text-anchor="left" x="541.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="538" y="133" width="0" height="15" fill="rgb(236,78,42)"/><text text-anchor="left" x="541.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="538" y="117" width="0" height="15" fill="rgb(225,90,16)"/><text text-anchor="left" x="541.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::CancelableTaskManager::TryAbort (1 samples, 0.02%)</title><rect x="538" y="181" width="0" height="15" fill="rgb(253,144,1)"/><text text-anchor="left" x="541.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (1 samples, 0.02%)</title><rect x="538" y="165" width="0" height="15" fill="rgb(242,25,38)"/><text text-anchor="left" x="541.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_mutexwait (1 samples, 0.02%)</title><rect x="538" y="149" width="0" height="15" fill="rgb(232,88,49)"/><text text-anchor="left" x="541.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (5 samples, 0.09%)</title><rect x="538" y="341" width="1" height="15" fill="rgb(239,14,0)"/><text text-anchor="left" x="541.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (5 samples, 0.09%)</title><rect x="538" y="325" width="1" height="15" fill="rgb(243,44,35)"/><text text-anchor="left" x="541.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (5 samples, 0.09%)</title><rect x="538" y="309" width="1" height="15" fill="rgb(215,160,15)"/><text text-anchor="left" x="541.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (5 samples, 0.09%)</title><rect x="538" y="293" width="1" height="15" fill="rgb(235,162,43)"/><text text-anchor="left" x="541.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (5 samples, 0.09%)</title><rect x="538" y="277" width="1" height="15" fill="rgb(213,220,5)"/><text text-anchor="left" x="541.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (5 samples, 0.09%)</title><rect x="538" y="261" width="1" height="15" fill="rgb(237,17,12)"/><text text-anchor="left" x="541.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (5 samples, 0.09%)</title><rect x="538" y="245" width="1" height="15" fill="rgb(221,217,51)"/><text text-anchor="left" x="541.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (5 samples, 0.09%)</title><rect x="538" y="229" width="1" height="15" fill="rgb(220,199,9)"/><text text-anchor="left" x="541.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (5 samples, 0.09%)</title><rect x="538" y="213" width="1" height="15" fill="rgb(252,3,14)"/><text text-anchor="left" x="541.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (2 samples, 0.04%)</title><rect x="538" y="197" width="1" height="15" fill="rgb(246,1,21)"/><text text-anchor="left" x="541.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="538" y="181" width="1" height="15" fill="rgb(232,178,39)"/><text text-anchor="left" x="541.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="538" y="165" width="1" height="15" fill="rgb(208,149,30)"/><text text-anchor="left" x="541.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="538" y="149" width="1" height="15" fill="rgb(218,105,13)"/><text text-anchor="left" x="541.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (1 samples, 0.02%)</title><rect x="538" y="133" width="1" height="15" fill="rgb(252,216,26)"/><text text-anchor="left" x="541.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvbroad (1 samples, 0.02%)</title><rect x="538" y="117" width="1" height="15" fill="rgb(253,4,14)"/><text text-anchor="left" x="541.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CloneFastJSArray (21 samples, 0.40%)</title><rect x="537" y="357" width="5" height="15" fill="rgb(211,61,9)"/><text text-anchor="left" x="540.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (15 samples, 0.28%)</title><rect x="539" y="341" width="3" height="15" fill="rgb(207,18,2)"/><text text-anchor="left" x="542.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArrayPrototypeSlice (23 samples, 0.44%)</title><rect x="537" y="373" width="5" height="15" fill="rgb(229,68,7)"/><text text-anchor="left" x="540.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="542" y="357" width="0" height="15" fill="rgb(238,206,13)"/><text text-anchor="left" x="545.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dba32 (24 samples, 0.46%)</title><rect x="537" y="389" width="5" height="15" fill="rgb(222,229,20)"/><text text-anchor="left" x="540.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CloneFastJSArray (1 samples, 0.02%)</title><rect x="542" y="373" width="0" height="15" fill="rgb(213,150,51)"/><text text-anchor="left" x="545.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dba70 (1 samples, 0.02%)</title><rect x="542" y="389" width="1" height="15" fill="rgb(229,131,17)"/><text text-anchor="left" x="545.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dbab1 (1 samples, 0.02%)</title><rect x="543" y="389" width="0" height="15" fill="rgb(249,46,32)"/><text text-anchor="left" x="546.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb0a8 (61 samples, 1.16%)</title><rect x="533" y="421" width="13" height="15" fill="rgb(222,165,35)"/><text text-anchor="left" x="536.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_JSConstructStubGeneric (54 samples, 1.03%)</title><rect x="534" y="405" width="12" height="15" fill="rgb(249,37,45)"/><text text-anchor="left" x="537.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3dbac5 (16 samples, 0.30%)</title><rect x="543" y="389" width="3" height="15" fill="rgb(246,97,9)"/><text text-anchor="left" x="546.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArrayPrototypeReverse (16 samples, 0.30%)</title><rect x="543" y="373" width="3" height="15" fill="rgb(254,42,49)"/><text text-anchor="left" x="546.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb0e8 (1 samples, 0.02%)</title><rect x="546" y="421" width="1" height="15" fill="rgb(245,48,3)"/><text text-anchor="left" x="549.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb100 (2 samples, 0.04%)</title><rect x="547" y="421" width="0" height="15" fill="rgb(220,125,23)"/><text text-anchor="left" x="550.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb108 (2 samples, 0.04%)</title><rect x="547" y="421" width="1" height="15" fill="rgb(221,162,30)"/><text text-anchor="left" x="550.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb10c (1 samples, 0.02%)</title><rect x="548" y="421" width="0" height="15" fill="rgb(236,72,34)"/><text text-anchor="left" x="551.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb110 (2 samples, 0.04%)</title><rect x="548" y="421" width="0" height="15" fill="rgb(222,92,20)"/><text text-anchor="left" x="551.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb115 (1 samples, 0.02%)</title><rect x="548" y="421" width="1" height="15" fill="rgb(210,54,19)"/><text text-anchor="left" x="551.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb122 (1 samples, 0.02%)</title><rect x="549" y="421" width="0" height="15" fill="rgb(209,208,51)"/><text text-anchor="left" x="552.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb12c (1 samples, 0.02%)</title><rect x="549" y="421" width="0" height="15" fill="rgb(225,57,35)"/><text text-anchor="left" x="552.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb12f (1 samples, 0.02%)</title><rect x="549" y="421" width="0" height="15" fill="rgb(245,16,41)"/><text text-anchor="left" x="552.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb13d (1 samples, 0.02%)</title><rect x="549" y="421" width="0" height="15" fill="rgb(234,102,52)"/><text text-anchor="left" x="552.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb147 (10 samples, 0.19%)</title><rect x="549" y="421" width="3" height="15" fill="rgb(235,111,27)"/><text text-anchor="left" x="552.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb15d (13 samples, 0.25%)</title><rect x="552" y="421" width="3" height="15" fill="rgb(221,5,40)"/><text text-anchor="left" x="555.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb167 (3 samples, 0.06%)</title><rect x="555" y="421" width="0" height="15" fill="rgb(251,152,18)"/><text text-anchor="left" x="558.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb176 (5 samples, 0.09%)</title><rect x="555" y="421" width="1" height="15" fill="rgb(222,39,12)"/><text text-anchor="left" x="558.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb184 (1 samples, 0.02%)</title><rect x="556" y="421" width="1" height="15" fill="rgb(244,111,20)"/><text text-anchor="left" x="559.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb18f (4 samples, 0.08%)</title><rect x="557" y="421" width="0" height="15" fill="rgb(231,219,38)"/><text text-anchor="left" x="560.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1ad (1 samples, 0.02%)</title><rect x="557" y="421" width="1" height="15" fill="rgb(229,227,36)"/><text text-anchor="left" x="560.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1b0 (1 samples, 0.02%)</title><rect x="558" y="421" width="0" height="15" fill="rgb(254,96,52)"/><text text-anchor="left" x="561.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1cd (1 samples, 0.02%)</title><rect x="558" y="421" width="0" height="15" fill="rgb(233,134,36)"/><text text-anchor="left" x="561.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1d1 (5 samples, 0.09%)</title><rect x="558" y="421" width="1" height="15" fill="rgb(249,100,44)"/><text text-anchor="left" x="561.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1e5 (6 samples, 0.11%)</title><rect x="559" y="421" width="2" height="15" fill="rgb(252,86,45)"/><text text-anchor="left" x="562.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1ed (2 samples, 0.04%)</title><rect x="561" y="421" width="0" height="15" fill="rgb(230,145,13)"/><text text-anchor="left" x="564.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb1f9 (2 samples, 0.04%)</title><rect x="561" y="421" width="1" height="15" fill="rgb(220,4,46)"/><text text-anchor="left" x="564.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_ArgumentsAdaptorTrampoline (1 samples, 0.02%)</title><rect x="562" y="405" width="0" height="15" fill="rgb(242,65,0)"/><text text-anchor="left" x="565.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CallFunction_ReceiverIsNullOrUndefined (1 samples, 0.02%)</title><rect x="562" y="405" width="0" height="15" fill="rgb(225,209,47)"/><text text-anchor="left" x="565.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_Call_ReceiverIsNullOrUndefined (2 samples, 0.04%)</title><rect x="562" y="405" width="0" height="15" fill="rgb(237,119,49)"/><text text-anchor="left" x="565.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ConstructBuffer(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="563" y="373" width="0" height="15" fill="rgb(225,209,21)"/><text text-anchor="left" x="566.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`default_zone_malloc (1 samples, 0.02%)</title><rect x="564" y="309" width="0" height="15" fill="rgb(211,121,38)"/><text text-anchor="left" x="567.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (1 samples, 0.02%)</title><rect x="564" y="261" width="0" height="15" fill="rgb(245,43,19)"/><text text-anchor="left" x="567.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wake (1 samples, 0.02%)</title><rect x="564" y="261" width="1" height="15" fill="rgb(249,50,21)"/><text text-anchor="left" x="567.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (2 samples, 0.04%)</title><rect x="565" y="261" width="0" height="15" fill="rgb(229,4,1)"/><text text-anchor="left" x="568.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (3 samples, 0.06%)</title><rect x="565" y="261" width="1" height="15" fill="rgb(214,76,27)"/><text text-anchor="left" x="568.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (10 samples, 0.19%)</title><rect x="564" y="309" width="2" height="15" fill="rgb(241,93,47)"/><text text-anchor="left" x="567.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (10 samples, 0.19%)</title><rect x="564" y="293" width="2" height="15" fill="rgb(236,141,41)"/><text text-anchor="left" x="567.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (10 samples, 0.19%)</title><rect x="564" y="277" width="2" height="15" fill="rgb(211,138,3)"/><text text-anchor="left" x="567.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (1 samples, 0.02%)</title><rect x="566" y="261" width="0" height="15" fill="rgb(243,225,48)"/><text text-anchor="left" x="569.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (12 samples, 0.23%)</title><rect x="564" y="341" width="2" height="15" fill="rgb(246,84,15)"/><text text-anchor="left" x="567.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (12 samples, 0.23%)</title><rect x="564" y="325" width="2" height="15" fill="rgb(212,94,21)"/><text text-anchor="left" x="567.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="566" y="309" width="0" height="15" fill="rgb(223,170,9)"/><text text-anchor="left" x="569.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (1 samples, 0.02%)</title><rect x="567" y="261" width="0" height="15" fill="rgb(237,212,34)"/><text text-anchor="left" x="570.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (2 samples, 0.04%)</title><rect x="569" y="245" width="1" height="15" fill="rgb(218,167,26)"/><text text-anchor="left" x="572.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="570" y="245" width="0" height="15" fill="rgb(244,229,52)"/><text text-anchor="left" x="573.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (1 samples, 0.02%)</title><rect x="570" y="245" width="0" height="15" fill="rgb(241,143,44)"/><text text-anchor="left" x="573.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (18 samples, 0.34%)</title><rect x="566" y="325" width="4" height="15" fill="rgb(236,99,41)"/><text text-anchor="left" x="569.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (18 samples, 0.34%)</title><rect x="566" y="309" width="4" height="15" fill="rgb(210,189,43)"/><text text-anchor="left" x="569.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (16 samples, 0.30%)</title><rect x="567" y="293" width="3" height="15" fill="rgb(214,161,42)"/><text text-anchor="left" x="570.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (15 samples, 0.28%)</title><rect x="567" y="277" width="3" height="15" fill="rgb(237,104,35)"/><text text-anchor="left" x="570.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (14 samples, 0.27%)</title><rect x="567" y="261" width="3" height="15" fill="rgb(216,152,21)"/><text text-anchor="left" x="570.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (1 samples, 0.02%)</title><rect x="570" y="245" width="0" height="15" fill="rgb(240,4,4)"/><text text-anchor="left" x="573.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (3 samples, 0.06%)</title><rect x="571" y="229" width="1" height="15" fill="rgb(217,122,17)"/><text text-anchor="left" x="574.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (10 samples, 0.19%)</title><rect x="570" y="309" width="2" height="15" fill="rgb(235,225,43)"/><text text-anchor="left" x="573.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (10 samples, 0.19%)</title><rect x="570" y="293" width="2" height="15" fill="rgb(210,121,18)"/><text text-anchor="left" x="573.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (10 samples, 0.19%)</title><rect x="570" y="277" width="2" height="15" fill="rgb(207,114,33)"/><text text-anchor="left" x="573.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (10 samples, 0.19%)</title><rect x="570" y="261" width="2" height="15" fill="rgb(224,136,38)"/><text text-anchor="left" x="573.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (10 samples, 0.19%)</title><rect x="570" y="245" width="2" height="15" fill="rgb(205,49,14)"/><text text-anchor="left" x="573.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (4 samples, 0.08%)</title><rect x="572" y="229" width="0" height="15" fill="rgb(214,41,3)"/><text text-anchor="left" x="575.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="572" y="213" width="0" height="15" fill="rgb(227,88,19)"/><text text-anchor="left" x="575.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void* std::__1::__function::__policy_invoker&lt;void* (unsigned long)&gt;::__call_impl&lt;std::__1::__function::__alloc_func&lt;v8::internal::BackingStore::Allocate(v8::internal::Isolate*, unsigned long, v8::internal::SharedFlag, v8::internal::InitializedFlag)::$_0, std::__1::allocator&lt;v8::internal::BackingStore::Allocate(v8::internal::Isolate*, unsigned long, v8::internal::SharedFlag, v8::internal::InitializedFlag)::$_0&gt;, void* (unsigned long)&gt; &gt; (2 samples, 0.04%)</title><rect x="572" y="309" width="1" height="15" fill="rgb(233,202,0)"/><text text-anchor="left" x="575.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateExternalBackingStore(std::__1::function&lt;void* (13 samples, 0.25%)</title><rect x="570" y="325" width="3" height="15" fill="rgb(234,31,13)"/><text text-anchor="left" x="573.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="573" y="309" width="0" height="15" fill="rgb(237,134,1)"/><text text-anchor="left" x="576.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::BackingStore::Allocate (32 samples, 0.61%)</title><rect x="566" y="341" width="7" height="15" fill="rgb(233,15,17)"/><text text-anchor="left" x="569.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="573" y="325" width="0" height="15" fill="rgb(206,9,47)"/><text text-anchor="left" x="576.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (2 samples, 0.04%)</title><rect x="576" y="197" width="0" height="15" fill="rgb(217,191,25)"/><text text-anchor="left" x="579.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (1 samples, 0.02%)</title><rect x="576" y="197" width="0" height="15" fill="rgb(215,198,49)"/><text text-anchor="left" x="579.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (9 samples, 0.17%)</title><rect x="575" y="277" width="2" height="15" fill="rgb(222,14,10)"/><text text-anchor="left" x="578.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (9 samples, 0.17%)</title><rect x="575" y="261" width="2" height="15" fill="rgb(242,11,10)"/><text text-anchor="left" x="578.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (9 samples, 0.17%)</title><rect x="575" y="245" width="2" height="15" fill="rgb(212,159,45)"/><text text-anchor="left" x="578.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (8 samples, 0.15%)</title><rect x="575" y="229" width="2" height="15" fill="rgb(231,142,33)"/><text text-anchor="left" x="578.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (8 samples, 0.15%)</title><rect x="575" y="213" width="2" height="15" fill="rgb(215,33,9)"/><text text-anchor="left" x="578.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (3 samples, 0.06%)</title><rect x="576" y="197" width="1" height="15" fill="rgb(246,115,29)"/><text text-anchor="left" x="579.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="577" y="261" width="1" height="15" fill="rgb(238,94,1)"/><text text-anchor="left" x="580.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="577" y="245" width="1" height="15" fill="rgb(205,197,51)"/><text text-anchor="left" x="580.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="577" y="229" width="1" height="15" fill="rgb(232,21,51)"/><text text-anchor="left" x="580.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="577" y="213" width="1" height="15" fill="rgb(216,188,3)"/><text text-anchor="left" x="580.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="577" y="197" width="1" height="15" fill="rgb(245,1,38)"/><text text-anchor="left" x="580.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (2 samples, 0.04%)</title><rect x="578" y="261" width="0" height="15" fill="rgb(214,0,0)"/><text text-anchor="left" x="581.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_size (2 samples, 0.04%)</title><rect x="578" y="245" width="0" height="15" fill="rgb(221,185,40)"/><text text-anchor="left" x="581.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::RegisterNew(v8::internal::Heap*, v8::internal::JSArrayBuffer, std::__1::shared_ptr (22 samples, 0.42%)</title><rect x="573" y="309" width="5" height="15" fill="rgb(244,64,11)"/><text text-anchor="left" x="576.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::pair&lt;std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, void*&gt;*&gt;, bool&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__emplace_unique_key_args&lt;v8::internal::JSArrayBuffer, std::__1::pair (18 samples, 0.34%)</title><rect x="574" y="293" width="4" height="15" fill="rgb(222,219,2)"/><text text-anchor="left" x="577.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::__unordered_map_hasher&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, v8::internal::LocalArrayBufferTracker::Hasher, true&gt;, std::__1::__unordered_map_equal&lt;v8::internal::JSArrayBuffer, std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt;, std::__1::equal_to&lt;v8::internal::JSArrayBuffer&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;v8::internal::JSArrayBuffer, std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt; &gt;::__rehash (6 samples, 0.11%)</title><rect x="577" y="277" width="1" height="15" fill="rgb(242,142,15)"/><text text-anchor="left" x="580.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="578" y="261" width="0" height="15" fill="rgb(214,39,7)"/><text text-anchor="left" x="581.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="578" y="245" width="0" height="15" fill="rgb(233,47,10)"/><text text-anchor="left" x="581.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Attach(std::__1::shared_ptr (23 samples, 0.44%)</title><rect x="573" y="341" width="6" height="15" fill="rgb(236,8,12)"/><text text-anchor="left" x="576.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::RegisterBackingStore(v8::internal::JSArrayBuffer, std::__1::shared_ptr (23 samples, 0.44%)</title><rect x="573" y="325" width="6" height="15" fill="rgb(246,7,11)"/><text text-anchor="left" x="576.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="578" y="309" width="1" height="15" fill="rgb(207,176,6)"/><text text-anchor="left" x="581.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSArrayBuffer::Setup(v8::internal::SharedFlag, std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="579" y="341" width="0" height="15" fill="rgb(239,85,23)"/><text text-anchor="left" x="582.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::GetHeaderSize (1 samples, 0.02%)</title><rect x="579" y="325" width="0" height="15" fill="rgb(207,60,36)"/><text text-anchor="left" x="582.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRaw (2 samples, 0.04%)</title><rect x="579" y="261" width="1" height="15" fill="rgb(249,133,20)"/><text text-anchor="left" x="582.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::AllocateRawWithAllocationSite(v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::AllocationType, v8::internal::Handle (5 samples, 0.09%)</title><rect x="579" y="309" width="1" height="15" fill="rgb(215,188,45)"/><text text-anchor="left" x="582.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (4 samples, 0.08%)</title><rect x="579" y="293" width="1" height="15" fill="rgb(254,92,9)"/><text text-anchor="left" x="582.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (4 samples, 0.08%)</title><rect x="579" y="277" width="1" height="15" fill="rgb(249,212,30)"/><text text-anchor="left" x="582.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (1 samples, 0.02%)</title><rect x="580" y="261" width="0" height="15" fill="rgb(254,100,13)"/><text text-anchor="left" x="583.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (1 samples, 0.02%)</title><rect x="580" y="245" width="0" height="15" fill="rgb(237,101,19)"/><text text-anchor="left" x="583.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (1 samples, 0.02%)</title><rect x="580" y="229" width="0" height="15" fill="rgb(237,31,4)"/><text text-anchor="left" x="583.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (1 samples, 0.02%)</title><rect x="580" y="213" width="0" height="15" fill="rgb(210,119,37)"/><text text-anchor="left" x="583.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (1 samples, 0.02%)</title><rect x="580" y="197" width="0" height="15" fill="rgb(227,124,50)"/><text text-anchor="left" x="583.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (1 samples, 0.02%)</title><rect x="580" y="181" width="0" height="15" fill="rgb(251,181,39)"/><text text-anchor="left" x="583.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="580" y="165" width="0" height="15" fill="rgb(214,60,6)"/><text text-anchor="left" x="583.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="580" y="149" width="0" height="15" fill="rgb(254,125,16)"/><text text-anchor="left" x="583.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="580" y="133" width="0" height="15" fill="rgb(249,146,35)"/><text text-anchor="left" x="583.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="580" y="117" width="0" height="15" fill="rgb(222,87,53)"/><text text-anchor="left" x="583.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="580" y="101" width="0" height="15" fill="rgb(244,15,47)"/><text text-anchor="left" x="583.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="580" y="85" width="0" height="15" fill="rgb(209,147,29)"/><text text-anchor="left" x="583.00" y="95.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewJSObjectFromMap(v8::internal::Handle&lt;v8::internal::Map&gt;, v8::internal::AllocationType, v8::internal::Handle (6 samples, 0.11%)</title><rect x="579" y="325" width="1" height="15" fill="rgb(243,129,47)"/><text text-anchor="left" x="582.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::InitializeJSObjectFromMap(v8::internal::Handle&lt;v8::internal::JSObject&gt;, v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (1 samples, 0.02%)</title><rect x="580" y="309" width="0" height="15" fill="rgb(214,207,18)"/><text text-anchor="left" x="583.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSFunction::EnsureHasInitialMap(v8::internal::Handle (1 samples, 0.02%)</title><rect x="580" y="325" width="1" height="15" fill="rgb(251,64,23)"/><text text-anchor="left" x="583.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ConstructBuffer(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (80 samples, 1.52%)</title><rect x="563" y="357" width="18" height="15" fill="rgb(242,32,45)"/><text text-anchor="left" x="566.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSObject::New(v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle&lt;v8::internal::JSReceiver&gt;, v8::internal::Handle (10 samples, 0.19%)</title><rect x="579" y="341" width="2" height="15" fill="rgb(218,17,35)"/><text text-anchor="left" x="582.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSFunction::GetDerivedMap(v8::internal::Isolate*, v8::internal::Handle&lt;v8::internal::JSFunction&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="581" y="325" width="0" height="15" fill="rgb(206,103,5)"/><text text-anchor="left" x="584.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::JSFunction::EnsureHasInitialMap(v8::internal::Handle (1 samples, 0.02%)</title><rect x="581" y="309" width="0" height="15" fill="rgb(247,79,9)"/><text text-anchor="left" x="584.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit (88 samples, 1.67%)</title><rect x="563" y="389" width="19" height="15" fill="rgb(241,53,25)"/><text text-anchor="left" x="566.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_Impl_ArrayBufferConstructor_DoNotInitialize (87 samples, 1.65%)</title><rect x="563" y="373" width="19" height="15" fill="rgb(230,25,8)"/><text text-anchor="left" x="566.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::HandleScope::ZapRange (6 samples, 0.11%)</title><rect x="581" y="357" width="1" height="15" fill="rgb(224,6,21)"/><text text-anchor="left" x="584.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memset_pattern16$VARIANT$Haswell (6 samples, 0.11%)</title><rect x="581" y="341" width="1" height="15" fill="rgb(217,196,18)"/><text text-anchor="left" x="584.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)17&gt; &gt;::CopyElements(v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (2 samples, 0.04%)</title><rect x="582" y="373" width="1" height="15" fill="rgb(219,44,45)"/><text text-anchor="left" x="585.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (2 samples, 0.04%)</title><rect x="583" y="245" width="0" height="15" fill="rgb(236,70,36)"/><text text-anchor="left" x="586.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (2 samples, 0.04%)</title><rect x="583" y="229" width="0" height="15" fill="rgb(237,94,52)"/><text text-anchor="left" x="586.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (2 samples, 0.04%)</title><rect x="583" y="213" width="0" height="15" fill="rgb(236,123,24)"/><text text-anchor="left" x="586.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (2 samples, 0.04%)</title><rect x="583" y="197" width="0" height="15" fill="rgb(207,29,15)"/><text text-anchor="left" x="586.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (2 samples, 0.04%)</title><rect x="583" y="181" width="0" height="15" fill="rgb(209,155,45)"/><text text-anchor="left" x="586.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (3 samples, 0.06%)</title><rect x="583" y="373" width="0" height="15" fill="rgb(212,141,48)"/><text text-anchor="left" x="586.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (3 samples, 0.06%)</title><rect x="583" y="357" width="0" height="15" fill="rgb(207,40,51)"/><text text-anchor="left" x="586.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (3 samples, 0.06%)</title><rect x="583" y="341" width="0" height="15" fill="rgb(232,209,52)"/><text text-anchor="left" x="586.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (3 samples, 0.06%)</title><rect x="583" y="325" width="0" height="15" fill="rgb(221,175,32)"/><text text-anchor="left" x="586.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (3 samples, 0.06%)</title><rect x="583" y="309" width="0" height="15" fill="rgb(223,104,0)"/><text text-anchor="left" x="586.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (3 samples, 0.06%)</title><rect x="583" y="293" width="0" height="15" fill="rgb(241,212,51)"/><text text-anchor="left" x="586.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (3 samples, 0.06%)</title><rect x="583" y="277" width="0" height="15" fill="rgb(230,186,42)"/><text text-anchor="left" x="586.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (3 samples, 0.06%)</title><rect x="583" y="261" width="0" height="15" fill="rgb(245,67,12)"/><text text-anchor="left" x="586.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="583" y="245" width="0" height="15" fill="rgb(227,16,4)"/><text text-anchor="left" x="586.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Platform::CallBlockingTaskOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="583" y="229" width="0" height="15" fill="rgb(246,55,9)"/><text text-anchor="left" x="586.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultPlatform::CallOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="583" y="213" width="0" height="15" fill="rgb(234,65,14)"/><text text-anchor="left" x="586.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultWorkerThreadsTaskRunner::PostTask(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="583" y="197" width="0" height="15" fill="rgb(228,174,26)"/><text text-anchor="left" x="586.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DelayedTaskQueue::Append(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="583" y="181" width="0" height="15" fill="rgb(222,40,42)"/><text text-anchor="left" x="586.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvsignal (1 samples, 0.02%)</title><rect x="583" y="165" width="0" height="15" fill="rgb(229,52,51)"/><text text-anchor="left" x="586.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;::TryCopyElementsFastNumber (10 samples, 0.19%)</title><rect x="584" y="341" width="2" height="15" fill="rgb(227,159,16)"/><text text-anchor="left" x="587.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PerIsolateAssertScope&lt;(v8::internal::PerIsolateAssertType)0, false&gt;::~PerIsolateAssertScope (1 samples, 0.02%)</title><rect x="586" y="325" width="0" height="15" fill="rgb(232,135,44)"/><text text-anchor="left" x="589.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::ElementsAccessorBase&lt;v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;, v8::internal::(anonymous namespace)::ElementsKindTraits&lt;(v8::internal::ElementsKind)17&gt; &gt;::CopyElements(v8::internal::Handle&lt;v8::internal::Object&gt;, v8::internal::Handle (11 samples, 0.21%)</title><rect x="584" y="357" width="3" height="15" fill="rgb(229,227,49)"/><text text-anchor="left" x="587.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::PerIsolateAssertScope&lt;(v8::internal::PerIsolateAssertType)0, false&gt;::PerIsolateAssertScope (1 samples, 0.02%)</title><rect x="586" y="341" width="1" height="15" fill="rgb(228,146,38)"/><text text-anchor="left" x="589.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (20 samples, 0.38%)</title><rect x="582" y="389" width="5" height="15" fill="rgb(224,16,4)"/><text text-anchor="left" x="585.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_TypedArrayCopyElements (15 samples, 0.28%)</title><rect x="583" y="373" width="4" height="15" fill="rgb(223,71,15)"/><text text-anchor="left" x="586.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::(anonymous namespace)::TypedElementsAccessor&lt;(v8::internal::ElementsKind)17, unsigned char&gt;::TryCopyElementsFastNumber (1 samples, 0.02%)</title><rect x="587" y="357" width="0" height="15" fill="rgb(225,51,48)"/><text text-anchor="left" x="590.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="588" y="197" width="0" height="15" fill="rgb(222,166,28)"/><text text-anchor="left" x="591.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="588" y="181" width="0" height="15" fill="rgb(241,24,42)"/><text text-anchor="left" x="591.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="588" y="165" width="0" height="15" fill="rgb(209,220,33)"/><text text-anchor="left" x="591.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="588" y="149" width="0" height="15" fill="rgb(238,141,47)"/><text text-anchor="left" x="591.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="588" y="133" width="0" height="15" fill="rgb(225,9,47)"/><text text-anchor="left" x="591.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.02%)</title><rect x="588" y="117" width="0" height="15" fill="rgb(240,165,50)"/><text text-anchor="left" x="591.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_malloc_from_free_list (1 samples, 0.02%)</title><rect x="588" y="101" width="0" height="15" fill="rgb(225,29,16)"/><text text-anchor="left" x="591.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (2 samples, 0.04%)</title><rect x="588" y="197" width="0" height="15" fill="rgb(240,103,51)"/><text text-anchor="left" x="591.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_size (1 samples, 0.02%)</title><rect x="588" y="181" width="0" height="15" fill="rgb(205,215,12)"/><text text-anchor="left" x="591.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (8 samples, 0.15%)</title><rect x="587" y="373" width="2" height="15" fill="rgb(245,13,25)"/><text text-anchor="left" x="590.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (8 samples, 0.15%)</title><rect x="587" y="357" width="2" height="15" fill="rgb(217,193,29)"/><text text-anchor="left" x="590.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (8 samples, 0.15%)</title><rect x="587" y="341" width="2" height="15" fill="rgb(242,219,41)"/><text text-anchor="left" x="590.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (8 samples, 0.15%)</title><rect x="587" y="325" width="2" height="15" fill="rgb(217,228,20)"/><text text-anchor="left" x="590.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (8 samples, 0.15%)</title><rect x="587" y="309" width="2" height="15" fill="rgb(207,165,10)"/><text text-anchor="left" x="590.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (8 samples, 0.15%)</title><rect x="587" y="293" width="2" height="15" fill="rgb(245,160,48)"/><text text-anchor="left" x="590.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (8 samples, 0.15%)</title><rect x="587" y="277" width="2" height="15" fill="rgb(213,222,19)"/><text text-anchor="left" x="590.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (8 samples, 0.15%)</title><rect x="587" y="261" width="2" height="15" fill="rgb(215,125,42)"/><text text-anchor="left" x="590.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (8 samples, 0.15%)</title><rect x="587" y="245" width="2" height="15" fill="rgb(236,162,19)"/><text text-anchor="left" x="590.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (8 samples, 0.15%)</title><rect x="587" y="229" width="2" height="15" fill="rgb(252,75,54)"/><text text-anchor="left" x="590.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (8 samples, 0.15%)</title><rect x="587" y="213" width="2" height="15" fill="rgb(232,41,24)"/><text text-anchor="left" x="590.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (2 samples, 0.04%)</title><rect x="588" y="197" width="1" height="15" fill="rgb(216,94,7)"/><text text-anchor="left" x="591.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="589" y="181" width="0" height="15" fill="rgb(208,185,29)"/><text text-anchor="left" x="592.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.02%)</title><rect x="589" y="165" width="0" height="15" fill="rgb(211,158,26)"/><text text-anchor="left" x="592.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CloneFastJSArray (11 samples, 0.21%)</title><rect x="587" y="389" width="2" height="15" fill="rgb(213,100,51)"/><text text-anchor="left" x="590.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.04%)</title><rect x="589" y="373" width="0" height="15" fill="rgb(234,74,43)"/><text text-anchor="left" x="592.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GetProperty (8 samples, 0.15%)</title><rect x="589" y="389" width="2" height="15" fill="rgb(247,128,5)"/><text text-anchor="left" x="592.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Builtin_ArrayBufferConstructor_DoNotInitialize (1 samples, 0.02%)</title><rect x="591" y="389" width="0" height="15" fill="rgb(208,70,0)"/><text text-anchor="left" x="594.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb238 (135 samples, 2.56%)</title><rect x="562" y="421" width="30" height="15" fill="rgb(244,164,29)"/><text text-anchor="left" x="565.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">0x..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CreateTypedArray (131 samples, 2.49%)</title><rect x="562" y="405" width="30" height="15" fill="rgb(207,1,37)"/><text text-anchor="left" x="565.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::libc_memcpy (2 samples, 0.04%)</title><rect x="591" y="389" width="1" height="15" fill="rgb(214,12,24)"/><text text-anchor="left" x="594.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb246 (1 samples, 0.02%)</title><rect x="592" y="421" width="0" height="15" fill="rgb(218,90,14)"/><text text-anchor="left" x="595.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb2fe (1 samples, 0.02%)</title><rect x="592" y="421" width="0" height="15" fill="rgb(216,195,21)"/><text text-anchor="left" x="595.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb362 (1 samples, 0.02%)</title><rect x="592" y="421" width="0" height="15" fill="rgb(205,6,40)"/><text text-anchor="left" x="595.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb3ba (1 samples, 0.02%)</title><rect x="592" y="421" width="1" height="15" fill="rgb(246,63,15)"/><text text-anchor="left" x="595.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb3fa (1 samples, 0.02%)</title><rect x="593" y="421" width="0" height="15" fill="rgb(227,142,25)"/><text text-anchor="left" x="596.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb3fe (1 samples, 0.02%)</title><rect x="593" y="421" width="0" height="15" fill="rgb(214,110,50)"/><text text-anchor="left" x="596.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb402 (2 samples, 0.04%)</title><rect x="593" y="421" width="1" height="15" fill="rgb(224,169,31)"/><text text-anchor="left" x="596.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb406 (1 samples, 0.02%)</title><rect x="594" y="421" width="0" height="15" fill="rgb(215,153,44)"/><text text-anchor="left" x="597.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3d3958 (4 samples, 0.08%)</title><rect x="594" y="405" width="1" height="15" fill="rgb(231,65,22)"/><text text-anchor="left" x="597.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSet (4 samples, 0.08%)</title><rect x="594" y="389" width="1" height="15" fill="rgb(209,21,50)"/><text text-anchor="left" x="597.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="594" y="373" width="1" height="15" fill="rgb(228,169,14)"/><text text-anchor="left" x="597.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb43c (5 samples, 0.09%)</title><rect x="594" y="421" width="1" height="15" fill="rgb(207,85,6)"/><text text-anchor="left" x="597.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_TypedArrayPrototypeSet (1 samples, 0.02%)</title><rect x="595" y="405" width="0" height="15" fill="rgb(206,192,34)"/><text text-anchor="left" x="598.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb488 (1 samples, 0.02%)</title><rect x="595" y="421" width="0" height="15" fill="rgb(227,127,42)"/><text text-anchor="left" x="598.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb4ec (6 samples, 0.11%)</title><rect x="595" y="421" width="1" height="15" fill="rgb(223,114,14)"/><text text-anchor="left" x="598.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_AsyncFunctionAwaitUncaught (6 samples, 0.11%)</title><rect x="595" y="405" width="1" height="15" fill="rgb(251,214,20)"/><text text-anchor="left" x="598.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb524 (1 samples, 0.02%)</title><rect x="596" y="421" width="1" height="15" fill="rgb(225,126,7)"/><text text-anchor="left" x="599.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb54d (1 samples, 0.02%)</title><rect x="597" y="421" width="0" height="15" fill="rgb(254,114,29)"/><text text-anchor="left" x="600.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (3 samples, 0.06%)</title><rect x="597" y="261" width="1" height="15" fill="rgb(245,8,8)"/><text text-anchor="left" x="600.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (3 samples, 0.06%)</title><rect x="597" y="245" width="1" height="15" fill="rgb(250,190,13)"/><text text-anchor="left" x="600.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (1 samples, 0.02%)</title><rect x="597" y="229" width="1" height="15" fill="rgb(248,99,21)"/><text text-anchor="left" x="600.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.02%)</title><rect x="597" y="213" width="1" height="15" fill="rgb(233,60,43)"/><text text-anchor="left" x="600.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (1 samples, 0.02%)</title><rect x="597" y="197" width="1" height="15" fill="rgb(207,176,31)"/><text text-anchor="left" x="600.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cb763 (4 samples, 0.08%)</title><rect x="597" y="421" width="1" height="15" fill="rgb(218,25,29)"/><text text-anchor="left" x="600.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (4 samples, 0.08%)</title><rect x="597" y="405" width="1" height="15" fill="rgb(213,23,12)"/><text text-anchor="left" x="600.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (4 samples, 0.08%)</title><rect x="597" y="389" width="1" height="15" fill="rgb(226,75,8)"/><text text-anchor="left" x="600.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (4 samples, 0.08%)</title><rect x="597" y="373" width="1" height="15" fill="rgb(253,165,16)"/><text text-anchor="left" x="600.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (4 samples, 0.08%)</title><rect x="597" y="357" width="1" height="15" fill="rgb(212,131,47)"/><text text-anchor="left" x="600.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (4 samples, 0.08%)</title><rect x="597" y="341" width="1" height="15" fill="rgb(231,64,39)"/><text text-anchor="left" x="600.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (4 samples, 0.08%)</title><rect x="597" y="325" width="1" height="15" fill="rgb(208,8,15)"/><text text-anchor="left" x="600.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::PerformGarbageCollection (4 samples, 0.08%)</title><rect x="597" y="309" width="1" height="15" fill="rgb(216,179,50)"/><text text-anchor="left" x="600.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::Scavenge (4 samples, 0.08%)</title><rect x="597" y="293" width="1" height="15" fill="rgb(240,101,29)"/><text text-anchor="left" x="600.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (4 samples, 0.08%)</title><rect x="597" y="277" width="1" height="15" fill="rgb(216,101,51)"/><text text-anchor="left" x="600.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (1 samples, 0.02%)</title><rect x="598" y="261" width="0" height="15" fill="rgb(250,150,35)"/><text text-anchor="left" x="601.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (1 samples, 0.02%)</title><rect x="598" y="245" width="0" height="15" fill="rgb(245,151,10)"/><text text-anchor="left" x="601.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (1 samples, 0.02%)</title><rect x="598" y="229" width="0" height="15" fill="rgb(240,144,29)"/><text text-anchor="left" x="601.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (1 samples, 0.02%)</title><rect x="598" y="213" width="0" height="15" fill="rgb(248,195,24)"/><text text-anchor="left" x="601.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::ScavengePage (1 samples, 0.02%)</title><rect x="598" y="197" width="0" height="15" fill="rgb(238,62,38)"/><text text-anchor="left" x="601.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="598" y="181" width="0" height="15" fill="rgb(251,159,46)"/><text text-anchor="left" x="601.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cbac6 (2 samples, 0.04%)</title><rect x="598" y="421" width="0" height="15" fill="rgb(238,112,44)"/><text text-anchor="left" x="601.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::NewSpace::ResetLinearAllocationArea (1 samples, 0.02%)</title><rect x="598" y="261" width="0" height="15" fill="rgb(209,155,11)"/><text text-anchor="left" x="601.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (1 samples, 0.02%)</title><rect x="598" y="245" width="0" height="15" fill="rgb(228,148,25)"/><text text-anchor="left" x="601.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void std::__1::vector&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; &gt; &gt;::__push_back_slow_path&lt;std::__1::shared_ptr&lt;v8::internal::BackingStore&gt; const&amp;&gt;(std::__1::shared_ptr (1 samples, 0.02%)</title><rect x="600" y="213" width="1" height="15" fill="rgb(234,127,54)"/><text text-anchor="left" x="603.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`operator new(unsigned long) (1 samples, 0.02%)</title><rect x="600" y="197" width="1" height="15" fill="rgb(243,193,41)"/><text text-anchor="left" x="603.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc (1 samples, 0.02%)</title><rect x="600" y="181" width="1" height="15" fill="rgb(236,209,20)"/><text text-anchor="left" x="603.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.02%)</title><rect x="600" y="165" width="1" height="15" fill="rgb(243,165,27)"/><text text-anchor="left" x="603.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`szone_malloc_should_clear (1 samples, 0.02%)</title><rect x="600" y="149" width="1" height="15" fill="rgb(208,113,42)"/><text text-anchor="left" x="603.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free (2 samples, 0.04%)</title><rect x="601" y="213" width="0" height="15" fill="rgb(222,106,22)"/><text text-anchor="left" x="604.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_size (2 samples, 0.04%)</title><rect x="601" y="197" width="0" height="15" fill="rgb(247,17,7)"/><text text-anchor="left" x="604.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::PrepareToFreeDeadInNewSpace (15 samples, 0.28%)</title><rect x="598" y="245" width="4" height="15" fill="rgb(206,33,17)"/><text text-anchor="left" x="601.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ArrayBufferTracker::ProcessBuffers (15 samples, 0.28%)</title><rect x="598" y="229" width="4" height="15" fill="rgb(213,158,12)"/><text text-anchor="left" x="601.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (4 samples, 0.08%)</title><rect x="601" y="213" width="1" height="15" fill="rgb(221,24,44)"/><text text-anchor="left" x="604.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_no_lock (2 samples, 0.04%)</title><rect x="601" y="197" width="1" height="15" fill="rgb(250,15,29)"/><text text-anchor="left" x="604.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`tiny_free_list_add_ptr (2 samples, 0.04%)</title><rect x="601" y="181" width="1" height="15" fill="rgb(233,73,3)"/><text text-anchor="left" x="604.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateRoots (1 samples, 0.02%)</title><rect x="602" y="245" width="0" height="15" fill="rgb(223,27,8)"/><text text-anchor="left" x="605.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::IterateStrongRoots (1 samples, 0.02%)</title><rect x="602" y="229" width="0" height="15" fill="rgb(214,15,0)"/><text text-anchor="left" x="605.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SerializerDeserializer::Iterate (1 samples, 0.02%)</title><rect x="602" y="213" width="0" height="15" fill="rgb(247,136,26)"/><text text-anchor="left" x="605.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::Platform::CallBlockingTaskOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="602" y="229" width="0" height="15" fill="rgb(231,126,15)"/><text text-anchor="left" x="605.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultPlatform::CallOnWorkerThread(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="602" y="213" width="0" height="15" fill="rgb(230,150,39)"/><text text-anchor="left" x="605.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DefaultWorkerThreadsTaskRunner::PostTask(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="602" y="197" width="0" height="15" fill="rgb(206,143,10)"/><text text-anchor="left" x="605.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::platform::DelayedTaskQueue::Append(std::__1::unique_ptr&lt;v8::Task, std::__1::default_delete (1 samples, 0.02%)</title><rect x="602" y="181" width="0" height="15" fill="rgb(251,34,11)"/><text text-anchor="left" x="605.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvsignal (1 samples, 0.02%)</title><rect x="602" y="165" width="0" height="15" fill="rgb(229,97,41)"/><text text-anchor="left" x="605.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::base::ConditionVariable::WaitFor (1 samples, 0.02%)</title><rect x="602" y="181" width="1" height="15" fill="rgb(254,5,27)"/><text text-anchor="left" x="605.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__psynch_cvwait (1 samples, 0.02%)</title><rect x="602" y="165" width="1" height="15" fill="rgb(216,136,20)"/><text text-anchor="left" x="605.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="603" y="165" width="0" height="15" fill="rgb(212,45,10)"/><text text-anchor="left" x="606.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::BodyDescriptorBase::IterateJSObjectBodyImpl&lt;v8::internal::ScavengeVisitor&gt; (1 samples, 0.02%)</title><rect x="603" y="165" width="0" height="15" fill="rgb(219,129,16)"/><text text-anchor="left" x="606.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="603" y="149" width="0" height="15" fill="rgb(243,65,15)"/><text text-anchor="left" x="606.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::Process (3 samples, 0.06%)</title><rect x="603" y="181" width="0" height="15" fill="rgb(230,72,46)"/><text text-anchor="left" x="606.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`void v8::internal::BodyDescriptorBase::IteratePointers&lt;v8::internal::IterateAndScavengePromotedObjectsVisitor&gt; (1 samples, 0.02%)</title><rect x="603" y="165" width="0" height="15" fill="rgb(211,169,18)"/><text text-anchor="left" x="606.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="603" y="149" width="0" height="15" fill="rgb(240,91,25)"/><text text-anchor="left" x="606.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Task::RunInternal (6 samples, 0.11%)</title><rect x="602" y="229" width="2" height="15" fill="rgb(254,2,46)"/><text text-anchor="left" x="605.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::RunInParallel (6 samples, 0.11%)</title><rect x="602" y="213" width="2" height="15" fill="rgb(249,57,33)"/><text text-anchor="left" x="605.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengingTask::ProcessItems (6 samples, 0.11%)</title><rect x="602" y="197" width="2" height="15" fill="rgb(244,2,5)"/><text text-anchor="left" x="605.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Scavenger::ScavengePage (2 samples, 0.04%)</title><rect x="603" y="181" width="1" height="15" fill="rgb(231,218,5)"/><text text-anchor="left" x="606.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::SlotCallbackResult v8::internal::Scavenger::ScavengeObject&lt;v8::internal::FullHeapObjectSlot&gt; (1 samples, 0.02%)</title><rect x="603" y="165" width="1" height="15" fill="rgb(231,88,27)"/><text text-anchor="left" x="606.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::Run (8 samples, 0.15%)</title><rect x="602" y="245" width="2" height="15" fill="rgb(216,118,14)"/><text text-anchor="left" x="605.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.02%)</title><rect x="604" y="229" width="0" height="15" fill="rgb(244,227,11)"/><text text-anchor="left" x="607.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ItemParallelJob::~ItemParallelJob (2 samples, 0.04%)</title><rect x="604" y="245" width="0" height="15" fill="rgb(241,211,31)"/><text text-anchor="left" x="607.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_tiny (2 samples, 0.04%)</title><rect x="604" y="229" width="0" height="15" fill="rgb(212,202,24)"/><text text-anchor="left" x="607.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__ulock_wait (2 samples, 0.04%)</title><rect x="604" y="213" width="0" height="15" fill="rgb(231,181,10)"/><text text-anchor="left" x="607.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::ScavengerCollector::CollectGarbage (27 samples, 0.51%)</title><rect x="598" y="261" width="7" height="15" fill="rgb(218,113,43)"/><text text-anchor="left" x="601.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_malloc.dylib`free_small (1 samples, 0.02%)</title><rect x="604" y="245" width="1" height="15" fill="rgb(251,13,28)"/><text text-anchor="left" x="607.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>0x28236c3cbae7 (29 samples, 0.55%)</title><rect x="598" y="421" width="7" height="15" fill="rgb(210,47,17)"/><text text-anchor="left" x="601.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_GrowFastSmiOrObjectElements (29 samples, 0.55%)</title><rect x="598" y="405" width="7" height="15" fill="rgb(214,38,30)"/><text text-anchor="left" x="601.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit (29 samples, 0.55%)</title><rect x="598" y="389" width="7" height="15" fill="rgb(254,107,33)"/><text text-anchor="left" x="601.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Runtime_AllocateInYoungGeneration (29 samples, 0.55%)</title><rect x="598" y="373" width="7" height="15" fill="rgb(211,66,45)"/><text text-anchor="left" x="601.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Factory::NewFillerObject (29 samples, 0.55%)</title><rect x="598" y="357" width="7" height="15" fill="rgb(244,207,31)"/><text text-anchor="left" x="601.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithRetryOrFailSlowPath (29 samples, 0.55%)</title><rect x="598" y="341" width="7" height="15" fill="rgb(220,60,41)"/><text text-anchor="left" x="601.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::AllocateRawWithLightRetrySlowPath (29 samples, 0.55%)</title><rect x="598" y="325" width="7" height="15" fill="rgb(224,65,14)"/><text text-anchor="left" x="601.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno`v8::internal::Heap::CollectGarbage (29 samples, 0.55%)</title><rect x="598" y="309" width="7" height="15" fill="rgb(227,102,36)"/><text text-anchor="left" x="601.00" y="319.50" font-size="12" font
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment