Page MenuHomePhabricator

autoloader-classmap.svg

Authored By
TK-999
Oct 31 2022, 10:30 PM
Size
1 MB
Referenced Files
None
Subscribers
None

autoloader-classmap.svg

This file is larger than 256 KB, so syntax highlighting was skipped.
<?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="1302" onload="init(evt)" viewBox="0 0 1200 1302" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1302.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1285" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1285" > </text>
<g id="frames">
<g >
<title>TRACE-162$Wikimedia\ScopedCallback::__construct$41 (20,202,020 samples, 0.04%)</title><rect x="1081.2" y="1077" width="0.5" height="15.0" fill="rgb(240,186,51)" rx="2" ry="2" />
<text x="1084.25" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="958.1" y="1045" width="0.4" height="15.0" fill="rgb(245,76,17)" rx="2" ry="2" />
<text x="961.12" y="1055.5" ></text>
</g>
<g >
<title>tcp_close (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1061" width="0.4" height="15.0" fill="rgb(217,133,10)" rx="2" ry="2" />
<text x="1147.38" y="1071.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="341.2" y="1125" width="0.3" height="15.0" fill="rgb(210,90,9)" rx="2" ry="2" />
<text x="344.25" y="1135.5" ></text>
</g>
<g >
<title>zif_strtolower (20,202,020 samples, 0.04%)</title><rect x="510.4" y="1125" width="0.4" height="15.0" fill="rgb(228,66,41)" rx="2" ry="2" />
<text x="513.42" y="1135.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="676.2" y="1045" width="0.5" height="15.0" fill="rgb(221,119,14)" rx="2" ry="2" />
<text x="679.25" y="1055.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (20,202,020 samples, 0.04%)</title><rect x="932.1" y="837" width="0.4" height="15.0" fill="rgb(236,130,4)" rx="2" ry="2" />
<text x="935.08" y="847.5" ></text>
</g>
<g >
<title>shutdown_scanner (10,101,010 samples, 0.02%)</title><rect x="1096.5" y="1141" width="0.2" height="15.0" fill="rgb(226,125,42)" rx="2" ry="2" />
<text x="1099.46" y="1151.5" ></text>
</g>
<g >
<title>mysqlnd_caching_sha2_handle_server_response.part.0.isra.0 (60,606,060 samples, 0.11%)</title><rect x="924.8" y="981" width="1.2" height="15.0" fill="rgb(239,209,50)" rx="2" ry="2" />
<text x="927.79" y="991.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="973.3" y="933" width="0.2" height="15.0" fill="rgb(234,141,32)" rx="2" ry="2" />
<text x="976.33" y="943.5" ></text>
</g>
<g >
<title>memcpy (20,202,020 samples, 0.04%)</title><rect x="923.1" y="1125" width="0.4" height="15.0" fill="rgb(205,82,0)" rx="2" ry="2" />
<text x="926.12" y="1135.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (606,060,600 samples, 1.06%)</title><rect x="1151.5" y="741" width="12.5" height="15.0" fill="rgb(233,55,27)" rx="2" ry="2" />
<text x="1154.46" y="751.5" ></text>
</g>
<g >
<title>zend_call_destructors (646,464,640 samples, 1.13%)</title><rect x="1078.5" y="1157" width="13.4" height="15.0" fill="rgb(251,214,37)" rx="2" ry="2" />
<text x="1081.54" y="1167.5" ></text>
</g>
<g >
<title>ovl_permission (10,101,010 samples, 0.02%)</title><rect x="797.1" y="757" width="0.2" height="15.0" fill="rgb(228,74,30)" rx="2" ry="2" />
<text x="800.08" y="767.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="533" width="0.2" height="15.0" fill="rgb(235,187,38)" rx="2" ry="2" />
<text x="1170.08" y="543.5" ></text>
</g>
<g >
<title>zend_string_hash_func (10,101,010 samples, 0.02%)</title><rect x="446.2" y="1109" width="0.3" height="15.0" fill="rgb(254,134,5)" rx="2" ry="2" />
<text x="449.25" y="1119.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="930.8" y="853" width="0.2" height="15.0" fill="rgb(248,69,29)" rx="2" ry="2" />
<text x="933.83" y="863.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="767.5" y="917" width="0.4" height="15.0" fill="rgb(241,133,44)" rx="2" ry="2" />
<text x="770.50" y="927.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="950.2" y="1029" width="0.2" height="15.0" fill="rgb(250,207,33)" rx="2" ry="2" />
<text x="953.21" y="1039.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1077" width="0.2" height="15.0" fill="rgb(238,9,41)" rx="2" ry="2" />
<text x="347.79" y="1087.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="689.0" y="981" width="0.2" height="15.0" fill="rgb(212,143,30)" rx="2" ry="2" />
<text x="691.96" y="991.5" ></text>
</g>
<g >
<title>zif_mt_rand (10,101,010 samples, 0.02%)</title><rect x="1032.3" y="981" width="0.2" height="15.0" fill="rgb(217,49,32)" rx="2" ry="2" />
<text x="1035.29" y="991.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="864.8" y="869" width="0.2" height="15.0" fill="rgb(245,217,34)" rx="2" ry="2" />
<text x="867.79" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="890.0" y="949" width="0.2" height="15.0" fill="rgb(244,180,44)" rx="2" ry="2" />
<text x="893.00" y="959.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="850.6" y="469" width="0.2" height="15.0" fill="rgb(240,207,43)" rx="2" ry="2" />
<text x="853.62" y="479.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="245.4" y="1125" width="0.2" height="15.0" fill="rgb(220,71,36)" rx="2" ry="2" />
<text x="248.42" y="1135.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="970.6" y="1029" width="0.2" height="15.0" fill="rgb(245,18,20)" rx="2" ry="2" />
<text x="973.62" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="524.4" y="949" width="0.2" height="15.0" fill="rgb(236,18,12)" rx="2" ry="2" />
<text x="527.38" y="959.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="731.7" y="1029" width="0.6" height="15.0" fill="rgb(212,152,43)" rx="2" ry="2" />
<text x="734.67" y="1039.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="201.9" y="1093" width="0.2" height="15.0" fill="rgb(214,121,0)" rx="2" ry="2" />
<text x="204.88" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="1018.8" y="885" width="0.4" height="15.0" fill="rgb(234,136,40)" rx="2" ry="2" />
<text x="1021.75" y="895.5" ></text>
</g>
<g >
<title>sch_direct_xmit (70,707,070 samples, 0.12%)</title><rect x="1185.0" y="437" width="1.5" height="15.0" fill="rgb(209,78,1)" rx="2" ry="2" />
<text x="1188.00" y="447.5" ></text>
</g>
<g >
<title>ovl_other_xattr_get (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="1013" width="0.2" height="15.0" fill="rgb(227,94,24)" rx="2" ry="2" />
<text x="1124.67" y="1023.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="970.6" y="1013" width="0.2" height="15.0" fill="rgb(250,165,4)" rx="2" ry="2" />
<text x="973.62" y="1023.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="733.1" y="917" width="0.4" height="15.0" fill="rgb(219,60,14)" rx="2" ry="2" />
<text x="736.12" y="927.5" ></text>
</g>
<g >
<title>TRACE-389$Wikimedia\ObjectFactory\ObjectFactory::getObjectFromSpec$200 (20,202,020 samples, 0.04%)</title><rect x="502.3" y="1141" width="0.4" height="15.0" fill="rgb(248,123,34)" rx="2" ry="2" />
<text x="505.29" y="1151.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="933" width="0.3" height="15.0" fill="rgb(250,21,35)" rx="2" ry="2" />
<text x="1134.25" y="943.5" ></text>
</g>
<g >
<title>new_sync_write (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="981" width="2.7" height="15.0" fill="rgb(250,85,42)" rx="2" ry="2" />
<text x="1026.96" y="991.5" ></text>
</g>
<g >
<title>zend_hash_func (20,202,020 samples, 0.04%)</title><rect x="293.8" y="1109" width="0.4" height="15.0" fill="rgb(209,29,31)" rx="2" ry="2" />
<text x="296.75" y="1119.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="850.6" y="805" width="0.2" height="15.0" fill="rgb(217,189,5)" rx="2" ry="2" />
<text x="853.62" y="815.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (30,303,030 samples, 0.05%)</title><rect x="267.9" y="1013" width="0.6" height="15.0" fill="rgb(236,69,23)" rx="2" ry="2" />
<text x="270.92" y="1023.5" ></text>
</g>
<g >
<title>ip_finish_output (191,919,190 samples, 0.34%)</title><rect x="1127.3" y="981" width="3.9" height="15.0" fill="rgb(216,77,21)" rx="2" ry="2" />
<text x="1130.29" y="991.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (30,303,030 samples, 0.05%)</title><rect x="43.3" y="1109" width="0.7" height="15.0" fill="rgb(254,46,32)" rx="2" ry="2" />
<text x="46.33" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="1025.0" y="581" width="0.2" height="15.0" fill="rgb(233,200,53)" rx="2" ry="2" />
<text x="1028.00" y="591.5" ></text>
</g>
<g >
<title>zend_update_property_ex (20,202,020 samples, 0.04%)</title><rect x="287.5" y="1109" width="0.4" height="15.0" fill="rgb(214,109,47)" rx="2" ry="2" />
<text x="290.50" y="1119.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="890.0" y="965" width="0.2" height="15.0" fill="rgb(216,183,28)" rx="2" ry="2" />
<text x="893.00" y="975.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (60,606,060 samples, 0.11%)</title><rect x="509.2" y="1109" width="1.2" height="15.0" fill="rgb(216,90,50)" rx="2" ry="2" />
<text x="512.17" y="1119.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (40,404,040 samples, 0.07%)</title><rect x="921.5" y="901" width="0.8" height="15.0" fill="rgb(218,143,23)" rx="2" ry="2" />
<text x="924.46" y="911.5" ></text>
</g>
<g >
<title>fib_table_lookup (10,101,010 samples, 0.02%)</title><rect x="1160.6" y="485" width="0.2" height="15.0" fill="rgb(228,217,24)" rx="2" ry="2" />
<text x="1163.62" y="495.5" ></text>
</g>
<g >
<title>php_pcre_replace (20,202,020 samples, 0.04%)</title><rect x="529.4" y="1109" width="0.4" height="15.0" fill="rgb(215,28,13)" rx="2" ry="2" />
<text x="532.38" y="1119.5" ></text>
</g>
<g >
<title>mysqlnd_read_packet_header_and_body.constprop.0 (40,404,040 samples, 0.07%)</title><rect x="929.6" y="1013" width="0.8" height="15.0" fill="rgb(205,26,26)" rx="2" ry="2" />
<text x="932.58" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="955.4" y="1013" width="0.2" height="15.0" fill="rgb(216,176,51)" rx="2" ry="2" />
<text x="958.42" y="1023.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="514.0" y="1013" width="0.2" height="15.0" fill="rgb(241,112,39)" rx="2" ry="2" />
<text x="516.96" y="1023.5" ></text>
</g>
<g >
<title>skb_release_all (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="693" width="0.2" height="15.0" fill="rgb(224,25,29)" rx="2" ry="2" />
<text x="1056.12" y="703.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="450.4" y="1093" width="0.2" height="15.0" fill="rgb(226,131,24)" rx="2" ry="2" />
<text x="453.42" y="1103.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1045" width="0.2" height="15.0" fill="rgb(234,169,54)" rx="2" ry="2" />
<text x="246.96" y="1055.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1125" width="0.2" height="15.0" fill="rgb(209,132,0)" rx="2" ry="2" />
<text x="1118.21" y="1135.5" ></text>
</g>
<g >
<title>concat_function (10,101,010 samples, 0.02%)</title><rect x="1031.2" y="965" width="0.3" height="15.0" fill="rgb(225,18,44)" rx="2" ry="2" />
<text x="1034.25" y="975.5" ></text>
</g>
<g >
<title>zend_declare_typed_property (10,101,010 samples, 0.02%)</title><rect x="737.9" y="981" width="0.2" height="15.0" fill="rgb(217,60,12)" rx="2" ry="2" />
<text x="740.92" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (232,323,230 samples, 0.41%)</title><rect x="1005.6" y="1013" width="4.8" height="15.0" fill="rgb(205,31,7)" rx="2" ry="2" />
<text x="1008.62" y="1023.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="1108.8" y="1125" width="0.4" height="15.0" fill="rgb(246,197,51)" rx="2" ry="2" />
<text x="1111.75" y="1135.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="198.3" y="1093" width="0.2" height="15.0" fill="rgb(214,190,17)" rx="2" ry="2" />
<text x="201.33" y="1103.5" ></text>
</g>
<g >
<title>__audit_inode (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="1077" width="0.2" height="15.0" fill="rgb(234,203,31)" rx="2" ry="2" />
<text x="1124.67" y="1087.5" ></text>
</g>
<g >
<title>getname_flags (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1061" width="0.2" height="15.0" fill="rgb(216,222,10)" rx="2" ry="2" />
<text x="221.75" y="1071.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="949" width="0.2" height="15.0" fill="rgb(242,111,33)" rx="2" ry="2" />
<text x="1085.08" y="959.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="853" width="0.2" height="15.0" fill="rgb(218,90,12)" rx="2" ry="2" />
<text x="1171.12" y="863.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="378.5" y="853" width="0.3" height="15.0" fill="rgb(237,141,33)" rx="2" ry="2" />
<text x="381.54" y="863.5" ></text>
</g>
<g >
<title>__this_module (20,202,020 samples, 0.04%)</title><rect x="435.2" y="1013" width="0.4" height="15.0" fill="rgb(209,177,44)" rx="2" ry="2" />
<text x="438.21" y="1023.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (10,101,010 samples, 0.02%)</title><rect x="1188.1" y="1061" width="0.2" height="15.0" fill="rgb(232,119,16)" rx="2" ry="2" />
<text x="1191.12" y="1071.5" ></text>
</g>
<g >
<title>_erealloc (20,202,020 samples, 0.04%)</title><rect x="960.4" y="1077" width="0.4" height="15.0" fill="rgb(209,179,18)" rx="2" ry="2" />
<text x="963.42" y="1087.5" ></text>
</g>
<g >
<title>Balloc (10,101,010 samples, 0.02%)</title><rect x="198.8" y="1061" width="0.2" height="15.0" fill="rgb(254,183,2)" rx="2" ry="2" />
<text x="201.75" y="1071.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (1,050,505,040 samples, 1.84%)</title><rect x="1146.5" y="1093" width="21.6" height="15.0" fill="rgb(250,213,31)" rx="2" ry="2" />
<text x="1149.46" y="1103.5" >t..</text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="864.2" y="805" width="0.2" height="15.0" fill="rgb(234,225,6)" rx="2" ry="2" />
<text x="867.17" y="815.5" ></text>
</g>
<g >
<title>dev_queue_xmit (20,202,020 samples, 0.04%)</title><rect x="1130.8" y="933" width="0.4" height="15.0" fill="rgb(222,162,28)" rx="2" ry="2" />
<text x="1133.83" y="943.5" ></text>
</g>
<g >
<title>zif_call_user_func_array (121,212,120 samples, 0.21%)</title><rect x="521.0" y="1125" width="2.5" height="15.0" fill="rgb(237,18,47)" rx="2" ry="2" />
<text x="524.04" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1109" width="0.2" height="15.0" fill="rgb(226,90,11)" rx="2" ry="2" />
<text x="549.46" y="1119.5" ></text>
</g>
<g >
<title>ovl_override_creds (20,202,020 samples, 0.04%)</title><rect x="392.3" y="917" width="0.4" height="15.0" fill="rgb(250,187,26)" rx="2" ry="2" />
<text x="395.29" y="927.5" ></text>
</g>
<g >
<title>zend_do_link_class (151,515,150 samples, 0.26%)</title><rect x="800.4" y="885" width="3.1" height="15.0" fill="rgb(250,141,46)" rx="2" ry="2" />
<text x="803.42" y="895.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (10,101,010 samples, 0.02%)</title><rect x="1183.1" y="1109" width="0.2" height="15.0" fill="rgb(236,81,31)" rx="2" ry="2" />
<text x="1186.12" y="1119.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="686.7" y="885" width="0.2" height="15.0" fill="rgb(238,56,17)" rx="2" ry="2" />
<text x="689.67" y="895.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="676.2" y="1013" width="0.3" height="15.0" fill="rgb(209,159,19)" rx="2" ry="2" />
<text x="679.25" y="1023.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1188.1" y="1013" width="0.2" height="15.0" fill="rgb(218,87,26)" rx="2" ry="2" />
<text x="1191.12" y="1023.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1039.4" y="1109" width="0.2" height="15.0" fill="rgb(253,27,13)" rx="2" ry="2" />
<text x="1042.38" y="1119.5" ></text>
</g>
<g >
<title>netif_receive_skb (80,808,080 samples, 0.14%)</title><rect x="939.4" y="389" width="1.6" height="15.0" fill="rgb(218,116,18)" rx="2" ry="2" />
<text x="942.38" y="399.5" ></text>
</g>
<g >
<title>tcp_v6_destroy_sock (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="901" width="0.3" height="15.0" fill="rgb(251,89,3)" rx="2" ry="2" />
<text x="1026.54" y="911.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="742.9" y="757" width="0.2" height="15.0" fill="rgb(207,14,44)" rx="2" ry="2" />
<text x="745.92" y="767.5" ></text>
</g>
<g >
<title>ZEND_HANDLE_EXCEPTION_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="696.5" y="1125" width="0.2" height="15.0" fill="rgb(237,52,45)" rx="2" ry="2" />
<text x="699.46" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output (40,404,040 samples, 0.07%)</title><rect x="1089.4" y="661" width="0.8" height="15.0" fill="rgb(249,80,25)" rx="2" ry="2" />
<text x="1092.38" y="671.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="709" width="0.2" height="15.0" fill="rgb(216,114,53)" rx="2" ry="2" />
<text x="1150.29" y="719.5" ></text>
</g>
<g >
<title>zend_insert_sort (50,505,050 samples, 0.09%)</title><rect x="512.5" y="1061" width="1.0" height="15.0" fill="rgb(224,94,24)" rx="2" ry="2" />
<text x="515.50" y="1071.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_protocol_init_cached_sha2_result_packet_pub (10,101,010 samples, 0.02%)</title><rect x="926.0" y="981" width="0.2" height="15.0" fill="rgb(235,64,42)" rx="2" ry="2" />
<text x="929.04" y="991.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="454.0" y="1109" width="0.2" height="15.0" fill="rgb(210,90,1)" rx="2" ry="2" />
<text x="456.96" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.14%)</title><rect x="946.2" y="1029" width="1.7" height="15.0" fill="rgb(221,176,22)" rx="2" ry="2" />
<text x="949.25" y="1039.5" ></text>
</g>
<g >
<title>ext4_xattr_security_get (10,101,010 samples, 0.02%)</title><rect x="1135.6" y="1029" width="0.2" height="15.0" fill="rgb(218,44,44)" rx="2" ry="2" />
<text x="1138.62" y="1039.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="193.8" y="869" width="0.2" height="15.0" fill="rgb(245,221,42)" rx="2" ry="2" />
<text x="196.75" y="879.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="450.4" y="1125" width="0.2" height="15.0" fill="rgb(207,195,4)" rx="2" ry="2" />
<text x="453.42" y="1135.5" ></text>
</g>
<g >
<title>php_execute_script (41,585,858,170 samples, 72.69%)</title><rect x="218.8" y="1173" width="857.7" height="15.0" fill="rgb(232,190,4)" rx="2" ry="2" />
<text x="221.75" y="1183.5" >php_execute_script</text>
</g>
<g >
<title>TRACE-28$MediaWiki\MediaWikiServices::salvage$384 (40,404,040 samples, 0.07%)</title><rect x="473.1" y="1141" width="0.9" height="15.0" fill="rgb(249,81,5)" rx="2" ry="2" />
<text x="476.12" y="1151.5" ></text>
</g>
<g >
<title>zif_class_alias (818,181,810 samples, 1.43%)</title><rect x="1004.2" y="1125" width="16.8" height="15.0" fill="rgb(211,143,26)" rx="2" ry="2" />
<text x="1007.17" y="1135.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="947.9" y="1013" width="0.2" height="15.0" fill="rgb(246,222,38)" rx="2" ry="2" />
<text x="950.92" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1189" width="0.8" height="15.0" fill="rgb(210,183,16)" rx="2" ry="2" />
<text x="1124.67" y="1199.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (10,101,010 samples, 0.02%)</title><rect x="518.8" y="1045" width="0.2" height="15.0" fill="rgb(205,70,45)" rx="2" ry="2" />
<text x="521.75" y="1055.5" ></text>
</g>
<g >
<title>__x64_sys_access (161,616,160 samples, 0.28%)</title><rect x="1006.0" y="997" width="3.4" height="15.0" fill="rgb(235,182,3)" rx="2" ry="2" />
<text x="1009.04" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_iterator_pos_ex (10,101,010 samples, 0.02%)</title><rect x="980.4" y="1125" width="0.2" height="15.0" fill="rgb(228,60,8)" rx="2" ry="2" />
<text x="983.42" y="1135.5" ></text>
</g>
<g >
<title>zend_array_destroy (40,404,040 samples, 0.07%)</title><rect x="219.0" y="1125" width="0.8" height="15.0" fill="rgb(209,22,24)" rx="2" ry="2" />
<text x="221.96" y="1135.5" ></text>
</g>
<g >
<title>zend_std_write_property (40,404,040 samples, 0.07%)</title><rect x="627.1" y="1109" width="0.8" height="15.0" fill="rgb(237,104,27)" rx="2" ry="2" />
<text x="630.08" y="1119.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="805" width="0.2" height="15.0" fill="rgb(223,107,50)" rx="2" ry="2" />
<text x="1127.17" y="815.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="982.9" y="885" width="0.2" height="15.0" fill="rgb(235,143,50)" rx="2" ry="2" />
<text x="985.92" y="895.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="523.8" y="853" width="0.2" height="15.0" fill="rgb(207,15,12)" rx="2" ry="2" />
<text x="526.75" y="863.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (101,010,100 samples, 0.18%)</title><rect x="438.5" y="1093" width="2.1" height="15.0" fill="rgb(229,39,2)" rx="2" ry="2" />
<text x="441.54" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="448.3" y="997" width="0.2" height="15.0" fill="rgb(228,33,4)" rx="2" ry="2" />
<text x="451.33" y="1007.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="565" width="0.2" height="15.0" fill="rgb(219,28,9)" rx="2" ry="2" />
<text x="1085.08" y="575.5" ></text>
</g>
<g >
<title>php_register_variable_ex (70,707,070 samples, 0.12%)</title><rect x="700.8" y="949" width="1.5" height="15.0" fill="rgb(240,26,35)" rx="2" ry="2" />
<text x="703.83" y="959.5" ></text>
</g>
<g >
<title>tcp_data_ready (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="821" width="0.2" height="15.0" fill="rgb(219,25,0)" rx="2" ry="2" />
<text x="1022.79" y="831.5" ></text>
</g>
<g >
<title>zif_spl_autoload_register (10,101,010 samples, 0.02%)</title><rect x="1058.5" y="1125" width="0.3" height="15.0" fill="rgb(233,91,42)" rx="2" ry="2" />
<text x="1061.54" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="523.8" y="949" width="0.2" height="15.0" fill="rgb(242,130,16)" rx="2" ry="2" />
<text x="526.75" y="959.5" ></text>
</g>
<g >
<title>walk_component (10,101,010 samples, 0.02%)</title><rect x="902.1" y="997" width="0.2" height="15.0" fill="rgb(240,214,32)" rx="2" ry="2" />
<text x="905.08" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_real_init_packed (10,101,010 samples, 0.02%)</title><rect x="346.9" y="1109" width="0.2" height="15.0" fill="rgb(228,170,53)" rx="2" ry="2" />
<text x="349.88" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="881.2" y="789" width="0.3" height="15.0" fill="rgb(253,216,19)" rx="2" ry="2" />
<text x="884.25" y="799.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="773" width="0.2" height="15.0" fill="rgb(246,225,29)" rx="2" ry="2" />
<text x="1021.96" y="783.5" ></text>
</g>
<g >
<title>getname_flags (10,101,010 samples, 0.02%)</title><rect x="776.5" y="933" width="0.2" height="15.0" fill="rgb(229,148,24)" rx="2" ry="2" />
<text x="779.46" y="943.5" ></text>
</g>
<g >
<title>sock_free_inode (10,101,010 samples, 0.02%)</title><rect x="950.4" y="917" width="0.2" height="15.0" fill="rgb(224,190,36)" rx="2" ry="2" />
<text x="953.42" y="927.5" ></text>
</g>
<g >
<title>_emalloc_256 (10,101,010 samples, 0.02%)</title><rect x="1011.2" y="981" width="0.3" height="15.0" fill="rgb(223,205,9)" rx="2" ry="2" />
<text x="1014.25" y="991.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="641.5" y="1013" width="0.2" height="15.0" fill="rgb(223,10,37)" rx="2" ry="2" />
<text x="644.46" y="1023.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (10,101,010 samples, 0.02%)</title><rect x="915.4" y="1061" width="0.2" height="15.0" fill="rgb(207,34,26)" rx="2" ry="2" />
<text x="918.42" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="443.5" y="917" width="0.3" height="15.0" fill="rgb(245,218,21)" rx="2" ry="2" />
<text x="446.54" y="927.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="946.9" y="869" width="0.2" height="15.0" fill="rgb(222,84,54)" rx="2" ry="2" />
<text x="949.88" y="879.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="800.0" y="741" width="0.2" height="15.0" fill="rgb(210,146,21)" rx="2" ry="2" />
<text x="803.00" y="751.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="850.6" y="645" width="0.2" height="15.0" fill="rgb(243,195,44)" rx="2" ry="2" />
<text x="853.62" y="655.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="142.3" y="1077" width="0.2" height="15.0" fill="rgb(243,216,52)" rx="2" ry="2" />
<text x="145.29" y="1087.5" ></text>
</g>
<g >
<title>__vfs_getxattr (101,010,100 samples, 0.18%)</title><rect x="376.2" y="933" width="2.1" height="15.0" fill="rgb(216,49,37)" rx="2" ry="2" />
<text x="379.25" y="943.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="881.2" y="549" width="0.3" height="15.0" fill="rgb(214,199,50)" rx="2" ry="2" />
<text x="884.25" y="559.5" ></text>
</g>
<g >
<title>ip_queue_xmit (181,818,180 samples, 0.32%)</title><rect x="938.3" y="757" width="3.8" height="15.0" fill="rgb(225,37,48)" rx="2" ry="2" />
<text x="941.33" y="767.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="886.7" y="1029" width="0.2" height="15.0" fill="rgb(220,162,43)" rx="2" ry="2" />
<text x="889.67" y="1039.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="1061" width="0.2" height="15.0" fill="rgb(226,170,8)" rx="2" ry="2" />
<text x="1022.79" y="1071.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="344.6" y="1125" width="0.2" height="15.0" fill="rgb(226,79,16)" rx="2" ry="2" />
<text x="347.58" y="1135.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="933" width="1.5" height="15.0" fill="rgb(213,16,26)" rx="2" ry="2" />
<text x="1005.50" y="943.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (80,808,080 samples, 0.14%)</title><rect x="916.2" y="1045" width="1.7" height="15.0" fill="rgb(244,139,41)" rx="2" ry="2" />
<text x="919.25" y="1055.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="641.7" y="885" width="0.2" height="15.0" fill="rgb(254,168,8)" rx="2" ry="2" />
<text x="644.67" y="895.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="1088.8" y="837" width="0.2" height="15.0" fill="rgb(240,103,8)" rx="2" ry="2" />
<text x="1091.75" y="847.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="433.1" y="1013" width="0.2" height="15.0" fill="rgb(211,175,2)" rx="2" ry="2" />
<text x="436.12" y="1023.5" ></text>
</g>
<g >
<title>zend_array_destroy (40,404,040 samples, 0.07%)</title><rect x="628.1" y="1109" width="0.9" height="15.0" fill="rgb(206,180,38)" rx="2" ry="2" />
<text x="631.12" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="821" width="3.3" height="15.0" fill="rgb(248,142,26)" rx="2" ry="2" />
<text x="1130.50" y="831.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="250.6" y="1125" width="0.2" height="15.0" fill="rgb(208,11,49)" rx="2" ry="2" />
<text x="253.62" y="1135.5" ></text>
</g>
<g >
<title>TRACE-211$Wikimedia\Rdbms\DatabaseDomain::decode$250 (10,101,010 samples, 0.02%)</title><rect x="349.6" y="1109" width="0.2" height="15.0" fill="rgb(209,123,21)" rx="2" ry="2" />
<text x="352.58" y="1119.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="901" width="0.2" height="15.0" fill="rgb(241,177,31)" rx="2" ry="2" />
<text x="1083.83" y="911.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1077" width="0.3" height="15.0" fill="rgb(231,222,3)" rx="2" ry="2" />
<text x="499.25" y="1087.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="776.7" y="949" width="0.4" height="15.0" fill="rgb(240,20,42)" rx="2" ry="2" />
<text x="779.67" y="959.5" ></text>
</g>
<g >
<title>TRACE-302$Wikimedia\Rdbms\LoadBalancer::beginPrimaryChanges$1792 (20,202,020 samples, 0.04%)</title><rect x="484.6" y="1141" width="0.4" height="15.0" fill="rgb(217,103,46)" rx="2" ry="2" />
<text x="487.58" y="1151.5" ></text>
</g>
<g >
<title>neigh_resolve_output (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="469" width="0.2" height="15.0" fill="rgb(245,41,2)" rx="2" ry="2" />
<text x="1132.38" y="479.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="949.0" y="997" width="0.2" height="15.0" fill="rgb(226,37,23)" rx="2" ry="2" />
<text x="951.96" y="1007.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_object_factory_get_vio_pub (10,101,010 samples, 0.02%)</title><rect x="955.2" y="1077" width="0.2" height="15.0" fill="rgb(230,187,12)" rx="2" ry="2" />
<text x="958.21" y="1087.5" ></text>
</g>
<g >
<title>do_faccessat (151,515,150 samples, 0.26%)</title><rect x="1006.0" y="981" width="3.2" height="15.0" fill="rgb(247,125,39)" rx="2" ry="2" />
<text x="1009.04" y="991.5" ></text>
</g>
<g >
<title>zend_hash_update_ind (10,101,010 samples, 0.02%)</title><rect x="702.1" y="933" width="0.2" height="15.0" fill="rgb(228,103,46)" rx="2" ry="2" />
<text x="705.08" y="943.5" ></text>
</g>
<g >
<title>PHP_MD5Update (90,909,090 samples, 0.16%)</title><rect x="1049.0" y="1109" width="1.8" height="15.0" fill="rgb(224,51,8)" rx="2" ry="2" />
<text x="1051.96" y="1119.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="315.8" y="1109" width="0.2" height="15.0" fill="rgb(205,178,15)" rx="2" ry="2" />
<text x="318.83" y="1119.5" ></text>
</g>
<g >
<title>TRACE-108${closure}$451 (50,505,050 samples, 0.09%)</title><rect x="544.6" y="1109" width="1.0" height="15.0" fill="rgb(248,199,40)" rx="2" ry="2" />
<text x="547.58" y="1119.5" ></text>
</g>
<g >
<title>br_nf_forward_finish (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="533" width="0.2" height="15.0" fill="rgb(246,29,42)" rx="2" ry="2" />
<text x="1035.92" y="543.5" ></text>
</g>
<g >
<title>__sock_release (80,808,080 samples, 0.14%)</title><rect x="1089.0" y="837" width="1.6" height="15.0" fill="rgb(225,64,6)" rx="2" ry="2" />
<text x="1091.96" y="847.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="373" width="0.2" height="15.0" fill="rgb(230,173,51)" rx="2" ry="2" />
<text x="1132.38" y="383.5" ></text>
</g>
<g >
<title>TRACE-177$MediaWiki\MediaWikiServices::getService$275 (141,414,140 samples, 0.25%)</title><rect x="311.9" y="1141" width="2.9" height="15.0" fill="rgb(218,91,25)" rx="2" ry="2" />
<text x="314.88" y="1151.5" ></text>
</g>
<g >
<title>zend_fetch_var_address_helper_SPEC_CV_UNUSED (50,505,050 samples, 0.09%)</title><rect x="978.8" y="1125" width="1.0" height="15.0" fill="rgb(205,193,45)" rx="2" ry="2" />
<text x="981.75" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="524.4" y="885" width="0.2" height="15.0" fill="rgb(249,124,11)" rx="2" ry="2" />
<text x="527.38" y="895.5" ></text>
</g>
<g >
<title>__ip_local_out (10,101,010 samples, 0.02%)</title><rect x="938.3" y="725" width="0.2" height="15.0" fill="rgb(227,0,2)" rx="2" ry="2" />
<text x="941.33" y="735.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="302.1" y="869" width="0.2" height="15.0" fill="rgb(216,164,50)" rx="2" ry="2" />
<text x="305.08" y="879.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="789.0" y="869" width="0.2" height="15.0" fill="rgb(244,22,53)" rx="2" ry="2" />
<text x="791.96" y="879.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="919.2" y="1061" width="0.2" height="15.0" fill="rgb(223,178,27)" rx="2" ry="2" />
<text x="922.17" y="1071.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="641.9" y="997" width="0.2" height="15.0" fill="rgb(254,96,24)" rx="2" ry="2" />
<text x="644.88" y="1007.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="468.8" y="1109" width="0.2" height="15.0" fill="rgb(238,167,41)" rx="2" ry="2" />
<text x="471.75" y="1119.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="675.4" y="1029" width="0.2" height="15.0" fill="rgb(229,162,8)" rx="2" ry="2" />
<text x="678.42" y="1039.5" ></text>
</g>
<g >
<title>do_faccessat (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="853" width="0.2" height="15.0" fill="rgb(208,88,5)" rx="2" ry="2" />
<text x="1021.96" y="863.5" ></text>
</g>
<g >
<title>memcpy@plt (20,202,020 samples, 0.04%)</title><rect x="143.5" y="1077" width="0.5" height="15.0" fill="rgb(212,70,13)" rx="2" ry="2" />
<text x="146.54" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="183.8" y="885" width="0.2" height="15.0" fill="rgb(253,22,30)" rx="2" ry="2" />
<text x="186.75" y="895.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (101,010,100 samples, 0.18%)</title><rect x="777.5" y="1045" width="2.1" height="15.0" fill="rgb(252,208,41)" rx="2" ry="2" />
<text x="780.50" y="1055.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="687.7" y="901" width="0.2" height="15.0" fill="rgb(238,67,54)" rx="2" ry="2" />
<text x="690.71" y="911.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="742.9" y="789" width="0.4" height="15.0" fill="rgb(209,117,20)" rx="2" ry="2" />
<text x="745.92" y="799.5" ></text>
</g>
<g >
<title>zif_array_merge (767,676,760 samples, 1.34%)</title><rect x="251.5" y="1125" width="15.8" height="15.0" fill="rgb(245,216,4)" rx="2" ry="2" />
<text x="254.46" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="731.2" y="933" width="0.3" height="15.0" fill="rgb(233,180,22)" rx="2" ry="2" />
<text x="734.25" y="943.5" ></text>
</g>
<g >
<title>__ip_finish_output (80,808,080 samples, 0.14%)</title><rect x="1185.0" y="501" width="1.7" height="15.0" fill="rgb(244,60,41)" rx="2" ry="2" />
<text x="1188.00" y="511.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="967.1" y="901" width="0.2" height="15.0" fill="rgb(221,33,28)" rx="2" ry="2" />
<text x="970.08" y="911.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="917" width="0.2" height="15.0" fill="rgb(226,149,26)" rx="2" ry="2" />
<text x="1127.17" y="927.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="984.6" y="1029" width="0.2" height="15.0" fill="rgb(225,74,51)" rx="2" ry="2" />
<text x="987.58" y="1039.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="654.2" y="853" width="0.2" height="15.0" fill="rgb(246,96,30)" rx="2" ry="2" />
<text x="657.17" y="863.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (30,303,030 samples, 0.05%)</title><rect x="309.0" y="1109" width="0.6" height="15.0" fill="rgb(214,7,12)" rx="2" ry="2" />
<text x="311.96" y="1119.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (80,808,080 samples, 0.14%)</title><rect x="939.4" y="437" width="1.6" height="15.0" fill="rgb(239,100,45)" rx="2" ry="2" />
<text x="942.38" y="447.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="450.0" y="1125" width="0.2" height="15.0" fill="rgb(222,34,39)" rx="2" ry="2" />
<text x="453.00" y="1135.5" ></text>
</g>
<g >
<title>irq_exit (20,202,020 samples, 0.04%)</title><rect x="539.4" y="1093" width="0.4" height="15.0" fill="rgb(241,3,18)" rx="2" ry="2" />
<text x="542.38" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="353.8" y="1125" width="0.2" height="15.0" fill="rgb(219,151,32)" rx="2" ry="2" />
<text x="356.75" y="1135.5" ></text>
</g>
<g >
<title>lock_sock_nested (10,101,010 samples, 0.02%)</title><rect x="1183.1" y="1125" width="0.2" height="15.0" fill="rgb(253,198,14)" rx="2" ry="2" />
<text x="1186.12" y="1135.5" ></text>
</g>
<g >
<title>nf_ct_deliver_cached_events (10,101,010 samples, 0.02%)</title><rect x="1187.9" y="933" width="0.2" height="15.0" fill="rgb(244,153,20)" rx="2" ry="2" />
<text x="1190.92" y="943.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (30,303,030 samples, 0.05%)</title><rect x="931.9" y="869" width="0.6" height="15.0" fill="rgb(230,180,51)" rx="2" ry="2" />
<text x="934.88" y="879.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="910.4" y="917" width="0.2" height="15.0" fill="rgb(231,170,43)" rx="2" ry="2" />
<text x="913.42" y="927.5" ></text>
</g>
<g >
<title>_efree (80,808,080 samples, 0.14%)</title><rect x="440.6" y="1093" width="1.7" height="15.0" fill="rgb(232,141,26)" rx="2" ry="2" />
<text x="443.62" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="926.9" y="741" width="0.2" height="15.0" fill="rgb(218,221,7)" rx="2" ry="2" />
<text x="929.88" y="751.5" ></text>
</g>
<g >
<title>__kmalloc (10,101,010 samples, 0.02%)</title><rect x="526.2" y="1013" width="0.3" height="15.0" fill="rgb(205,67,53)" rx="2" ry="2" />
<text x="529.25" y="1023.5" ></text>
</g>
<g >
<title>ZEND_INIT_DYNAMIC_CALL_SPEC_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="715.0" y="1125" width="0.2" height="15.0" fill="rgb(230,94,12)" rx="2" ry="2" />
<text x="718.00" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (30,303,030 samples, 0.05%)</title><rect x="732.9" y="949" width="0.6" height="15.0" fill="rgb(253,168,14)" rx="2" ry="2" />
<text x="735.92" y="959.5" ></text>
</g>
<g >
<title>ext4_xattr_security_get (20,202,020 samples, 0.04%)</title><rect x="956.9" y="821" width="0.4" height="15.0" fill="rgb(211,55,19)" rx="2" ry="2" />
<text x="959.88" y="831.5" ></text>
</g>
<g >
<title>execute_ex (838,383,830 samples, 1.47%)</title><rect x="732.3" y="1045" width="17.3" height="15.0" fill="rgb(246,141,46)" rx="2" ry="2" />
<text x="735.29" y="1055.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="427.1" y="853" width="0.2" height="15.0" fill="rgb(226,134,0)" rx="2" ry="2" />
<text x="430.08" y="863.5" ></text>
</g>
<g >
<title>[libmemcached.so.11.0.0] (10,101,010 samples, 0.02%)</title><rect x="1118.1" y="1189" width="0.2" height="15.0" fill="rgb(217,63,17)" rx="2" ry="2" />
<text x="1121.12" y="1199.5" ></text>
</g>
<g >
<title>cp_new_stat (10,101,010 samples, 0.02%)</title><rect x="949.4" y="997" width="0.2" height="15.0" fill="rgb(223,64,19)" rx="2" ry="2" />
<text x="952.38" y="1007.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1013" width="0.2" height="15.0" fill="rgb(239,46,42)" rx="2" ry="2" />
<text x="691.96" y="1023.5" ></text>
</g>
<g >
<title>zend_is_identical (60,606,060 samples, 0.11%)</title><rect x="980.6" y="1125" width="1.3" height="15.0" fill="rgb(228,196,9)" rx="2" ry="2" />
<text x="983.62" y="1135.5" ></text>
</g>
<g >
<title>napi_consume_skb (10,101,010 samples, 0.02%)</title><rect x="806.0" y="629" width="0.2" height="15.0" fill="rgb(209,119,15)" rx="2" ry="2" />
<text x="809.04" y="639.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="1096.2" y="1109" width="0.3" height="15.0" fill="rgb(241,170,51)" rx="2" ry="2" />
<text x="1099.25" y="1119.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="983.1" y="1093" width="0.2" height="15.0" fill="rgb(230,115,51)" rx="2" ry="2" />
<text x="986.12" y="1103.5" ></text>
</g>
<g >
<title>preg_replace_common (20,202,020 samples, 0.04%)</title><rect x="529.4" y="1125" width="0.4" height="15.0" fill="rgb(251,50,47)" rx="2" ry="2" />
<text x="532.38" y="1135.5" ></text>
</g>
<g >
<title>TRACE-4$Wikimedia\Assert\Assert::parameterElementType$162 (343,434,340 samples, 0.60%)</title><rect x="503.8" y="1141" width="7.0" height="15.0" fill="rgb(234,138,25)" rx="2" ry="2" />
<text x="506.75" y="1151.5" ></text>
</g>
<g >
<title>get_acl (181,818,180 samples, 0.32%)</title><rect x="386.5" y="901" width="3.7" height="15.0" fill="rgb(208,92,8)" rx="2" ry="2" />
<text x="389.46" y="911.5" ></text>
</g>
<g >
<title>ovl_permission (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="757" width="0.2" height="15.0" fill="rgb(207,181,12)" rx="2" ry="2" />
<text x="1021.96" y="767.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="930.2" y="837" width="0.2" height="15.0" fill="rgb(252,113,11)" rx="2" ry="2" />
<text x="933.21" y="847.5" ></text>
</g>
<g >
<title>zif_array_merge (10,101,010 samples, 0.02%)</title><rect x="519.8" y="1125" width="0.2" height="15.0" fill="rgb(228,100,41)" rx="2" ry="2" />
<text x="522.79" y="1135.5" ></text>
</g>
<g >
<title>_efree (20,202,020 samples, 0.04%)</title><rect x="894.2" y="1125" width="0.4" height="15.0" fill="rgb(222,83,37)" rx="2" ry="2" />
<text x="897.17" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="1029" width="0.2" height="15.0" fill="rgb(236,167,8)" rx="2" ry="2" />
<text x="1150.29" y="1039.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="922.3" y="885" width="0.4" height="15.0" fill="rgb(226,67,36)" rx="2" ry="2" />
<text x="925.29" y="895.5" ></text>
</g>
<g >
<title>zend_fetch_var_address_helper_SPEC_CONST_UNUSED (10,101,010 samples, 0.02%)</title><rect x="1064.2" y="1141" width="0.2" height="15.0" fill="rgb(251,0,41)" rx="2" ry="2" />
<text x="1067.17" y="1151.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (10,101,010 samples, 0.02%)</title><rect x="767.3" y="949" width="0.2" height="15.0" fill="rgb(233,160,37)" rx="2" ry="2" />
<text x="770.29" y="959.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="741" width="0.2" height="15.0" fill="rgb(225,128,41)" rx="2" ry="2" />
<text x="1170.08" y="751.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.11 (30,303,030 samples, 0.05%)</title><rect x="935.6" y="837" width="0.6" height="15.0" fill="rgb(254,4,16)" rx="2" ry="2" />
<text x="938.62" y="847.5" ></text>
</g>
<g >
<title>getname_flags (20,202,020 samples, 0.04%)</title><rect x="957.5" y="997" width="0.4" height="15.0" fill="rgb(235,44,13)" rx="2" ry="2" />
<text x="960.50" y="1007.5" ></text>
</g>
<g >
<title>zend_call_known_function (60,606,060 samples, 0.11%)</title><rect x="983.8" y="1093" width="1.2" height="15.0" fill="rgb(232,194,3)" rx="2" ry="2" />
<text x="986.75" y="1103.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="796.5" y="949" width="0.2" height="15.0" fill="rgb(222,181,47)" rx="2" ry="2" />
<text x="799.46" y="959.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="686.7" y="917" width="0.2" height="15.0" fill="rgb(228,70,5)" rx="2" ry="2" />
<text x="689.67" y="927.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="427.1" y="725" width="0.2" height="15.0" fill="rgb(248,61,25)" rx="2" ry="2" />
<text x="430.08" y="735.5" ></text>
</g>
<g >
<title>user_path_at_empty (60,606,060 samples, 0.11%)</title><rect x="526.5" y="1045" width="1.2" height="15.0" fill="rgb(207,162,38)" rx="2" ry="2" />
<text x="529.46" y="1055.5" ></text>
</g>
<g >
<title>JIT$$assign_tmp (80,808,080 samples, 0.14%)</title><rect x="220.0" y="1141" width="1.7" height="15.0" fill="rgb(212,148,47)" rx="2" ry="2" />
<text x="223.00" y="1151.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_IS_SPEC_TMPVAR_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="690.2" y="1125" width="0.4" height="15.0" fill="rgb(238,169,44)" rx="2" ry="2" />
<text x="693.21" y="1135.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="333.3" y="1093" width="0.2" height="15.0" fill="rgb(231,202,5)" rx="2" ry="2" />
<text x="336.33" y="1103.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="672.7" y="1077" width="0.2" height="15.0" fill="rgb(210,80,35)" rx="2" ry="2" />
<text x="675.71" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="339.8" y="1125" width="0.4" height="15.0" fill="rgb(228,44,53)" rx="2" ry="2" />
<text x="342.79" y="1135.5" ></text>
</g>
<g >
<title>tcp_cleanup_ulp (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="885" width="0.3" height="15.0" fill="rgb(224,224,3)" rx="2" ry="2" />
<text x="1026.54" y="895.5" ></text>
</g>
<g >
<title>zend_hash_find (171,717,170 samples, 0.30%)</title><rect x="869.4" y="949" width="3.5" height="15.0" fill="rgb(228,166,24)" rx="2" ry="2" />
<text x="872.38" y="959.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="881.2" y="853" width="0.3" height="15.0" fill="rgb(242,10,7)" rx="2" ry="2" />
<text x="884.25" y="863.5" ></text>
</g>
<g >
<title>pagecache_get_page (10,101,010 samples, 0.02%)</title><rect x="946.7" y="885" width="0.2" height="15.0" fill="rgb(222,197,36)" rx="2" ry="2" />
<text x="949.67" y="895.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="300.4" y="981" width="0.4" height="15.0" fill="rgb(217,90,38)" rx="2" ry="2" />
<text x="303.42" y="991.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="850.6" y="453" width="0.2" height="15.0" fill="rgb(209,25,9)" rx="2" ry="2" />
<text x="853.62" y="463.5" ></text>
</g>
<g >
<title>php_stream_locate_url_wrapper (10,101,010 samples, 0.02%)</title><rect x="915.0" y="1029" width="0.2" height="15.0" fill="rgb(227,189,35)" rx="2" ry="2" />
<text x="918.00" y="1039.5" ></text>
</g>
<g >
<title>ksys_write (131,313,130 samples, 0.23%)</title><rect x="1035.0" y="1013" width="2.7" height="15.0" fill="rgb(224,213,42)" rx="2" ry="2" />
<text x="1038.00" y="1023.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="672.5" y="709" width="0.2" height="15.0" fill="rgb(232,2,18)" rx="2" ry="2" />
<text x="675.50" y="719.5" ></text>
</g>
<g >
<title>pipe_poll (10,101,010 samples, 0.02%)</title><rect x="209.2" y="997" width="0.2" height="15.0" fill="rgb(243,220,38)" rx="2" ry="2" />
<text x="212.17" y="1007.5" ></text>
</g>
<g >
<title>execute_ex (131,313,130 samples, 0.23%)</title><rect x="302.3" y="933" width="2.7" height="15.0" fill="rgb(251,171,40)" rx="2" ry="2" />
<text x="305.29" y="943.5" ></text>
</g>
<g >
<title>zend_include_or_eval (70,707,070 samples, 0.12%)</title><rect x="916.5" y="917" width="1.4" height="15.0" fill="rgb(223,45,0)" rx="2" ry="2" />
<text x="919.46" y="927.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="1189.8" y="1157" width="0.2" height="15.0" fill="rgb(208,85,14)" rx="2" ry="2" />
<text x="1192.79" y="1167.5" ></text>
</g>
<g >
<title>ip_rcv (484,848,480 samples, 0.85%)</title><rect x="1152.3" y="597" width="10.0" height="15.0" fill="rgb(247,93,53)" rx="2" ry="2" />
<text x="1155.29" y="607.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1077" width="0.2" height="15.0" fill="rgb(236,95,16)" rx="2" ry="2" />
<text x="205.50" y="1087.5" ></text>
</g>
<g >
<title>zm_activate_intl (10,101,010 samples, 0.02%)</title><rect x="1105.8" y="1157" width="0.2" height="15.0" fill="rgb(224,66,52)" rx="2" ry="2" />
<text x="1108.83" y="1167.5" ></text>
</g>
<g >
<title>ipt_do_table (60,606,060 samples, 0.11%)</title><rect x="1159.2" y="485" width="1.2" height="15.0" fill="rgb(239,226,36)" rx="2" ry="2" />
<text x="1162.17" y="495.5" ></text>
</g>
<g >
<title>find_vpid (10,101,010 samples, 0.02%)</title><rect x="1189.4" y="1141" width="0.2" height="15.0" fill="rgb(251,55,49)" rx="2" ry="2" />
<text x="1192.38" y="1151.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_CV_OP_DATA_TMP_HANDLER (10,101,010 samples, 0.02%)</title><rect x="618.8" y="1125" width="0.2" height="15.0" fill="rgb(231,98,12)" rx="2" ry="2" />
<text x="621.75" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="461.0" y="1093" width="0.7" height="15.0" fill="rgb(209,199,49)" rx="2" ry="2" />
<text x="464.04" y="1103.5" ></text>
</g>
<g >
<title>_php_stream_open_wrapper_ex (60,606,060 samples, 0.11%)</title><rect x="949.4" y="1093" width="1.2" height="15.0" fill="rgb(227,175,42)" rx="2" ry="2" />
<text x="952.38" y="1103.5" ></text>
</g>
<g >
<title>php_network_connect_socket_to_host (10,101,010 samples, 0.02%)</title><rect x="930.8" y="949" width="0.2" height="15.0" fill="rgb(211,145,41)" rx="2" ry="2" />
<text x="933.83" y="959.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="805.6" y="709" width="0.2" height="15.0" fill="rgb(247,87,12)" rx="2" ry="2" />
<text x="808.62" y="719.5" ></text>
</g>
<g >
<title>do_interface_implementation (10,101,010 samples, 0.02%)</title><rect x="649.2" y="1093" width="0.2" height="15.0" fill="rgb(245,13,29)" rx="2" ry="2" />
<text x="652.17" y="1103.5" ></text>
</g>
<g >
<title>tcp_release_cb (10,101,010 samples, 0.02%)</title><rect x="1146.2" y="1093" width="0.3" height="15.0" fill="rgb(236,110,32)" rx="2" ry="2" />
<text x="1149.25" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_verify_return_slow (10,101,010 samples, 0.02%)</title><rect x="519.4" y="1125" width="0.2" height="15.0" fill="rgb(250,5,11)" rx="2" ry="2" />
<text x="522.38" y="1135.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="885" width="0.2" height="15.0" fill="rgb(211,24,23)" rx="2" ry="2" />
<text x="1171.12" y="895.5" ></text>
</g>
<g >
<title>net_rx_action (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="645" width="1.7" height="15.0" fill="rgb(240,55,42)" rx="2" ry="2" />
<text x="1028.00" y="655.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="676.2" y="997" width="0.3" height="15.0" fill="rgb(225,38,16)" rx="2" ry="2" />
<text x="679.25" y="1007.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="705.2" y="1029" width="0.2" height="15.0" fill="rgb(246,198,28)" rx="2" ry="2" />
<text x="708.21" y="1039.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="700.0" y="949" width="0.2" height="15.0" fill="rgb(243,226,16)" rx="2" ry="2" />
<text x="703.00" y="959.5" ></text>
</g>
<g >
<title>skb_defer_rx_timestamp (10,101,010 samples, 0.02%)</title><rect x="905.0" y="789" width="0.2" height="15.0" fill="rgb(205,65,10)" rx="2" ry="2" />
<text x="908.00" y="799.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1061" width="0.2" height="15.0" fill="rgb(211,104,25)" rx="2" ry="2" />
<text x="549.46" y="1071.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="457.3" y="1125" width="0.2" height="15.0" fill="rgb(237,14,12)" rx="2" ry="2" />
<text x="460.29" y="1135.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="485.8" y="1125" width="0.2" height="15.0" fill="rgb(222,92,33)" rx="2" ry="2" />
<text x="488.83" y="1135.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="209.4" y="997" width="0.2" height="15.0" fill="rgb(217,114,7)" rx="2" ry="2" />
<text x="212.38" y="1007.5" ></text>
</g>
<g >
<title>auditd_test_task (30,303,030 samples, 0.05%)</title><rect x="432.5" y="1013" width="0.6" height="15.0" fill="rgb(237,111,37)" rx="2" ry="2" />
<text x="435.50" y="1023.5" ></text>
</g>
<g >
<title>execute_ex (60,606,060 samples, 0.11%)</title><rect x="303.5" y="805" width="1.3" height="15.0" fill="rgb(245,59,43)" rx="2" ry="2" />
<text x="306.54" y="815.5" ></text>
</g>
<g >
<title>ip_route_input_slow (10,101,010 samples, 0.02%)</title><rect x="1187.1" y="517" width="0.2" height="15.0" fill="rgb(238,10,8)" rx="2" ry="2" />
<text x="1190.08" y="527.5" ></text>
</g>
<g >
<title>__sys_socket (90,909,090 samples, 0.16%)</title><rect x="1119.0" y="1141" width="1.8" height="15.0" fill="rgb(209,10,29)" rx="2" ry="2" />
<text x="1121.96" y="1151.5" ></text>
</g>
<g >
<title>persistent_stream_open_function (10,101,010 samples, 0.02%)</title><rect x="696.7" y="1109" width="0.2" height="15.0" fill="rgb(227,159,52)" rx="2" ry="2" />
<text x="699.67" y="1119.5" ></text>
</g>
<g >
<title>ovl_inode_upper (10,101,010 samples, 0.02%)</title><rect x="526.7" y="949" width="0.2" height="15.0" fill="rgb(223,60,43)" rx="2" ry="2" />
<text x="529.67" y="959.5" ></text>
</g>
<g >
<title>sock_poll (10,101,010 samples, 0.02%)</title><rect x="930.0" y="853" width="0.2" height="15.0" fill="rgb(228,101,43)" rx="2" ry="2" />
<text x="933.00" y="863.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="686.0" y="1029" width="0.5" height="15.0" fill="rgb(253,26,50)" rx="2" ry="2" />
<text x="689.04" y="1039.5" ></text>
</g>
<g >
<title>zend_call_known_function (5,484,848,430 samples, 9.59%)</title><rect x="770.0" y="1061" width="113.1" height="15.0" fill="rgb(220,220,52)" rx="2" ry="2" />
<text x="773.00" y="1071.5" >zend_call_kno..</text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="390.2" y="869" width="0.2" height="15.0" fill="rgb(228,122,46)" rx="2" ry="2" />
<text x="393.21" y="879.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="454.0" y="1093" width="0.2" height="15.0" fill="rgb(240,4,36)" rx="2" ry="2" />
<text x="456.96" y="1103.5" ></text>
</g>
<g >
<title>destroy_op_array (20,202,020 samples, 0.04%)</title><rect x="983.3" y="1061" width="0.5" height="15.0" fill="rgb(245,215,16)" rx="2" ry="2" />
<text x="986.33" y="1071.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="502.3" y="1093" width="0.2" height="15.0" fill="rgb(240,172,46)" rx="2" ry="2" />
<text x="505.29" y="1103.5" ></text>
</g>
<g >
<title>apparmor_socket_recvmsg (10,101,010 samples, 0.02%)</title><rect x="1176.2" y="1125" width="0.3" height="15.0" fill="rgb(208,214,21)" rx="2" ry="2" />
<text x="1179.25" y="1135.5" ></text>
</g>
<g >
<title>__inet_aton_exact (10,101,010 samples, 0.02%)</title><rect x="32.1" y="1173" width="0.2" height="15.0" fill="rgb(253,205,34)" rx="2" ry="2" />
<text x="35.08" y="1183.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="535.2" y="997" width="0.2" height="15.0" fill="rgb(251,126,40)" rx="2" ry="2" />
<text x="538.21" y="1007.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="211.0" y="1061" width="0.5" height="15.0" fill="rgb(242,157,48)" rx="2" ry="2" />
<text x="214.04" y="1071.5" ></text>
</g>
<g >
<title>set_root (20,202,020 samples, 0.04%)</title><rect x="410.6" y="949" width="0.4" height="15.0" fill="rgb(251,71,48)" rx="2" ry="2" />
<text x="413.62" y="959.5" ></text>
</g>
<g >
<title>TRACE-139$ExtensionRegistry::exportExtractedData$488 (70,707,070 samples, 0.12%)</title><rect x="246.7" y="1141" width="1.4" height="15.0" fill="rgb(253,168,46)" rx="2" ry="2" />
<text x="249.67" y="1151.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="965" width="0.2" height="15.0" fill="rgb(245,216,33)" rx="2" ry="2" />
<text x="1127.17" y="975.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="530.8" y="1093" width="0.2" height="15.0" fill="rgb(214,113,51)" rx="2" ry="2" />
<text x="533.83" y="1103.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="982.9" y="821" width="0.2" height="15.0" fill="rgb(250,65,0)" rx="2" ry="2" />
<text x="985.92" y="831.5" ></text>
</g>
<g >
<title>zend_duplicate_internal_function.isra.0 (10,101,010 samples, 0.02%)</title><rect x="773.3" y="965" width="0.2" height="15.0" fill="rgb(252,81,20)" rx="2" ry="2" />
<text x="776.33" y="975.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (70,707,070 samples, 0.12%)</title><rect x="766.9" y="1077" width="1.4" height="15.0" fill="rgb(217,185,6)" rx="2" ry="2" />
<text x="769.88" y="1087.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="732.9" y="837" width="0.2" height="15.0" fill="rgb(245,161,12)" rx="2" ry="2" />
<text x="735.92" y="847.5" ></text>
</g>
<g >
<title>mysqlnd_query_read_result_set_header (121,212,120 samples, 0.21%)</title><rect x="1052.1" y="1093" width="2.5" height="15.0" fill="rgb(233,3,11)" rx="2" ry="2" />
<text x="1055.08" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (30,303,030 samples, 0.05%)</title><rect x="1067.5" y="1141" width="0.6" height="15.0" fill="rgb(205,115,0)" rx="2" ry="2" />
<text x="1070.50" y="1151.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="789.0" y="725" width="0.2" height="15.0" fill="rgb(229,154,40)" rx="2" ry="2" />
<text x="791.96" y="735.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="850.6" y="517" width="0.2" height="15.0" fill="rgb(231,89,41)" rx="2" ry="2" />
<text x="853.62" y="527.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="917" width="0.2" height="15.0" fill="rgb(236,205,53)" rx="2" ry="2" />
<text x="1117.17" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="1132.7" y="1173" width="0.4" height="15.0" fill="rgb(247,146,23)" rx="2" ry="2" />
<text x="1135.71" y="1183.5" ></text>
</g>
<g >
<title>phar_file_get_contents (202,020,200 samples, 0.35%)</title><rect x="945.2" y="1125" width="4.2" height="15.0" fill="rgb(231,174,35)" rx="2" ry="2" />
<text x="948.21" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="998.8" y="901" width="0.2" height="15.0" fill="rgb(238,74,15)" rx="2" ry="2" />
<text x="1001.75" y="911.5" ></text>
</g>
<g >
<title>skb_release_all (10,101,010 samples, 0.02%)</title><rect x="806.0" y="613" width="0.2" height="15.0" fill="rgb(222,30,51)" rx="2" ry="2" />
<text x="809.04" y="623.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="180.0" y="981" width="0.2" height="15.0" fill="rgb(213,137,16)" rx="2" ry="2" />
<text x="183.00" y="991.5" ></text>
</g>
<g >
<title>zend_objects_store_del (20,202,020 samples, 0.04%)</title><rect x="983.3" y="1093" width="0.5" height="15.0" fill="rgb(209,222,23)" rx="2" ry="2" />
<text x="986.33" y="1103.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1125" width="0.3" height="15.0" fill="rgb(251,58,9)" rx="2" ry="2" />
<text x="446.54" y="1135.5" ></text>
</g>
<g >
<title>__x64_sys_read (30,303,030 samples, 0.05%)</title><rect x="207.1" y="1109" width="0.6" height="15.0" fill="rgb(254,91,1)" rx="2" ry="2" />
<text x="210.08" y="1119.5" ></text>
</g>
<g >
<title>mutex_unlock (10,101,010 samples, 0.02%)</title><rect x="1037.3" y="933" width="0.2" height="15.0" fill="rgb(227,88,14)" rx="2" ry="2" />
<text x="1040.29" y="943.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (30,303,030 samples, 0.05%)</title><rect x="1102.7" y="1157" width="0.6" height="15.0" fill="rgb(251,77,12)" rx="2" ry="2" />
<text x="1105.71" y="1167.5" ></text>
</g>
<g >
<title>zend_zval_get_legacy_type (10,101,010 samples, 0.02%)</title><rect x="509.0" y="1125" width="0.2" height="15.0" fill="rgb(232,196,46)" rx="2" ry="2" />
<text x="511.96" y="1135.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="930.2" y="853" width="0.2" height="15.0" fill="rgb(247,118,35)" rx="2" ry="2" />
<text x="933.21" y="863.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="471.7" y="917" width="0.2" height="15.0" fill="rgb(231,207,36)" rx="2" ry="2" />
<text x="474.67" y="927.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1082.9" y="1045" width="0.2" height="15.0" fill="rgb(212,205,34)" rx="2" ry="2" />
<text x="1085.92" y="1055.5" ></text>
</g>
<g >
<title>zend_rebuild_symbol_table (60,606,060 samples, 0.11%)</title><rect x="846.7" y="885" width="1.2" height="15.0" fill="rgb(229,191,30)" rx="2" ry="2" />
<text x="849.67" y="895.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1125" width="0.2" height="15.0" fill="rgb(247,53,43)" rx="2" ry="2" />
<text x="26.96" y="1135.5" ></text>
</g>
<g >
<title>JIT$$assign_tmp (10,101,010 samples, 0.02%)</title><rect x="1081.0" y="1077" width="0.2" height="15.0" fill="rgb(219,6,39)" rx="2" ry="2" />
<text x="1084.04" y="1087.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1149.4" y="933" width="0.2" height="15.0" fill="rgb(213,193,25)" rx="2" ry="2" />
<text x="1152.38" y="943.5" ></text>
</g>
<g >
<title>zif_date_create_from_format (20,202,020 samples, 0.04%)</title><rect x="1021.0" y="1125" width="0.5" height="15.0" fill="rgb(233,54,16)" rx="2" ry="2" />
<text x="1024.04" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="997" width="0.2" height="15.0" fill="rgb(230,208,4)" rx="2" ry="2" />
<text x="1083.83" y="1007.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_get_stream_pub (10,101,010 samples, 0.02%)</title><rect x="930.4" y="1029" width="0.2" height="15.0" fill="rgb(253,21,37)" rx="2" ry="2" />
<text x="933.42" y="1039.5" ></text>
</g>
<g >
<title>ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="469.2" y="1125" width="0.2" height="15.0" fill="rgb(209,41,16)" rx="2" ry="2" />
<text x="472.17" y="1135.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="675.8" y="997" width="0.2" height="15.0" fill="rgb(218,172,31)" rx="2" ry="2" />
<text x="678.83" y="1007.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="737.9" y="965" width="0.2" height="15.0" fill="rgb(226,222,34)" rx="2" ry="2" />
<text x="740.92" y="975.5" ></text>
</g>
<g >
<title>__schedule (20,202,020 samples, 0.04%)</title><rect x="926.5" y="741" width="0.4" height="15.0" fill="rgb(211,47,32)" rx="2" ry="2" />
<text x="929.46" y="751.5" ></text>
</g>
<g >
<title>__vfs_write (30,303,030 samples, 0.05%)</title><rect x="1107.9" y="1077" width="0.6" height="15.0" fill="rgb(231,182,10)" rx="2" ry="2" />
<text x="1110.92" y="1087.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="1030.8" y="997" width="0.2" height="15.0" fill="rgb(246,70,22)" rx="2" ry="2" />
<text x="1033.83" y="1007.5" ></text>
</g>
<g >
<title>alloc_inode (10,101,010 samples, 0.02%)</title><rect x="931.2" y="805" width="0.3" height="15.0" fill="rgb(244,66,26)" rx="2" ry="2" />
<text x="934.25" y="815.5" ></text>
</g>
<g >
<title>TRACE-9$AutoLoader::autoload$119 (10,101,010 samples, 0.02%)</title><rect x="851.5" y="917" width="0.2" height="15.0" fill="rgb(215,136,31)" rx="2" ry="2" />
<text x="854.46" y="927.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="304.2" y="661" width="0.2" height="15.0" fill="rgb(239,72,54)" rx="2" ry="2" />
<text x="307.17" y="671.5" ></text>
</g>
<g >
<title>integrity_inode_free (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="741" width="0.3" height="15.0" fill="rgb(225,206,22)" rx="2" ry="2" />
<text x="1091.54" y="751.5" ></text>
</g>
<g >
<title>zend_post_deactivate_modules (20,202,020 samples, 0.04%)</title><rect x="1101.9" y="1157" width="0.4" height="15.0" fill="rgb(229,197,33)" rx="2" ry="2" />
<text x="1104.88" y="1167.5" ></text>
</g>
<g >
<title>zend_fetch_class (30,303,030 samples, 0.05%)</title><rect x="767.3" y="1013" width="0.6" height="15.0" fill="rgb(227,98,46)" rx="2" ry="2" />
<text x="770.29" y="1023.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (10,101,010 samples, 0.02%)</title><rect x="686.5" y="997" width="0.2" height="15.0" fill="rgb(212,175,12)" rx="2" ry="2" />
<text x="689.46" y="1007.5" ></text>
</g>
<g >
<title>php_stat (20,202,020 samples, 0.04%)</title><rect x="914.8" y="1045" width="0.4" height="15.0" fill="rgb(250,67,15)" rx="2" ry="2" />
<text x="917.79" y="1055.5" ></text>
</g>
<g >
<title>__ksize (10,101,010 samples, 0.02%)</title><rect x="942.1" y="741" width="0.2" height="15.0" fill="rgb(242,110,1)" rx="2" ry="2" />
<text x="945.08" y="751.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="245.4" y="1109" width="0.2" height="15.0" fill="rgb(206,86,15)" rx="2" ry="2" />
<text x="248.42" y="1119.5" ></text>
</g>
<g >
<title>nf_ct_seq_offset (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="805" width="0.2" height="15.0" fill="rgb(222,35,39)" rx="2" ry="2" />
<text x="1171.12" y="815.5" ></text>
</g>
<g >
<title>zif_array_key_exists (10,101,010 samples, 0.02%)</title><rect x="998.3" y="1125" width="0.2" height="15.0" fill="rgb(209,10,9)" rx="2" ry="2" />
<text x="1001.33" y="1135.5" ></text>
</g>
<g >
<title>php_pcre2_jit_match (10,101,010 samples, 0.02%)</title><rect x="1055.8" y="1061" width="0.2" height="15.0" fill="rgb(222,115,51)" rx="2" ry="2" />
<text x="1058.83" y="1071.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="1004.6" y="1045" width="0.2" height="15.0" fill="rgb(245,38,19)" rx="2" ry="2" />
<text x="1007.58" y="1055.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="378.5" y="741" width="0.3" height="15.0" fill="rgb(218,197,34)" rx="2" ry="2" />
<text x="381.54" y="751.5" ></text>
</g>
<g >
<title>TRACE-467$MemcachedPeclBagOStuff::doGetMulti$334 (30,303,030 samples, 0.05%)</title><rect x="529.8" y="1141" width="0.6" height="15.0" fill="rgb(245,48,41)" rx="2" ry="2" />
<text x="532.79" y="1151.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="796.7" y="933" width="0.2" height="15.0" fill="rgb(239,66,26)" rx="2" ry="2" />
<text x="799.67" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="597" width="1.7" height="15.0" fill="rgb(211,147,32)" rx="2" ry="2" />
<text x="1028.00" y="607.5" ></text>
</g>
<g >
<title>ip_queue_xmit (202,020,200 samples, 0.35%)</title><rect x="1184.0" y="1045" width="4.1" height="15.0" fill="rgb(228,51,4)" rx="2" ry="2" />
<text x="1186.96" y="1055.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (818,181,810 samples, 1.43%)</title><rect x="834.6" y="917" width="16.9" height="15.0" fill="rgb(218,154,54)" rx="2" ry="2" />
<text x="837.58" y="927.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1014.8" y="1045" width="0.2" height="15.0" fill="rgb(240,201,33)" rx="2" ry="2" />
<text x="1017.79" y="1055.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (10,101,010 samples, 0.02%)</title><rect x="1069.4" y="1141" width="0.2" height="15.0" fill="rgb(226,77,51)" rx="2" ry="2" />
<text x="1072.38" y="1151.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="684.6" y="901" width="0.4" height="15.0" fill="rgb(207,99,12)" rx="2" ry="2" />
<text x="687.58" y="911.5" ></text>
</g>
<g >
<title>ovl_inode_upper (10,101,010 samples, 0.02%)</title><rect x="901.0" y="949" width="0.2" height="15.0" fill="rgb(207,67,53)" rx="2" ry="2" />
<text x="904.04" y="959.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="183.8" y="981" width="0.2" height="15.0" fill="rgb(244,200,51)" rx="2" ry="2" />
<text x="186.75" y="991.5" ></text>
</g>
<g >
<title>zend_jit_leave_nested_func_helper (10,101,010 samples, 0.02%)</title><rect x="246.2" y="1125" width="0.3" height="15.0" fill="rgb(250,127,33)" rx="2" ry="2" />
<text x="249.25" y="1135.5" ></text>
</g>
<g >
<title>inode_init_always (10,101,010 samples, 0.02%)</title><rect x="1119.4" y="1061" width="0.2" height="15.0" fill="rgb(250,98,13)" rx="2" ry="2" />
<text x="1122.38" y="1071.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="886.5" y="1093" width="0.2" height="15.0" fill="rgb(207,119,26)" rx="2" ry="2" />
<text x="889.46" y="1103.5" ></text>
</g>
<g >
<title>start_xmit (60,606,060 samples, 0.11%)</title><rect x="1127.9" y="405" width="1.3" height="15.0" fill="rgb(227,178,29)" rx="2" ry="2" />
<text x="1130.92" y="415.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="502.5" y="1125" width="0.2" height="15.0" fill="rgb(247,171,15)" rx="2" ry="2" />
<text x="505.50" y="1135.5" ></text>
</g>
<g >
<title>TRACE-403$Monolog\Handler\StreamHandler::close$90 (30,303,030 samples, 0.05%)</title><rect x="1085.8" y="1077" width="0.7" height="15.0" fill="rgb(229,149,3)" rx="2" ry="2" />
<text x="1088.83" y="1087.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="850.6" y="677" width="0.2" height="15.0" fill="rgb(211,83,7)" rx="2" ry="2" />
<text x="853.62" y="687.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (20,202,020 samples, 0.04%)</title><rect x="1120.4" y="1061" width="0.4" height="15.0" fill="rgb(227,41,5)" rx="2" ry="2" />
<text x="1123.42" y="1071.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1141.7" y="1141" width="0.2" height="15.0" fill="rgb(218,82,32)" rx="2" ry="2" />
<text x="1144.67" y="1151.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="30.2" y="741" width="0.2" height="15.0" fill="rgb(209,10,28)" rx="2" ry="2" />
<text x="33.21" y="751.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (10,101,010 samples, 0.02%)</title><rect x="886.7" y="1077" width="0.2" height="15.0" fill="rgb(222,43,48)" rx="2" ry="2" />
<text x="889.67" y="1087.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="805.6" y="821" width="0.2" height="15.0" fill="rgb(212,112,37)" rx="2" ry="2" />
<text x="808.62" y="831.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (30,303,030 samples, 0.05%)</title><rect x="983.1" y="1109" width="0.7" height="15.0" fill="rgb(220,10,44)" rx="2" ry="2" />
<text x="986.12" y="1119.5" ></text>
</g>
<g >
<title>user_path_at_empty (10,101,010 samples, 0.02%)</title><rect x="740.0" y="821" width="0.2" height="15.0" fill="rgb(234,129,46)" rx="2" ry="2" />
<text x="743.00" y="831.5" ></text>
</g>
<g >
<title>zend_create_closure (60,606,060 samples, 0.11%)</title><rect x="474.2" y="1109" width="1.2" height="15.0" fill="rgb(207,66,19)" rx="2" ry="2" />
<text x="477.17" y="1119.5" ></text>
</g>
<g >
<title>zend_std_get_method (212,121,210 samples, 0.37%)</title><rect x="990.2" y="1125" width="4.4" height="15.0" fill="rgb(247,43,33)" rx="2" ry="2" />
<text x="993.21" y="1135.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="177.9" y="1045" width="0.4" height="15.0" fill="rgb(232,74,8)" rx="2" ry="2" />
<text x="180.92" y="1055.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="687.9" y="965" width="0.2" height="15.0" fill="rgb(233,125,43)" rx="2" ry="2" />
<text x="690.92" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (292,929,290 samples, 0.51%)</title><rect x="1182.9" y="1189" width="6.1" height="15.0" fill="rgb(240,69,49)" rx="2" ry="2" />
<text x="1185.92" y="1199.5" ></text>
</g>
<g >
<title>sock_alloc_file (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1093" width="0.2" height="15.0" fill="rgb(248,182,7)" rx="2" ry="2" />
<text x="207.17" y="1103.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1093" width="0.2" height="15.0" fill="rgb(206,132,41)" rx="2" ry="2" />
<text x="693.62" y="1103.5" ></text>
</g>
<g >
<title>inode_permission (50,505,050 samples, 0.09%)</title><rect x="900.4" y="981" width="1.1" height="15.0" fill="rgb(251,53,23)" rx="2" ry="2" />
<text x="903.42" y="991.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="190.6" y="981" width="0.2" height="15.0" fill="rgb(227,222,54)" rx="2" ry="2" />
<text x="193.62" y="991.5" ></text>
</g>
<g >
<title>tcp_in_window (30,303,030 samples, 0.05%)</title><rect x="1163.1" y="661" width="0.7" height="15.0" fill="rgb(235,60,13)" rx="2" ry="2" />
<text x="1166.12" y="671.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="687.7" y="917" width="0.2" height="15.0" fill="rgb(233,129,45)" rx="2" ry="2" />
<text x="690.71" y="927.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1120.8" y="1141" width="0.2" height="15.0" fill="rgb(210,150,13)" rx="2" ry="2" />
<text x="1123.83" y="1151.5" ></text>
</g>
<g >
<title>tcp_data_ready (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="773" width="0.2" height="15.0" fill="rgb(239,68,2)" rx="2" ry="2" />
<text x="1150.29" y="783.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (10,101,010 samples, 0.02%)</title><rect x="1135.8" y="1093" width="0.2" height="15.0" fill="rgb(235,111,12)" rx="2" ry="2" />
<text x="1138.83" y="1103.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="684.0" y="933" width="0.2" height="15.0" fill="rgb(228,125,23)" rx="2" ry="2" />
<text x="686.96" y="943.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="782.3" y="869" width="0.2" height="15.0" fill="rgb(218,93,20)" rx="2" ry="2" />
<text x="785.29" y="879.5" ></text>
</g>
<g >
<title>zend_try_early_bind (10,101,010 samples, 0.02%)</title><rect x="789.8" y="933" width="0.2" height="15.0" fill="rgb(226,85,46)" rx="2" ry="2" />
<text x="792.79" y="943.5" ></text>
</g>
<g >
<title>body (90,909,090 samples, 0.16%)</title><rect x="1049.0" y="1093" width="1.8" height="15.0" fill="rgb(212,59,1)" rx="2" ry="2" />
<text x="1051.96" y="1103.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1100.8" y="1141" width="0.2" height="15.0" fill="rgb(246,3,6)" rx="2" ry="2" />
<text x="1103.83" y="1151.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_object_factory_get_pfc_pub (10,101,010 samples, 0.02%)</title><rect x="955.4" y="1093" width="0.2" height="15.0" fill="rgb(240,198,1)" rx="2" ry="2" />
<text x="958.42" y="1103.5" ></text>
</g>
<g >
<title>do_faccessat (20,202,020 samples, 0.04%)</title><rect x="797.1" y="853" width="0.4" height="15.0" fill="rgb(249,170,26)" rx="2" ry="2" />
<text x="800.08" y="863.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="834.0" y="853" width="0.4" height="15.0" fill="rgb(217,104,47)" rx="2" ry="2" />
<text x="836.96" y="863.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (6,272,727,210 samples, 10.96%)</title><rect x="757.1" y="1125" width="129.4" height="15.0" fill="rgb(234,14,39)" rx="2" ry="2" />
<text x="760.08" y="1135.5" >ZEND_NEW_SPEC_CO..</text>
</g>
<g >
<title>alloc_pages_current (10,101,010 samples, 0.02%)</title><rect x="805.2" y="693" width="0.2" height="15.0" fill="rgb(205,32,21)" rx="2" ry="2" />
<text x="808.21" y="703.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (70,707,070 samples, 0.12%)</title><rect x="1185.0" y="453" width="1.5" height="15.0" fill="rgb(254,6,37)" rx="2" ry="2" />
<text x="1188.00" y="463.5" ></text>
</g>
<g >
<title>_php_stream_xport_create (636,363,630 samples, 1.11%)</title><rect x="930.6" y="1013" width="13.2" height="15.0" fill="rgb(246,20,37)" rx="2" ry="2" />
<text x="933.62" y="1023.5" ></text>
</g>
<g >
<title>zif_define (10,101,010 samples, 0.02%)</title><rect x="516.0" y="1125" width="0.2" height="15.0" fill="rgb(240,106,6)" rx="2" ry="2" />
<text x="519.04" y="1135.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="837" width="0.2" height="15.0" fill="rgb(243,66,13)" rx="2" ry="2" />
<text x="1022.79" y="847.5" ></text>
</g>
<g >
<title>zend_fetch_class (60,606,060 samples, 0.11%)</title><rect x="683.8" y="1077" width="1.2" height="15.0" fill="rgb(246,90,5)" rx="2" ry="2" />
<text x="686.75" y="1087.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="997" width="0.2" height="15.0" fill="rgb(243,199,27)" rx="2" ry="2" />
<text x="1118.62" y="1007.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="933" width="3.3" height="15.0" fill="rgb(246,202,42)" rx="2" ry="2" />
<text x="1130.50" y="943.5" ></text>
</g>
<g >
<title>vfs_write (70,707,070 samples, 0.12%)</title><rect x="213.3" y="1013" width="1.5" height="15.0" fill="rgb(212,123,1)" rx="2" ry="2" />
<text x="216.33" y="1023.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (50,505,050 samples, 0.09%)</title><rect x="349.8" y="1077" width="1.0" height="15.0" fill="rgb(247,49,25)" rx="2" ry="2" />
<text x="352.79" y="1087.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="244.0" y="917" width="0.2" height="15.0" fill="rgb(234,41,52)" rx="2" ry="2" />
<text x="246.96" y="927.5" ></text>
</g>
<g >
<title>TRACE-168$ConfiguredReadOnlyMode::getReason$43 (30,303,030 samples, 0.05%)</title><rect x="295.4" y="1141" width="0.6" height="15.0" fill="rgb(231,45,17)" rx="2" ry="2" />
<text x="298.42" y="1151.5" ></text>
</g>
<g >
<title>preg_replace_func_impl (30,303,030 samples, 0.05%)</title><rect x="1055.4" y="1109" width="0.6" height="15.0" fill="rgb(222,129,37)" rx="2" ry="2" />
<text x="1058.42" y="1119.5" ></text>
</g>
<g >
<title>spl_perform_autoload (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="917" width="1.5" height="15.0" fill="rgb(239,149,21)" rx="2" ry="2" />
<text x="1005.50" y="927.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="142.3" y="1029" width="0.2" height="15.0" fill="rgb(237,29,42)" rx="2" ry="2" />
<text x="145.29" y="1039.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="554.8" y="1141" width="0.2" height="15.0" fill="rgb(228,182,10)" rx="2" ry="2" />
<text x="557.79" y="1151.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="1061.9" y="1077" width="0.2" height="15.0" fill="rgb(206,169,19)" rx="2" ry="2" />
<text x="1064.88" y="1087.5" ></text>
</g>
<g >
<title>ret_from_intr (20,202,020 samples, 0.04%)</title><rect x="641.7" y="1077" width="0.4" height="15.0" fill="rgb(253,145,3)" rx="2" ry="2" />
<text x="644.67" y="1087.5" ></text>
</g>
<g >
<title>virtqueue_add_outbuf (30,303,030 samples, 0.05%)</title><rect x="1152.9" y="357" width="0.6" height="15.0" fill="rgb(210,153,38)" rx="2" ry="2" />
<text x="1155.92" y="367.5" ></text>
</g>
<g >
<title>php_stream_locate_url_wrapper (10,101,010 samples, 0.02%)</title><rect x="1010.6" y="1045" width="0.2" height="15.0" fill="rgb(226,120,39)" rx="2" ry="2" />
<text x="1013.62" y="1055.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (10,101,010 samples, 0.02%)</title><rect x="929.8" y="837" width="0.2" height="15.0" fill="rgb(206,13,1)" rx="2" ry="2" />
<text x="932.79" y="847.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="881.2" y="597" width="0.3" height="15.0" fill="rgb(212,4,14)" rx="2" ry="2" />
<text x="884.25" y="607.5" ></text>
</g>
<g >
<title>zend_hash_index_find (20,202,020 samples, 0.04%)</title><rect x="196.0" y="1093" width="0.5" height="15.0" fill="rgb(253,112,28)" rx="2" ry="2" />
<text x="199.04" y="1103.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (30,303,030 samples, 0.05%)</title><rect x="1120.2" y="1109" width="0.6" height="15.0" fill="rgb(244,64,25)" rx="2" ry="2" />
<text x="1123.21" y="1119.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="645" width="0.2" height="15.0" fill="rgb(248,222,46)" rx="2" ry="2" />
<text x="1085.08" y="655.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="524.2" y="853" width="0.2" height="15.0" fill="rgb(243,187,47)" rx="2" ry="2" />
<text x="527.17" y="863.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="629" width="0.2" height="15.0" fill="rgb(206,123,12)" rx="2" ry="2" />
<text x="1085.08" y="639.5" ></text>
</g>
<g >
<title>php_output_stack_pop (10,101,010 samples, 0.02%)</title><rect x="1054.8" y="1093" width="0.2" height="15.0" fill="rgb(245,46,40)" rx="2" ry="2" />
<text x="1057.79" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="300.4" y="949" width="0.2" height="15.0" fill="rgb(236,106,54)" rx="2" ry="2" />
<text x="303.42" y="959.5" ></text>
</g>
<g >
<title>ip_local_out (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="469" width="0.3" height="15.0" fill="rgb(238,120,22)" rx="2" ry="2" />
<text x="1134.25" y="479.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="535.8" y="1125" width="0.2" height="15.0" fill="rgb(229,130,29)" rx="2" ry="2" />
<text x="538.83" y="1135.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (10,101,010 samples, 0.02%)</title><rect x="921.9" y="885" width="0.2" height="15.0" fill="rgb(226,62,28)" rx="2" ry="2" />
<text x="924.88" y="895.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="283.8" y="869" width="0.2" height="15.0" fill="rgb(238,62,34)" rx="2" ry="2" />
<text x="286.75" y="879.5" ></text>
</g>
<g >
<title>ZEND_BEGIN_SILENCE_SPEC_HANDLER (40,404,040 samples, 0.07%)</title><rect x="359.4" y="1125" width="0.8" height="15.0" fill="rgb(230,200,40)" rx="2" ry="2" />
<text x="362.38" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_UNSET_SPEC_VAR_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="448.1" y="1029" width="0.4" height="15.0" fill="rgb(214,139,51)" rx="2" ry="2" />
<text x="451.12" y="1039.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="1142.1" y="1125" width="0.2" height="15.0" fill="rgb(214,198,20)" rx="2" ry="2" />
<text x="1145.08" y="1135.5" ></text>
</g>
<g >
<title>ip_output (131,313,130 samples, 0.23%)</title><rect x="939.4" y="709" width="2.7" height="15.0" fill="rgb(252,66,5)" rx="2" ry="2" />
<text x="942.38" y="719.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="965" width="0.2" height="15.0" fill="rgb(205,106,32)" rx="2" ry="2" />
<text x="1150.29" y="975.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1061" width="0.3" height="15.0" fill="rgb(214,156,45)" rx="2" ry="2" />
<text x="489.25" y="1071.5" ></text>
</g>
<g >
<title>mod_timer (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="693" width="0.2" height="15.0" fill="rgb(253,148,38)" rx="2" ry="2" />
<text x="1091.96" y="703.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="678.8" y="885" width="0.2" height="15.0" fill="rgb(213,56,15)" rx="2" ry="2" />
<text x="681.75" y="895.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="533.8" y="837" width="0.2" height="15.0" fill="rgb(205,58,3)" rx="2" ry="2" />
<text x="536.75" y="847.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="443.3" y="917" width="0.2" height="15.0" fill="rgb(229,18,31)" rx="2" ry="2" />
<text x="446.33" y="927.5" ></text>
</g>
<g >
<title>zval_get_long_func (10,101,010 samples, 0.02%)</title><rect x="298.8" y="1109" width="0.2" height="15.0" fill="rgb(223,72,40)" rx="2" ry="2" />
<text x="301.75" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="856.9" y="821" width="0.2" height="15.0" fill="rgb(241,126,29)" rx="2" ry="2" />
<text x="859.88" y="831.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="739.8" y="805" width="0.2" height="15.0" fill="rgb(243,217,40)" rx="2" ry="2" />
<text x="742.79" y="815.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="390.2" y="693" width="0.2" height="15.0" fill="rgb(235,192,45)" rx="2" ry="2" />
<text x="393.21" y="703.5" ></text>
</g>
<g >
<title>tcp_send_ack (10,101,010 samples, 0.02%)</title><rect x="244.0" y="853" width="0.2" height="15.0" fill="rgb(219,148,10)" rx="2" ry="2" />
<text x="246.96" y="863.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (10,101,010 samples, 0.02%)</title><rect x="732.5" y="1013" width="0.2" height="15.0" fill="rgb(209,211,32)" rx="2" ry="2" />
<text x="735.50" y="1023.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (60,606,060 samples, 0.11%)</title><rect x="526.5" y="997" width="1.2" height="15.0" fill="rgb(218,46,46)" rx="2" ry="2" />
<text x="529.46" y="1007.5" ></text>
</g>
<g >
<title>sk_reset_timer (10,101,010 samples, 0.02%)</title><rect x="641.7" y="805" width="0.2" height="15.0" fill="rgb(234,142,13)" rx="2" ry="2" />
<text x="644.67" y="815.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (20,202,020 samples, 0.04%)</title><rect x="768.3" y="1077" width="0.5" height="15.0" fill="rgb(241,217,36)" rx="2" ry="2" />
<text x="771.33" y="1087.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="687.3" y="949" width="0.2" height="15.0" fill="rgb(226,70,38)" rx="2" ry="2" />
<text x="690.29" y="959.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.62 (10,101,010 samples, 0.02%)</title><rect x="244.0" y="805" width="0.2" height="15.0" fill="rgb(230,203,10)" rx="2" ry="2" />
<text x="246.96" y="815.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1086.2" y="965" width="0.3" height="15.0" fill="rgb(231,46,1)" rx="2" ry="2" />
<text x="1089.25" y="975.5" ></text>
</g>
<g >
<title>ip_finish_output2 (80,808,080 samples, 0.14%)</title><rect x="1185.0" y="485" width="1.7" height="15.0" fill="rgb(208,62,49)" rx="2" ry="2" />
<text x="1188.00" y="495.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="24.0" y="933" width="0.2" height="15.0" fill="rgb(245,73,8)" rx="2" ry="2" />
<text x="26.96" y="943.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="463.8" y="1125" width="0.2" height="15.0" fill="rgb(216,108,18)" rx="2" ry="2" />
<text x="466.75" y="1135.5" ></text>
</g>
<g >
<title>spl_perform_autoload (292,929,290 samples, 0.51%)</title><rect x="738.5" y="949" width="6.1" height="15.0" fill="rgb(209,0,13)" rx="2" ry="2" />
<text x="741.54" y="959.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_TMP_HANDLER (10,101,010 samples, 0.02%)</title><rect x="522.3" y="1093" width="0.2" height="15.0" fill="rgb(228,107,45)" rx="2" ry="2" />
<text x="525.29" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_add_new (30,303,030 samples, 0.05%)</title><rect x="199.2" y="1109" width="0.6" height="15.0" fill="rgb(206,100,50)" rx="2" ry="2" />
<text x="202.17" y="1119.5" ></text>
</g>
<g >
<title>ksys_read (50,505,050 samples, 0.09%)</title><rect x="217.3" y="1061" width="1.0" height="15.0" fill="rgb(248,181,40)" rx="2" ry="2" />
<text x="220.29" y="1071.5" ></text>
</g>
<g >
<title>zif_getenv (10,101,010 samples, 0.02%)</title><rect x="1038.5" y="1125" width="0.3" height="15.0" fill="rgb(214,50,14)" rx="2" ry="2" />
<text x="1041.54" y="1135.5" ></text>
</g>
<g >
<title>_copy_from_user (10,101,010 samples, 0.02%)</title><rect x="1110.6" y="1141" width="0.2" height="15.0" fill="rgb(249,102,39)" rx="2" ry="2" />
<text x="1113.62" y="1151.5" ></text>
</g>
<g >
<title>setlocale (10,101,010 samples, 0.02%)</title><rect x="35.2" y="1173" width="0.2" height="15.0" fill="rgb(211,63,12)" rx="2" ry="2" />
<text x="38.21" y="1183.5" ></text>
</g>
<g >
<title>ZEND_VERIFY_RETURN_TYPE_SPEC_VAR_UNUSED_HANDLER (111,111,110 samples, 0.19%)</title><rect x="890.8" y="1125" width="2.3" height="15.0" fill="rgb(212,99,18)" rx="2" ry="2" />
<text x="893.83" y="1135.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="677.3" y="885" width="0.4" height="15.0" fill="rgb(206,44,14)" rx="2" ry="2" />
<text x="680.29" y="895.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="823.5" y="949" width="0.3" height="15.0" fill="rgb(250,139,25)" rx="2" ry="2" />
<text x="826.54" y="959.5" ></text>
</g>
<g >
<title>zif_strtr (10,101,010 samples, 0.02%)</title><rect x="1059.6" y="1125" width="0.2" height="15.0" fill="rgb(236,85,51)" rx="2" ry="2" />
<text x="1062.58" y="1135.5" ></text>
</g>
<g >
<title>execute_ex (111,111,110 samples, 0.19%)</title><rect x="521.2" y="1109" width="2.3" height="15.0" fill="rgb(242,134,7)" rx="2" ry="2" />
<text x="524.25" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="755.0" y="1109" width="0.4" height="15.0" fill="rgb(209,30,36)" rx="2" ry="2" />
<text x="758.00" y="1119.5" ></text>
</g>
<g >
<title>ip_forward_finish (292,929,290 samples, 0.51%)</title><rect x="1152.7" y="517" width="6.1" height="15.0" fill="rgb(221,207,41)" rx="2" ry="2" />
<text x="1155.71" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="672.5" y="821" width="0.2" height="15.0" fill="rgb(244,61,53)" rx="2" ry="2" />
<text x="675.50" y="831.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="977.1" y="1093" width="0.2" height="15.0" fill="rgb(219,72,34)" rx="2" ry="2" />
<text x="980.08" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="768.5" y="1029" width="0.3" height="15.0" fill="rgb(235,49,48)" rx="2" ry="2" />
<text x="771.54" y="1039.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (30,303,030 samples, 0.05%)</title><rect x="931.9" y="853" width="0.6" height="15.0" fill="rgb(235,161,14)" rx="2" ry="2" />
<text x="934.88" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (272,727,270 samples, 0.48%)</title><rect x="909.2" y="1029" width="5.6" height="15.0" fill="rgb(245,11,36)" rx="2" ry="2" />
<text x="912.17" y="1039.5" ></text>
</g>
<g >
<title>sock_put (10,101,010 samples, 0.02%)</title><rect x="30.4" y="965" width="0.2" height="15.0" fill="rgb(233,21,18)" rx="2" ry="2" />
<text x="33.42" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="416.9" y="773" width="0.2" height="15.0" fill="rgb(208,56,51)" rx="2" ry="2" />
<text x="419.88" y="783.5" ></text>
</g>
<g >
<title>spl_perform_autoload (101,010,100 samples, 0.18%)</title><rect x="1002.1" y="1029" width="2.1" height="15.0" fill="rgb(221,127,19)" rx="2" ry="2" />
<text x="1005.08" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (10,101,010 samples, 0.02%)</title><rect x="1061.9" y="1125" width="0.2" height="15.0" fill="rgb(230,214,22)" rx="2" ry="2" />
<text x="1064.88" y="1135.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="517" width="0.2" height="15.0" fill="rgb(233,158,45)" rx="2" ry="2" />
<text x="1085.08" y="527.5" ></text>
</g>
<g >
<title>persistent_zend_resolve_path (40,404,040 samples, 0.07%)</title><rect x="703.1" y="1093" width="0.9" height="15.0" fill="rgb(244,81,45)" rx="2" ry="2" />
<text x="706.12" y="1103.5" ></text>
</g>
<g >
<title>ovl_override_creds (40,404,040 samples, 0.07%)</title><rect x="389.2" y="869" width="0.8" height="15.0" fill="rgb(226,168,26)" rx="2" ry="2" />
<text x="392.17" y="879.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="416.9" y="757" width="0.2" height="15.0" fill="rgb(212,188,48)" rx="2" ry="2" />
<text x="419.88" y="767.5" ></text>
</g>
<g >
<title>timelib_strcasecmp (10,101,010 samples, 0.02%)</title><rect x="487.5" y="1077" width="0.2" height="15.0" fill="rgb(240,100,54)" rx="2" ry="2" />
<text x="490.50" y="1087.5" ></text>
</g>
<g >
<title>rcu_core (10,101,010 samples, 0.02%)</title><rect x="950.4" y="949" width="0.2" height="15.0" fill="rgb(239,97,46)" rx="2" ry="2" />
<text x="953.42" y="959.5" ></text>
</g>
<g >
<title>ip_local_out (40,404,040 samples, 0.07%)</title><rect x="1089.4" y="693" width="0.8" height="15.0" fill="rgb(240,116,51)" rx="2" ry="2" />
<text x="1092.38" y="703.5" ></text>
</g>
<g >
<title>TRACE-14$AutoLoader::find$49 (10,101,010 samples, 0.02%)</title><rect x="532.3" y="1045" width="0.2" height="15.0" fill="rgb(242,64,17)" rx="2" ry="2" />
<text x="535.29" y="1055.5" ></text>
</g>
<g >
<title>sapi_get_request_time (10,101,010 samples, 0.02%)</title><rect x="1105.0" y="1141" width="0.2" height="15.0" fill="rgb(232,79,22)" rx="2" ry="2" />
<text x="1108.00" y="1151.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (50,505,050 samples, 0.09%)</title><rect x="724.0" y="901" width="1.0" height="15.0" fill="rgb(251,48,23)" rx="2" ry="2" />
<text x="726.96" y="911.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (50,505,050 samples, 0.09%)</title><rect x="902.7" y="1045" width="1.1" height="15.0" fill="rgb(242,162,14)" rx="2" ry="2" />
<text x="905.71" y="1055.5" ></text>
</g>
<g >
<title>__ip_finish_output (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="741" width="1.7" height="15.0" fill="rgb(251,67,40)" rx="2" ry="2" />
<text x="1028.00" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1173" width="0.8" height="15.0" fill="rgb(215,132,16)" rx="2" ry="2" />
<text x="1138.42" y="1183.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (80,808,080 samples, 0.14%)</title><rect x="303.1" y="853" width="1.7" height="15.0" fill="rgb(244,68,30)" rx="2" ry="2" />
<text x="306.12" y="863.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (60,606,060 samples, 0.11%)</title><rect x="1164.6" y="885" width="1.2" height="15.0" fill="rgb(225,207,4)" rx="2" ry="2" />
<text x="1167.58" y="895.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="1030.2" y="997" width="0.2" height="15.0" fill="rgb(242,49,15)" rx="2" ry="2" />
<text x="1033.21" y="1007.5" ></text>
</g>
<g >
<title>add_function (10,101,010 samples, 0.02%)</title><rect x="528.8" y="1109" width="0.2" height="15.0" fill="rgb(225,12,25)" rx="2" ry="2" />
<text x="531.75" y="1119.5" ></text>
</g>
<g >
<title>tcp_data_queue (10,101,010 samples, 0.02%)</title><rect x="856.9" y="565" width="0.2" height="15.0" fill="rgb(233,192,22)" rx="2" ry="2" />
<text x="859.88" y="575.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="450.0" y="1093" width="0.2" height="15.0" fill="rgb(241,35,52)" rx="2" ry="2" />
<text x="453.00" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="799.0" y="709" width="0.2" height="15.0" fill="rgb(239,161,5)" rx="2" ry="2" />
<text x="801.96" y="719.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="861.0" y="645" width="0.2" height="15.0" fill="rgb(218,146,8)" rx="2" ry="2" />
<text x="864.04" y="655.5" ></text>
</g>
<g >
<title>object_init_ex (30,303,030 samples, 0.05%)</title><rect x="486.5" y="1109" width="0.6" height="15.0" fill="rgb(219,50,39)" rx="2" ry="2" />
<text x="489.46" y="1119.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="32.3" y="709" width="0.2" height="15.0" fill="rgb(220,68,6)" rx="2" ry="2" />
<text x="35.29" y="719.5" ></text>
</g>
<g >
<title>zend_include_or_eval (464,646,460 samples, 0.81%)</title><rect x="780.6" y="1013" width="9.6" height="15.0" fill="rgb(237,98,47)" rx="2" ry="2" />
<text x="783.62" y="1023.5" ></text>
</g>
<g >
<title>do_sys_poll (40,404,040 samples, 0.07%)</title><rect x="926.2" y="821" width="0.9" height="15.0" fill="rgb(241,55,48)" rx="2" ry="2" />
<text x="929.25" y="831.5" ></text>
</g>
<g >
<title>zend_hash_add_new (20,202,020 samples, 0.04%)</title><rect x="617.5" y="1109" width="0.4" height="15.0" fill="rgb(243,90,44)" rx="2" ry="2" />
<text x="620.50" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="422.7" y="933" width="0.2" height="15.0" fill="rgb(212,45,23)" rx="2" ry="2" />
<text x="425.71" y="943.5" ></text>
</g>
<g >
<title>TRACE-310$Wikimedia\Rdbms\LBFactory::executePostTransactionCallbacks$366 (10,101,010 samples, 0.02%)</title><rect x="485.4" y="1141" width="0.2" height="15.0" fill="rgb(232,119,32)" rx="2" ry="2" />
<text x="488.42" y="1151.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_R_SPEC_UNUSED_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="694.8" y="1125" width="0.4" height="15.0" fill="rgb(248,54,39)" rx="2" ry="2" />
<text x="697.79" y="1135.5" ></text>
</g>
<g >
<title>zif_array_key_exists (10,101,010 samples, 0.02%)</title><rect x="1070.4" y="1141" width="0.2" height="15.0" fill="rgb(220,110,8)" rx="2" ry="2" />
<text x="1073.42" y="1151.5" ></text>
</g>
<g >
<title>execute_ex (101,010,100 samples, 0.18%)</title><rect x="686.5" y="1045" width="2.0" height="15.0" fill="rgb(237,130,34)" rx="2" ry="2" />
<text x="689.46" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="539.8" y="1125" width="0.6" height="15.0" fill="rgb(253,49,13)" rx="2" ry="2" />
<text x="542.79" y="1135.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (1,111,111,100 samples, 1.94%)</title><rect x="221.7" y="1141" width="22.9" height="15.0" fill="rgb(227,158,16)" rx="2" ry="2" />
<text x="224.67" y="1151.5" >J..</text>
</g>
<g >
<title>__softirqentry_text_start (101,010,100 samples, 0.18%)</title><rect x="939.4" y="597" width="2.1" height="15.0" fill="rgb(220,28,28)" rx="2" ry="2" />
<text x="942.38" y="607.5" ></text>
</g>
<g >
<title>__audit_getname (10,101,010 samples, 0.02%)</title><rect x="912.7" y="933" width="0.2" height="15.0" fill="rgb(213,103,2)" rx="2" ry="2" />
<text x="915.71" y="943.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="618.5" y="1109" width="0.3" height="15.0" fill="rgb(222,95,0)" rx="2" ry="2" />
<text x="621.54" y="1119.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="821" width="0.2" height="15.0" fill="rgb(248,54,33)" rx="2" ry="2" />
<text x="1090.50" y="831.5" ></text>
</g>
<g >
<title>__x64_sys_write (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="1045" width="2.7" height="15.0" fill="rgb(236,58,47)" rx="2" ry="2" />
<text x="1026.96" y="1055.5" ></text>
</g>
<g >
<title>zend_fetch_static_prop_helper_SPEC (10,101,010 samples, 0.02%)</title><rect x="500.2" y="1029" width="0.2" height="15.0" fill="rgb(213,218,48)" rx="2" ry="2" />
<text x="503.21" y="1039.5" ></text>
</g>
<g >
<title>zif_error_reporting (10,101,010 samples, 0.02%)</title><rect x="1022.9" y="1125" width="0.2" height="15.0" fill="rgb(231,20,23)" rx="2" ry="2" />
<text x="1025.92" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="755.6" y="1109" width="0.2" height="15.0" fill="rgb(212,159,53)" rx="2" ry="2" />
<text x="758.62" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (30,303,030 samples, 0.05%)</title><rect x="462.1" y="1109" width="0.6" height="15.0" fill="rgb(230,229,45)" rx="2" ry="2" />
<text x="465.08" y="1119.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="549" width="0.3" height="15.0" fill="rgb(214,0,23)" rx="2" ry="2" />
<text x="1134.25" y="559.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (10,101,010 samples, 0.02%)</title><rect x="929.8" y="821" width="0.2" height="15.0" fill="rgb(220,6,7)" rx="2" ry="2" />
<text x="932.79" y="831.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="378.5" y="725" width="0.3" height="15.0" fill="rgb(248,115,13)" rx="2" ry="2" />
<text x="381.54" y="735.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="887.5" y="1013" width="0.2" height="15.0" fill="rgb(214,156,32)" rx="2" ry="2" />
<text x="890.50" y="1023.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="682.1" y="757" width="0.2" height="15.0" fill="rgb(210,85,12)" rx="2" ry="2" />
<text x="685.08" y="767.5" ></text>
</g>
<g >
<title>ip_output (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="773" width="1.7" height="15.0" fill="rgb(237,142,3)" rx="2" ry="2" />
<text x="1028.00" y="783.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="1187.1" y="565" width="0.2" height="15.0" fill="rgb(245,144,18)" rx="2" ry="2" />
<text x="1190.08" y="575.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="773" width="0.2" height="15.0" fill="rgb(205,21,18)" rx="2" ry="2" />
<text x="1086.33" y="783.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="395.4" y="789" width="0.2" height="15.0" fill="rgb(252,192,33)" rx="2" ry="2" />
<text x="398.42" y="799.5" ></text>
</g>
<g >
<title>__netif_receive_skb (121,212,120 samples, 0.21%)</title><rect x="1184.8" y="661" width="2.5" height="15.0" fill="rgb(207,24,51)" rx="2" ry="2" />
<text x="1187.79" y="671.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (60,606,060 samples, 0.11%)</title><rect x="783.1" y="965" width="1.3" height="15.0" fill="rgb(254,39,26)" rx="2" ry="2" />
<text x="786.12" y="975.5" ></text>
</g>
<g >
<title>php_pcre_replace (80,808,080 samples, 0.14%)</title><rect x="959.6" y="1109" width="1.6" height="15.0" fill="rgb(238,198,47)" rx="2" ry="2" />
<text x="962.58" y="1119.5" ></text>
</g>
<g >
<title>persistent_compile_file (444,444,440 samples, 0.78%)</title><rect x="781.0" y="981" width="9.2" height="15.0" fill="rgb(254,14,30)" rx="2" ry="2" />
<text x="784.04" y="991.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="350.2" y="1029" width="0.2" height="15.0" fill="rgb(212,18,53)" rx="2" ry="2" />
<text x="353.21" y="1039.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1131.9" y="1109" width="0.2" height="15.0" fill="rgb(205,45,18)" rx="2" ry="2" />
<text x="1134.88" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (1,474,747,460 samples, 2.58%)</title><rect x="720.0" y="1109" width="30.4" height="15.0" fill="rgb(209,225,27)" rx="2" ry="2" />
<text x="723.00" y="1119.5" >ze..</text>
</g>
<g >
<title>__fget_light (20,202,020 samples, 0.04%)</title><rect x="1168.8" y="1109" width="0.4" height="15.0" fill="rgb(254,3,28)" rx="2" ry="2" />
<text x="1171.75" y="1119.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="982.9" y="917" width="0.2" height="15.0" fill="rgb(242,210,26)" rx="2" ry="2" />
<text x="985.92" y="927.5" ></text>
</g>
<g >
<title>__x64_sys_newfstat (10,101,010 samples, 0.02%)</title><rect x="949.4" y="1029" width="0.2" height="15.0" fill="rgb(218,196,43)" rx="2" ry="2" />
<text x="952.38" y="1039.5" ></text>
</g>
<g >
<title>__x64_sys_timer_create (10,101,010 samples, 0.02%)</title><rect x="1189.4" y="1173" width="0.2" height="15.0" fill="rgb(244,226,16)" rx="2" ry="2" />
<text x="1192.38" y="1183.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (121,212,120 samples, 0.21%)</title><rect x="1111.9" y="1093" width="2.5" height="15.0" fill="rgb(254,9,12)" rx="2" ry="2" />
<text x="1114.88" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.19%)</title><rect x="1088.5" y="949" width="2.3" height="15.0" fill="rgb(216,4,7)" rx="2" ry="2" />
<text x="1091.54" y="959.5" ></text>
</g>
<g >
<title>access (191,919,190 samples, 0.34%)</title><rect x="723.3" y="1029" width="4.0" height="15.0" fill="rgb(253,143,15)" rx="2" ry="2" />
<text x="726.33" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (90,909,090 samples, 0.16%)</title><rect x="956.7" y="1077" width="1.8" height="15.0" fill="rgb(223,68,14)" rx="2" ry="2" />
<text x="959.67" y="1087.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="806.0" y="741" width="0.2" height="15.0" fill="rgb(243,78,4)" rx="2" ry="2" />
<text x="809.04" y="751.5" ></text>
</g>
<g >
<title>syscall_trace_enter (20,202,020 samples, 0.04%)</title><rect x="1141.9" y="1157" width="0.4" height="15.0" fill="rgb(212,213,28)" rx="2" ry="2" />
<text x="1144.88" y="1167.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="685.6" y="1013" width="0.4" height="15.0" fill="rgb(218,160,49)" rx="2" ry="2" />
<text x="688.62" y="1023.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (30,303,030 samples, 0.05%)</title><rect x="1077.5" y="1109" width="0.6" height="15.0" fill="rgb(248,103,49)" rx="2" ry="2" />
<text x="1080.50" y="1119.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="24.0" y="997" width="0.2" height="15.0" fill="rgb(240,49,19)" rx="2" ry="2" />
<text x="26.96" y="1007.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_UNUSED_OP_DATA_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="619.0" y="1125" width="0.4" height="15.0" fill="rgb(254,213,19)" rx="2" ry="2" />
<text x="621.96" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="740.6" y="901" width="0.2" height="15.0" fill="rgb(222,26,35)" rx="2" ry="2" />
<text x="743.62" y="911.5" ></text>
</g>
<g >
<title>zend_jit_get_constant (10,101,010 samples, 0.02%)</title><rect x="536.7" y="1125" width="0.2" height="15.0" fill="rgb(253,113,38)" rx="2" ry="2" />
<text x="539.67" y="1135.5" ></text>
</g>
<g >
<title>lockref_get_not_dead (20,202,020 samples, 0.04%)</title><rect x="395.2" y="901" width="0.4" height="15.0" fill="rgb(223,108,2)" rx="2" ry="2" />
<text x="398.21" y="911.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (10,101,010 samples, 0.02%)</title><rect x="1127.1" y="965" width="0.2" height="15.0" fill="rgb(220,0,27)" rx="2" ry="2" />
<text x="1130.08" y="975.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="534.8" y="853" width="0.2" height="15.0" fill="rgb(208,206,9)" rx="2" ry="2" />
<text x="537.79" y="863.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="741" width="0.2" height="15.0" fill="rgb(247,217,15)" rx="2" ry="2" />
<text x="1091.33" y="751.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="342.3" y="1029" width="0.2" height="15.0" fill="rgb(228,131,8)" rx="2" ry="2" />
<text x="345.29" y="1039.5" ></text>
</g>
<g >
<title>__lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="527.5" y="917" width="0.2" height="15.0" fill="rgb(205,168,1)" rx="2" ry="2" />
<text x="530.50" y="927.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="246.5" y="1125" width="0.2" height="15.0" fill="rgb(214,150,15)" rx="2" ry="2" />
<text x="249.46" y="1135.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1013" width="0.2" height="15.0" fill="rgb(251,18,9)" rx="2" ry="2" />
<text x="985.92" y="1023.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="672.5" y="677" width="0.2" height="15.0" fill="rgb(248,189,0)" rx="2" ry="2" />
<text x="675.50" y="687.5" ></text>
</g>
<g >
<title>[perf-25607.map] (10,101,010 samples, 0.02%)</title><rect x="954.4" y="1093" width="0.2" height="15.0" fill="rgb(224,80,7)" rx="2" ry="2" />
<text x="957.38" y="1103.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="955.4" y="869" width="0.2" height="15.0" fill="rgb(210,106,44)" rx="2" ry="2" />
<text x="958.42" y="879.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="341.7" y="1125" width="0.2" height="15.0" fill="rgb(214,95,11)" rx="2" ry="2" />
<text x="344.67" y="1135.5" ></text>
</g>
<g >
<title>__sys_getsockopt (20,202,020 samples, 0.04%)</title><rect x="1133.1" y="1141" width="0.4" height="15.0" fill="rgb(208,64,4)" rx="2" ry="2" />
<text x="1136.12" y="1151.5" ></text>
</g>
<g >
<title>_php_stream_fill_read_buffer (40,404,040 samples, 0.07%)</title><rect x="929.6" y="949" width="0.8" height="15.0" fill="rgb(235,172,23)" rx="2" ry="2" />
<text x="932.58" y="959.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (60,606,060 samples, 0.11%)</title><rect x="921.5" y="933" width="1.2" height="15.0" fill="rgb(245,194,31)" rx="2" ry="2" />
<text x="924.46" y="943.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.46 (10,101,010 samples, 0.02%)</title><rect x="244.0" y="837" width="0.2" height="15.0" fill="rgb(251,183,2)" rx="2" ry="2" />
<text x="246.96" y="847.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="546.5" y="997" width="0.2" height="15.0" fill="rgb(241,47,10)" rx="2" ry="2" />
<text x="549.46" y="1007.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1077" width="0.9" height="15.0" fill="rgb(220,159,42)" rx="2" ry="2" />
<text x="756.33" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1125" width="0.2" height="15.0" fill="rgb(214,68,29)" rx="2" ry="2" />
<text x="35.29" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="642.1" y="1045" width="0.2" height="15.0" fill="rgb(216,65,4)" rx="2" ry="2" />
<text x="645.08" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.14%)</title><rect x="1052.7" y="965" width="1.7" height="15.0" fill="rgb(244,100,27)" rx="2" ry="2" />
<text x="1055.71" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="106.9" y="1061" width="0.2" height="15.0" fill="rgb(241,57,34)" rx="2" ry="2" />
<text x="109.88" y="1071.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="619.0" y="869" width="0.2" height="15.0" fill="rgb(235,3,27)" rx="2" ry="2" />
<text x="621.96" y="879.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="901" width="3.3" height="15.0" fill="rgb(243,21,16)" rx="2" ry="2" />
<text x="1130.50" y="911.5" ></text>
</g>
<g >
<title>unlazy_walk (10,101,010 samples, 0.02%)</title><rect x="1008.3" y="901" width="0.2" height="15.0" fill="rgb(206,154,15)" rx="2" ry="2" />
<text x="1011.33" y="911.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="524.4" y="741" width="0.2" height="15.0" fill="rgb(220,22,27)" rx="2" ry="2" />
<text x="527.38" y="751.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="283.3" y="1029" width="0.9" height="15.0" fill="rgb(250,156,30)" rx="2" ry="2" />
<text x="286.33" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="904.0" y="981" width="0.2" height="15.0" fill="rgb(240,212,11)" rx="2" ry="2" />
<text x="906.96" y="991.5" ></text>
</g>
<g >
<title>ZEND_UNSET_DIM_SPEC_VAR_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="890.2" y="1125" width="0.2" height="15.0" fill="rgb(208,176,20)" rx="2" ry="2" />
<text x="893.21" y="1135.5" ></text>
</g>
<g >
<title>timer_create (10,101,010 samples, 0.02%)</title><rect x="202.7" y="1189" width="0.2" height="15.0" fill="rgb(230,152,46)" rx="2" ry="2" />
<text x="205.71" y="1199.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="307.7" y="1061" width="0.2" height="15.0" fill="rgb(214,27,16)" rx="2" ry="2" />
<text x="310.71" y="1071.5" ></text>
</g>
<g >
<title>do_faccessat (30,303,030 samples, 0.05%)</title><rect x="739.6" y="837" width="0.6" height="15.0" fill="rgb(216,173,2)" rx="2" ry="2" />
<text x="742.58" y="847.5" ></text>
</g>
<g >
<title>zend_str_tolower_copy (10,101,010 samples, 0.02%)</title><rect x="289.6" y="1093" width="0.2" height="15.0" fill="rgb(246,176,29)" rx="2" ry="2" />
<text x="292.58" y="1103.5" ></text>
</g>
<g >
<title>dup (40,404,040 samples, 0.07%)</title><rect x="949.6" y="1077" width="0.8" height="15.0" fill="rgb(235,214,18)" rx="2" ry="2" />
<text x="952.58" y="1087.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="199.6" y="1061" width="0.2" height="15.0" fill="rgb(235,20,31)" rx="2" ry="2" />
<text x="202.58" y="1071.5" ></text>
</g>
<g >
<title>TRACE-429$WebRequest::initHeaders$1108 (10,101,010 samples, 0.02%)</title><rect x="518.1" y="1141" width="0.2" height="15.0" fill="rgb(248,16,5)" rx="2" ry="2" />
<text x="521.12" y="1151.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="661" width="0.3" height="15.0" fill="rgb(207,142,24)" rx="2" ry="2" />
<text x="1134.25" y="671.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="608.1" y="1109" width="0.2" height="15.0" fill="rgb(248,197,43)" rx="2" ry="2" />
<text x="611.12" y="1119.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="982.5" y="1109" width="0.2" height="15.0" fill="rgb(208,29,14)" rx="2" ry="2" />
<text x="985.50" y="1119.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="607.7" y="1109" width="0.2" height="15.0" fill="rgb(226,199,25)" rx="2" ry="2" />
<text x="610.71" y="1119.5" ></text>
</g>
<g >
<title>add_function (10,101,010 samples, 0.02%)</title><rect x="904.2" y="1125" width="0.2" height="15.0" fill="rgb(205,40,7)" rx="2" ry="2" />
<text x="907.17" y="1135.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (151,515,150 samples, 0.26%)</title><rect x="813.1" y="965" width="3.1" height="15.0" fill="rgb(254,113,8)" rx="2" ry="2" />
<text x="816.12" y="975.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="874.0" y="981" width="0.4" height="15.0" fill="rgb(226,9,42)" rx="2" ry="2" />
<text x="876.96" y="991.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="508.8" y="1029" width="0.2" height="15.0" fill="rgb(239,1,20)" rx="2" ry="2" />
<text x="511.75" y="1039.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (90,909,090 samples, 0.16%)</title><rect x="639.8" y="1077" width="1.9" height="15.0" fill="rgb(237,89,17)" rx="2" ry="2" />
<text x="642.79" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="1054.0" y="917" width="0.4" height="15.0" fill="rgb(253,183,20)" rx="2" ry="2" />
<text x="1056.96" y="927.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="850.6" y="549" width="0.2" height="15.0" fill="rgb(233,150,43)" rx="2" ry="2" />
<text x="853.62" y="559.5" ></text>
</g>
<g >
<title>_emalloc_32 (10,101,010 samples, 0.02%)</title><rect x="478.3" y="1125" width="0.2" height="15.0" fill="rgb(210,66,11)" rx="2" ry="2" />
<text x="481.33" y="1135.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="947.5" y="949" width="0.2" height="15.0" fill="rgb(225,142,13)" rx="2" ry="2" />
<text x="950.50" y="959.5" ></text>
</g>
<g >
<title>tcp_current_mss (20,202,020 samples, 0.04%)</title><rect x="1167.7" y="1061" width="0.4" height="15.0" fill="rgb(225,157,8)" rx="2" ry="2" />
<text x="1170.71" y="1071.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="677.3" y="917" width="0.4" height="15.0" fill="rgb(212,47,6)" rx="2" ry="2" />
<text x="680.29" y="927.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="941.0" y="421" width="0.2" height="15.0" fill="rgb(219,110,49)" rx="2" ry="2" />
<text x="944.04" y="431.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="32.3" y="741" width="0.2" height="15.0" fill="rgb(220,176,22)" rx="2" ry="2" />
<text x="35.29" y="751.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="476.9" y="981" width="0.2" height="15.0" fill="rgb(231,31,9)" rx="2" ry="2" />
<text x="479.88" y="991.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="904.0" y="885" width="0.2" height="15.0" fill="rgb(227,90,8)" rx="2" ry="2" />
<text x="906.96" y="895.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (20,202,020 samples, 0.04%)</title><rect x="1130.8" y="917" width="0.4" height="15.0" fill="rgb(209,122,37)" rx="2" ry="2" />
<text x="1133.83" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (171,717,170 samples, 0.30%)</title><rect x="1035.0" y="1045" width="3.5" height="15.0" fill="rgb(253,201,27)" rx="2" ry="2" />
<text x="1038.00" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="749.8" y="1077" width="0.6" height="15.0" fill="rgb(250,48,13)" rx="2" ry="2" />
<text x="752.79" y="1087.5" ></text>
</g>
<g >
<title>php_array_diff_key.isra.0 (111,111,110 samples, 0.19%)</title><rect x="950.6" y="1125" width="2.3" height="15.0" fill="rgb(248,89,45)" rx="2" ry="2" />
<text x="953.62" y="1135.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="511.7" y="917" width="0.2" height="15.0" fill="rgb(211,196,38)" rx="2" ry="2" />
<text x="514.67" y="927.5" ></text>
</g>
<g >
<title>get_acl (20,202,020 samples, 0.04%)</title><rect x="900.6" y="933" width="0.4" height="15.0" fill="rgb(230,29,45)" rx="2" ry="2" />
<text x="903.62" y="943.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="797.9" y="933" width="0.4" height="15.0" fill="rgb(237,55,46)" rx="2" ry="2" />
<text x="800.92" y="943.5" ></text>
</g>
<g >
<title>__mutex_init (10,101,010 samples, 0.02%)</title><rect x="931.5" y="789" width="0.2" height="15.0" fill="rgb(227,151,30)" rx="2" ry="2" />
<text x="934.46" y="799.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="106.9" y="1013" width="0.2" height="15.0" fill="rgb(251,89,36)" rx="2" ry="2" />
<text x="109.88" y="1023.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="421" width="0.3" height="15.0" fill="rgb(217,184,0)" rx="2" ry="2" />
<text x="1134.25" y="431.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="471.7" y="965" width="0.2" height="15.0" fill="rgb(221,122,17)" rx="2" ry="2" />
<text x="474.67" y="975.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CONST_SPEC_CONST_CONST_HANDLER (242,424,240 samples, 0.42%)</title><rect x="649.6" y="1125" width="5.0" height="15.0" fill="rgb(234,78,14)" rx="2" ry="2" />
<text x="652.58" y="1135.5" ></text>
</g>
<g >
<title>bictcp_cwnd_event (10,101,010 samples, 0.02%)</title><rect x="1166.2" y="1029" width="0.3" height="15.0" fill="rgb(211,140,0)" rx="2" ry="2" />
<text x="1169.25" y="1039.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="535.2" y="1029" width="0.2" height="15.0" fill="rgb(219,195,47)" rx="2" ry="2" />
<text x="538.21" y="1039.5" ></text>
</g>
<g >
<title>php_string_tolower (10,101,010 samples, 0.02%)</title><rect x="1059.2" y="1109" width="0.2" height="15.0" fill="rgb(215,55,27)" rx="2" ry="2" />
<text x="1062.17" y="1119.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (10,101,010 samples, 0.02%)</title><rect x="683.5" y="1077" width="0.3" height="15.0" fill="rgb(231,191,7)" rx="2" ry="2" />
<text x="686.54" y="1087.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="934.4" y="853" width="0.2" height="15.0" fill="rgb(227,191,24)" rx="2" ry="2" />
<text x="937.38" y="863.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="927.3" y="853" width="0.2" height="15.0" fill="rgb(211,108,2)" rx="2" ry="2" />
<text x="930.29" y="863.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.11 (20,202,020 samples, 0.04%)</title><rect x="926.5" y="805" width="0.4" height="15.0" fill="rgb(205,169,7)" rx="2" ry="2" />
<text x="929.46" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1141" width="0.2" height="15.0" fill="rgb(237,70,28)" rx="2" ry="2" />
<text x="221.75" y="1151.5" ></text>
</g>
<g >
<title>tcp_send_fin (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="997" width="0.9" height="15.0" fill="rgb(238,69,14)" rx="2" ry="2" />
<text x="1035.92" y="1007.5" ></text>
</g>
<g >
<title>_efree_32 (10,101,010 samples, 0.02%)</title><rect x="469.8" y="1125" width="0.2" height="15.0" fill="rgb(205,105,4)" rx="2" ry="2" />
<text x="472.79" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="973.3" y="1077" width="0.2" height="15.0" fill="rgb(229,118,51)" rx="2" ry="2" />
<text x="976.33" y="1087.5" ></text>
</g>
<g >
<title>TRACE-424$MediaWiki\MediaWikiServices::getInstance$262 (10,101,010 samples, 0.02%)</title><rect x="517.5" y="1141" width="0.2" height="15.0" fill="rgb(210,4,10)" rx="2" ry="2" />
<text x="520.50" y="1151.5" ></text>
</g>
<g >
<title>php_hash_environment (10,101,010 samples, 0.02%)</title><rect x="1103.8" y="1157" width="0.2" height="15.0" fill="rgb(223,124,14)" rx="2" ry="2" />
<text x="1106.75" y="1167.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="395.4" y="805" width="0.2" height="15.0" fill="rgb(215,172,48)" rx="2" ry="2" />
<text x="398.42" y="815.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_STATIC_PROP_SPEC_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="732.5" y="1029" width="0.2" height="15.0" fill="rgb(212,86,33)" rx="2" ry="2" />
<text x="735.50" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="378.5" y="821" width="0.3" height="15.0" fill="rgb(222,81,30)" rx="2" ry="2" />
<text x="381.54" y="831.5" ></text>
</g>
<g >
<title>_php_import_environment_variables (50,505,050 samples, 0.09%)</title><rect x="699.8" y="981" width="1.0" height="15.0" fill="rgb(222,1,25)" rx="2" ry="2" />
<text x="702.79" y="991.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_connect_pub (676,767,670 samples, 1.18%)</title><rect x="930.4" y="1045" width="14.0" height="15.0" fill="rgb(216,34,3)" rx="2" ry="2" />
<text x="933.42" y="1055.5" ></text>
</g>
<g >
<title>iscntrl (20,202,020 samples, 0.04%)</title><rect x="1134.0" y="1205" width="0.4" height="15.0" fill="rgb(216,60,45)" rx="2" ry="2" />
<text x="1136.96" y="1215.5" ></text>
</g>
<g >
<title>JIT$$assign_cv_noref (10,101,010 samples, 0.02%)</title><rect x="219.8" y="1141" width="0.2" height="15.0" fill="rgb(210,67,34)" rx="2" ry="2" />
<text x="222.79" y="1151.5" ></text>
</g>
<g >
<title>object_init_ex (80,808,080 samples, 0.14%)</title><rect x="300.0" y="1109" width="1.7" height="15.0" fill="rgb(252,8,28)" rx="2" ry="2" />
<text x="303.00" y="1119.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="1070.0" y="1141" width="0.2" height="15.0" fill="rgb(240,3,26)" rx="2" ry="2" />
<text x="1073.00" y="1151.5" ></text>
</g>
<g >
<title>ipv4_conntrack_defrag (10,101,010 samples, 0.02%)</title><rect x="1184.0" y="981" width="0.2" height="15.0" fill="rgb(220,10,5)" rx="2" ry="2" />
<text x="1186.96" y="991.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1125" width="0.2" height="15.0" fill="rgb(209,13,6)" rx="2" ry="2" />
<text x="347.79" y="1135.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1109" width="0.2" height="15.0" fill="rgb(230,207,36)" rx="2" ry="2" />
<text x="33.00" y="1119.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="283.1" y="1013" width="0.2" height="15.0" fill="rgb(244,131,1)" rx="2" ry="2" />
<text x="286.12" y="1023.5" ></text>
</g>
<g >
<title>user_path_at_empty (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1109" width="0.8" height="15.0" fill="rgb(242,88,20)" rx="2" ry="2" />
<text x="1124.67" y="1119.5" ></text>
</g>
<g >
<title>dnotify_flush (10,101,010 samples, 0.02%)</title><rect x="1086.0" y="949" width="0.2" height="15.0" fill="rgb(217,27,42)" rx="2" ry="2" />
<text x="1089.04" y="959.5" ></text>
</g>
<g >
<title>walk_component (20,202,020 samples, 0.04%)</title><rect x="1008.5" y="901" width="0.5" height="15.0" fill="rgb(218,175,19)" rx="2" ry="2" />
<text x="1011.54" y="911.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="645" width="0.3" height="15.0" fill="rgb(209,34,43)" rx="2" ry="2" />
<text x="1134.25" y="655.5" ></text>
</g>
<g >
<title>do_async_page_fault (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1093" width="0.2" height="15.0" fill="rgb(217,69,37)" rx="2" ry="2" />
<text x="1106.96" y="1103.5" ></text>
</g>
<g >
<title>__put_cred (10,101,010 samples, 0.02%)</title><rect x="1006.0" y="965" width="0.2" height="15.0" fill="rgb(250,222,19)" rx="2" ry="2" />
<text x="1009.04" y="975.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="302.9" y="853" width="0.2" height="15.0" fill="rgb(225,200,13)" rx="2" ry="2" />
<text x="305.92" y="863.5" ></text>
</g>
<g >
<title>__lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="912.5" y="837" width="0.2" height="15.0" fill="rgb(221,115,32)" rx="2" ry="2" />
<text x="915.50" y="847.5" ></text>
</g>
<g >
<title>zend_hash_find (40,404,040 samples, 0.07%)</title><rect x="626.2" y="1093" width="0.9" height="15.0" fill="rgb(225,17,9)" rx="2" ry="2" />
<text x="629.25" y="1103.5" ></text>
</g>
<g >
<title>alloc_pages_current (10,101,010 samples, 0.02%)</title><rect x="919.2" y="933" width="0.2" height="15.0" fill="rgb(210,98,19)" rx="2" ry="2" />
<text x="922.17" y="943.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="511.7" y="853" width="0.2" height="15.0" fill="rgb(247,91,30)" rx="2" ry="2" />
<text x="514.67" y="863.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="682.1" y="741" width="0.2" height="15.0" fill="rgb(252,113,27)" rx="2" ry="2" />
<text x="685.08" y="751.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="245.4" y="1093" width="0.2" height="15.0" fill="rgb(250,67,7)" rx="2" ry="2" />
<text x="248.42" y="1103.5" ></text>
</g>
<g >
<title>mysqlnd_read_header (50,505,050 samples, 0.09%)</title><rect x="925.0" y="933" width="1.0" height="15.0" fill="rgb(212,149,47)" rx="2" ry="2" />
<text x="928.00" y="943.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="395.4" y="693" width="0.2" height="15.0" fill="rgb(246,13,50)" rx="2" ry="2" />
<text x="398.42" y="703.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="925.4" y="725" width="0.2" height="15.0" fill="rgb(210,158,34)" rx="2" ry="2" />
<text x="928.42" y="735.5" ></text>
</g>
<g >
<title>persistent_zend_resolve_path (10,101,010 samples, 0.02%)</title><rect x="1076.5" y="1157" width="0.2" height="15.0" fill="rgb(249,42,19)" rx="2" ry="2" />
<text x="1079.46" y="1167.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (101,010,100 samples, 0.18%)</title><rect x="1002.1" y="1093" width="2.1" height="15.0" fill="rgb(232,127,31)" rx="2" ry="2" />
<text x="1005.08" y="1103.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="753.1" y="1109" width="0.2" height="15.0" fill="rgb(227,121,39)" rx="2" ry="2" />
<text x="756.12" y="1119.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (40,404,040 samples, 0.07%)</title><rect x="1053.1" y="885" width="0.9" height="15.0" fill="rgb(232,13,13)" rx="2" ry="2" />
<text x="1056.12" y="895.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="885" width="0.2" height="15.0" fill="rgb(215,20,53)" rx="2" ry="2" />
<text x="1086.33" y="895.5" ></text>
</g>
<g >
<title>nf_nat_packet (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="773" width="0.2" height="15.0" fill="rgb(233,91,42)" rx="2" ry="2" />
<text x="1127.17" y="783.5" ></text>
</g>
<g >
<title>persistent_compile_file (141,414,140 samples, 0.25%)</title><rect x="679.6" y="981" width="2.9" height="15.0" fill="rgb(232,21,54)" rx="2" ry="2" />
<text x="682.58" y="991.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (30,303,030 samples, 0.05%)</title><rect x="687.9" y="1029" width="0.6" height="15.0" fill="rgb(217,2,40)" rx="2" ry="2" />
<text x="690.92" y="1039.5" ></text>
</g>
<g >
<title>__check_object_size (10,101,010 samples, 0.02%)</title><rect x="424.4" y="965" width="0.2" height="15.0" fill="rgb(210,91,37)" rx="2" ry="2" />
<text x="427.38" y="975.5" ></text>
</g>
<g >
<title>nf_xfrm_me_harder (10,101,010 samples, 0.02%)</title><rect x="1158.5" y="469" width="0.3" height="15.0" fill="rgb(250,192,4)" rx="2" ry="2" />
<text x="1161.54" y="479.5" ></text>
</g>
<g >
<title>fpm_request_accepting (10,101,010 samples, 0.02%)</title><rect x="206.5" y="1157" width="0.2" height="15.0" fill="rgb(245,50,18)" rx="2" ry="2" />
<text x="209.46" y="1167.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="881.2" y="821" width="0.3" height="15.0" fill="rgb(237,15,28)" rx="2" ry="2" />
<text x="884.25" y="831.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="850.6" y="437" width="0.2" height="15.0" fill="rgb(245,123,17)" rx="2" ry="2" />
<text x="853.62" y="447.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="916.5" y="869" width="0.2" height="15.0" fill="rgb(221,203,25)" rx="2" ry="2" />
<text x="919.46" y="879.5" ></text>
</g>
<g >
<title>zend_hash_add_new (70,707,070 samples, 0.12%)</title><rect x="706.7" y="1093" width="1.4" height="15.0" fill="rgb(240,13,13)" rx="2" ry="2" />
<text x="709.67" y="1103.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="304.4" y="581" width="0.4" height="15.0" fill="rgb(231,194,27)" rx="2" ry="2" />
<text x="307.38" y="591.5" ></text>
</g>
<g >
<title>zend_hash_index_add_new (272,727,270 samples, 0.48%)</title><rect x="184.6" y="1077" width="5.6" height="15.0" fill="rgb(234,204,16)" rx="2" ry="2" />
<text x="187.58" y="1087.5" ></text>
</g>
<g >
<title>zend_objects_new (10,101,010 samples, 0.02%)</title><rect x="749.0" y="997" width="0.2" height="15.0" fill="rgb(241,71,9)" rx="2" ry="2" />
<text x="751.96" y="1007.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="396.2" y="933" width="0.3" height="15.0" fill="rgb(210,59,24)" rx="2" ry="2" />
<text x="399.25" y="943.5" ></text>
</g>
<g >
<title>zend_parse_parameters (10,101,010 samples, 0.02%)</title><rect x="1054.6" y="1109" width="0.2" height="15.0" fill="rgb(226,147,40)" rx="2" ry="2" />
<text x="1057.58" y="1119.5" ></text>
</g>
<g >
<title>ovl_permission (10,101,010 samples, 0.02%)</title><rect x="775.2" y="869" width="0.2" height="15.0" fill="rgb(238,221,14)" rx="2" ry="2" />
<text x="778.21" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="932.3" y="821" width="0.2" height="15.0" fill="rgb(217,25,54)" rx="2" ry="2" />
<text x="935.29" y="831.5" ></text>
</g>
<g >
<title>zend_call_known_function (90,909,090 samples, 0.16%)</title><rect x="1002.1" y="1013" width="1.9" height="15.0" fill="rgb(234,130,12)" rx="2" ry="2" />
<text x="1005.08" y="1023.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="856.9" y="677" width="0.2" height="15.0" fill="rgb(246,182,3)" rx="2" ry="2" />
<text x="859.88" y="687.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="1063.8" y="1077" width="0.2" height="15.0" fill="rgb(208,14,25)" rx="2" ry="2" />
<text x="1066.75" y="1087.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (404,040,400 samples, 0.71%)</title><rect x="873.8" y="1029" width="8.3" height="15.0" fill="rgb(213,210,34)" rx="2" ry="2" />
<text x="876.75" y="1039.5" ></text>
</g>
<g >
<title>br_forward (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="597" width="0.4" height="15.0" fill="rgb(236,169,1)" rx="2" ry="2" />
<text x="1035.92" y="607.5" ></text>
</g>
<g >
<title>ZEND_FAST_CONCAT_SPEC_CONST_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="673.1" y="1125" width="0.2" height="15.0" fill="rgb(229,110,22)" rx="2" ry="2" />
<text x="676.12" y="1135.5" ></text>
</g>
<g >
<title>php_request_shutdown (1,262,626,250 samples, 2.21%)</title><rect x="1076.7" y="1173" width="26.0" height="15.0" fill="rgb(221,176,46)" rx="2" ry="2" />
<text x="1079.67" y="1183.5" >p..</text>
</g>
<g >
<title>fib_validate_source (30,303,030 samples, 0.05%)</title><rect x="1161.7" y="469" width="0.6" height="15.0" fill="rgb(215,145,10)" rx="2" ry="2" />
<text x="1164.67" y="479.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (30,303,030 samples, 0.05%)</title><rect x="741.5" y="837" width="0.6" height="15.0" fill="rgb(239,22,1)" rx="2" ry="2" />
<text x="744.46" y="847.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="767.5" y="885" width="0.4" height="15.0" fill="rgb(214,163,53)" rx="2" ry="2" />
<text x="770.50" y="895.5" ></text>
</g>
<g >
<title>schedule (111,111,110 samples, 0.19%)</title><rect x="1112.1" y="1077" width="2.3" height="15.0" fill="rgb(229,135,53)" rx="2" ry="2" />
<text x="1115.08" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1013" width="0.2" height="15.0" fill="rgb(214,23,34)" rx="2" ry="2" />
<text x="1083.83" y="1023.5" ></text>
</g>
<g >
<title>ZEND_VERIFY_RETURN_TYPE_SPEC_TMP_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="556.2" y="1141" width="0.5" height="15.0" fill="rgb(210,55,18)" rx="2" ry="2" />
<text x="559.25" y="1151.5" ></text>
</g>
<g >
<title>zend_do_link_class (40,404,040 samples, 0.07%)</title><rect x="732.7" y="1013" width="0.8" height="15.0" fill="rgb(253,53,26)" rx="2" ry="2" />
<text x="735.71" y="1023.5" ></text>
</g>
<g >
<title>date_format (40,404,040 samples, 0.07%)</title><rect x="480.2" y="1029" width="0.8" height="15.0" fill="rgb(240,122,25)" rx="2" ry="2" />
<text x="483.21" y="1039.5" ></text>
</g>
<g >
<title>vfs_getattr_nosec (10,101,010 samples, 0.02%)</title><rect x="957.9" y="997" width="0.2" height="15.0" fill="rgb(228,5,9)" rx="2" ry="2" />
<text x="960.92" y="1007.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (30,303,030 samples, 0.05%)</title><rect x="876.0" y="965" width="0.7" height="15.0" fill="rgb(216,109,16)" rx="2" ry="2" />
<text x="879.04" y="975.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="411.9" y="901" width="0.2" height="15.0" fill="rgb(218,89,2)" rx="2" ry="2" />
<text x="414.88" y="911.5" ></text>
</g>
<g >
<title>php_json_yyparse (111,111,110 samples, 0.19%)</title><rect x="1043.1" y="1093" width="2.3" height="15.0" fill="rgb(220,154,18)" rx="2" ry="2" />
<text x="1046.12" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_TMPVAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="1085.2" y="1061" width="0.4" height="15.0" fill="rgb(249,102,50)" rx="2" ry="2" />
<text x="1088.21" y="1071.5" ></text>
</g>
<g >
<title>ip_finish_output2 (191,919,190 samples, 0.34%)</title><rect x="1127.3" y="949" width="3.9" height="15.0" fill="rgb(230,78,7)" rx="2" ry="2" />
<text x="1130.29" y="959.5" ></text>
</g>
<g >
<title>filename_lookup (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1093" width="0.8" height="15.0" fill="rgb(215,119,28)" rx="2" ry="2" />
<text x="1124.67" y="1103.5" ></text>
</g>
<g >
<title>fib_table_lookup (20,202,020 samples, 0.04%)</title><rect x="1161.7" y="437" width="0.4" height="15.0" fill="rgb(239,176,5)" rx="2" ry="2" />
<text x="1164.67" y="447.5" ></text>
</g>
<g >
<title>zend_accel_load_script (40,404,040 samples, 0.07%)</title><rect x="708.3" y="1077" width="0.9" height="15.0" fill="rgb(216,185,37)" rx="2" ry="2" />
<text x="711.33" y="1087.5" ></text>
</g>
<g >
<title>siphash_3u32 (10,101,010 samples, 0.02%)</title><rect x="1124.6" y="1061" width="0.2" height="15.0" fill="rgb(215,129,19)" rx="2" ry="2" />
<text x="1127.58" y="1071.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="904.0" y="933" width="0.2" height="15.0" fill="rgb(235,84,45)" rx="2" ry="2" />
<text x="906.96" y="943.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="805" width="0.2" height="15.0" fill="rgb(249,46,49)" rx="2" ry="2" />
<text x="1010.50" y="815.5" ></text>
</g>
<g >
<title>ZEND_VERIFY_RETURN_TYPE_SPEC_TMP_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="890.6" y="1125" width="0.2" height="15.0" fill="rgb(228,210,18)" rx="2" ry="2" />
<text x="893.62" y="1135.5" ></text>
</g>
<g >
<title>zend_std_get_property_ptr_ptr (10,101,010 samples, 0.02%)</title><rect x="888.3" y="1109" width="0.2" height="15.0" fill="rgb(249,16,34)" rx="2" ry="2" />
<text x="891.33" y="1119.5" ></text>
</g>
<g >
<title>_mysqlnd_pestrdup (10,101,010 samples, 0.02%)</title><rect x="924.8" y="949" width="0.2" height="15.0" fill="rgb(219,149,50)" rx="2" ry="2" />
<text x="927.79" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (60,606,060 samples, 0.11%)</title><rect x="933.3" y="885" width="1.3" height="15.0" fill="rgb(221,6,54)" rx="2" ry="2" />
<text x="936.33" y="895.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HANDLER (242,424,240 samples, 0.42%)</title><rect x="705.6" y="1125" width="5.0" height="15.0" fill="rgb(243,147,47)" rx="2" ry="2" />
<text x="708.62" y="1135.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="677.7" y="901" width="0.8" height="15.0" fill="rgb(242,107,15)" rx="2" ry="2" />
<text x="680.71" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="339.2" y="997" width="0.4" height="15.0" fill="rgb(250,200,15)" rx="2" ry="2" />
<text x="342.17" y="1007.5" ></text>
</g>
<g >
<title>unmap_page_range (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1045" width="0.2" height="15.0" fill="rgb(220,20,21)" rx="2" ry="2" />
<text x="1175.08" y="1055.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="791.5" y="869" width="0.2" height="15.0" fill="rgb(218,213,47)" rx="2" ry="2" />
<text x="794.46" y="879.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="464.4" y="1125" width="0.4" height="15.0" fill="rgb(247,200,44)" rx="2" ry="2" />
<text x="467.38" y="1135.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (121,212,120 samples, 0.21%)</title><rect x="1184.8" y="693" width="2.5" height="15.0" fill="rgb(222,101,36)" rx="2" ry="2" />
<text x="1187.79" y="703.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="948.5" y="965" width="0.3" height="15.0" fill="rgb(212,134,32)" rx="2" ry="2" />
<text x="951.54" y="975.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue (10,101,010 samples, 0.02%)</title><rect x="682.1" y="677" width="0.2" height="15.0" fill="rgb(235,154,33)" rx="2" ry="2" />
<text x="685.08" y="687.5" ></text>
</g>
<g >
<title>zif_is_numeric (10,101,010 samples, 0.02%)</title><rect x="1073.3" y="1141" width="0.2" height="15.0" fill="rgb(251,29,31)" rx="2" ry="2" />
<text x="1076.33" y="1151.5" ></text>
</g>
<g >
<title>shutdown_destructors (646,464,640 samples, 1.13%)</title><rect x="1078.5" y="1141" width="13.4" height="15.0" fill="rgb(215,19,3)" rx="2" ry="2" />
<text x="1081.54" y="1151.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="1084.8" y="1061" width="0.2" height="15.0" fill="rgb(252,111,29)" rx="2" ry="2" />
<text x="1087.79" y="1071.5" ></text>
</g>
<g >
<title>zend_try_early_bind (60,606,060 samples, 0.11%)</title><rect x="1002.7" y="773" width="1.3" height="15.0" fill="rgb(246,2,38)" rx="2" ry="2" />
<text x="1005.71" y="783.5" ></text>
</g>
<g >
<title>inode_permission (30,303,030 samples, 0.05%)</title><rect x="390.6" y="917" width="0.6" height="15.0" fill="rgb(249,11,46)" rx="2" ry="2" />
<text x="393.62" y="927.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (60,606,060 samples, 0.11%)</title><rect x="727.7" y="1029" width="1.3" height="15.0" fill="rgb(224,200,49)" rx="2" ry="2" />
<text x="730.71" y="1039.5" ></text>
</g>
<g >
<title>zend_do_link_class (90,909,090 samples, 0.16%)</title><rect x="798.5" y="901" width="1.9" height="15.0" fill="rgb(218,63,40)" rx="2" ry="2" />
<text x="801.54" y="911.5" ></text>
</g>
<g >
<title>TRACE-176$BagOStuff::genericKeyFromComponents$682 (40,404,040 samples, 0.07%)</title><rect x="311.0" y="1141" width="0.9" height="15.0" fill="rgb(209,10,27)" rx="2" ry="2" />
<text x="314.04" y="1151.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="217.3" y="965" width="0.2" height="15.0" fill="rgb(228,202,22)" rx="2" ry="2" />
<text x="220.29" y="975.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="443.3" y="1093" width="0.2" height="15.0" fill="rgb(239,206,33)" rx="2" ry="2" />
<text x="446.33" y="1103.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (90,909,090 samples, 0.16%)</title><rect x="500.2" y="1109" width="1.9" height="15.0" fill="rgb(212,133,9)" rx="2" ry="2" />
<text x="503.21" y="1119.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (20,202,020 samples, 0.04%)</title><rect x="251.0" y="1109" width="0.5" height="15.0" fill="rgb(247,26,13)" rx="2" ry="2" />
<text x="254.04" y="1119.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_close_pub (161,616,160 samples, 0.28%)</title><rect x="1088.1" y="1029" width="3.4" height="15.0" fill="rgb(229,219,34)" rx="2" ry="2" />
<text x="1091.12" y="1039.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="799.0" y="773" width="0.2" height="15.0" fill="rgb(208,182,13)" rx="2" ry="2" />
<text x="801.96" y="783.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="645" width="2.9" height="15.0" fill="rgb(206,155,40)" rx="2" ry="2" />
<text x="1130.50" y="655.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1013" width="0.2" height="15.0" fill="rgb(235,117,32)" rx="2" ry="2" />
<text x="902.38" y="1023.5" ></text>
</g>
<g >
<title>tcp_write_xmit (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="965" width="0.9" height="15.0" fill="rgb(226,116,15)" rx="2" ry="2" />
<text x="1035.92" y="975.5" ></text>
</g>
<g >
<title>ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="334.4" y="1125" width="0.4" height="15.0" fill="rgb(241,107,45)" rx="2" ry="2" />
<text x="337.38" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="949" width="0.2" height="15.0" fill="rgb(253,160,21)" rx="2" ry="2" />
<text x="1150.29" y="959.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (30,303,030 samples, 0.05%)</title><rect x="1168.1" y="1125" width="0.7" height="15.0" fill="rgb(254,208,47)" rx="2" ry="2" />
<text x="1171.12" y="1135.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="378.5" y="693" width="0.3" height="15.0" fill="rgb(252,13,4)" rx="2" ry="2" />
<text x="381.54" y="703.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="936.2" y="869" width="0.5" height="15.0" fill="rgb(215,131,14)" rx="2" ry="2" />
<text x="939.25" y="879.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (10,101,010 samples, 0.02%)</title><rect x="1129.2" y="421" width="0.2" height="15.0" fill="rgb(215,8,42)" rx="2" ry="2" />
<text x="1132.17" y="431.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="295.8" y="1077" width="0.2" height="15.0" fill="rgb(206,176,14)" rx="2" ry="2" />
<text x="298.83" y="1087.5" ></text>
</g>
<g >
<title>add_function (10,101,010 samples, 0.02%)</title><rect x="529.0" y="1125" width="0.2" height="15.0" fill="rgb(226,123,28)" rx="2" ry="2" />
<text x="531.96" y="1135.5" ></text>
</g>
<g >
<title>zif_fopen (60,606,060 samples, 0.11%)</title><rect x="949.4" y="1109" width="1.2" height="15.0" fill="rgb(253,29,33)" rx="2" ry="2" />
<text x="952.38" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="913.1" y="869" width="0.2" height="15.0" fill="rgb(212,97,27)" rx="2" ry="2" />
<text x="916.12" y="879.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (40,404,040 samples, 0.07%)</title><rect x="683.8" y="1013" width="0.8" height="15.0" fill="rgb(254,88,3)" rx="2" ry="2" />
<text x="686.75" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="1034.2" y="1109" width="0.4" height="15.0" fill="rgb(250,163,20)" rx="2" ry="2" />
<text x="1037.17" y="1119.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="267.1" y="1077" width="0.2" height="15.0" fill="rgb(225,11,24)" rx="2" ry="2" />
<text x="270.08" y="1087.5" ></text>
</g>
<g >
<title>ipv4_mtu (10,101,010 samples, 0.02%)</title><rect x="1167.9" y="1045" width="0.2" height="15.0" fill="rgb(254,209,41)" rx="2" ry="2" />
<text x="1170.92" y="1055.5" ></text>
</g>
<g >
<title>iowrite16 (50,505,050 samples, 0.09%)</title><rect x="1128.1" y="357" width="1.1" height="15.0" fill="rgb(242,180,7)" rx="2" ry="2" />
<text x="1131.12" y="367.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (40,404,040 samples, 0.07%)</title><rect x="1041.9" y="1109" width="0.8" height="15.0" fill="rgb(244,207,50)" rx="2" ry="2" />
<text x="1044.88" y="1119.5" ></text>
</g>
<g >
<title>sk_reset_timer (10,101,010 samples, 0.02%)</title><rect x="1188.1" y="1045" width="0.2" height="15.0" fill="rgb(213,139,52)" rx="2" ry="2" />
<text x="1191.12" y="1055.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (80,808,080 samples, 0.14%)</title><rect x="209.4" y="1045" width="1.6" height="15.0" fill="rgb(242,122,20)" rx="2" ry="2" />
<text x="212.38" y="1055.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (90,909,090 samples, 0.16%)</title><rect x="500.2" y="1093" width="1.9" height="15.0" fill="rgb(242,19,5)" rx="2" ry="2" />
<text x="503.21" y="1103.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="30.4" y="981" width="0.2" height="15.0" fill="rgb(244,207,2)" rx="2" ry="2" />
<text x="33.42" y="991.5" ></text>
</g>
<g >
<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.02%)</title><rect x="797.5" y="853" width="0.2" height="15.0" fill="rgb(213,28,44)" rx="2" ry="2" />
<text x="800.50" y="863.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="709" width="0.2" height="15.0" fill="rgb(217,140,50)" rx="2" ry="2" />
<text x="1091.33" y="719.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="926.9" y="757" width="0.2" height="15.0" fill="rgb(240,198,23)" rx="2" ry="2" />
<text x="929.88" y="767.5" ></text>
</g>
<g >
<title>zif_strtr (10,101,010 samples, 0.02%)</title><rect x="310.8" y="1125" width="0.2" height="15.0" fill="rgb(206,155,6)" rx="2" ry="2" />
<text x="313.83" y="1135.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="933" width="0.2" height="15.0" fill="rgb(207,184,39)" rx="2" ry="2" />
<text x="1095.08" y="943.5" ></text>
</g>
<g >
<title>lockref_get (20,202,020 samples, 0.04%)</title><rect x="407.7" y="901" width="0.4" height="15.0" fill="rgb(229,76,43)" rx="2" ry="2" />
<text x="410.71" y="911.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="470.6" y="1125" width="0.6" height="15.0" fill="rgb(229,183,53)" rx="2" ry="2" />
<text x="473.62" y="1135.5" ></text>
</g>
<g >
<title>__pthread_rwlock_rdlock (10,101,010 samples, 0.02%)</title><rect x="1117.9" y="1205" width="0.2" height="15.0" fill="rgb(246,47,0)" rx="2" ry="2" />
<text x="1120.92" y="1215.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="689.0" y="933" width="0.2" height="15.0" fill="rgb(243,222,50)" rx="2" ry="2" />
<text x="691.96" y="943.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="672.5" y="869" width="0.2" height="15.0" fill="rgb(248,18,53)" rx="2" ry="2" />
<text x="675.50" y="879.5" ></text>
</g>
<g >
<title>sock_alloc (20,202,020 samples, 0.04%)</title><rect x="931.0" y="837" width="0.5" height="15.0" fill="rgb(207,62,40)" rx="2" ry="2" />
<text x="934.04" y="847.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="677.7" y="661" width="0.2" height="15.0" fill="rgb(212,105,43)" rx="2" ry="2" />
<text x="680.71" y="671.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (1,575,757,560 samples, 2.75%)</title><rect x="718.5" y="1125" width="32.5" height="15.0" fill="rgb(210,16,44)" rx="2" ry="2" />
<text x="721.54" y="1135.5" >ZE..</text>
</g>
<g >
<title>zend_fetch_dimension_address_inner_W (10,101,010 samples, 0.02%)</title><rect x="976.0" y="1125" width="0.2" height="15.0" fill="rgb(214,26,53)" rx="2" ry="2" />
<text x="979.04" y="1135.5" ></text>
</g>
<g >
<title>do_bind_class (151,515,150 samples, 0.26%)</title><rect x="800.4" y="901" width="3.1" height="15.0" fill="rgb(245,102,23)" rx="2" ry="2" />
<text x="803.42" y="911.5" ></text>
</g>
<g >
<title>zend_call_known_function (80,808,080 samples, 0.14%)</title><rect x="712.5" y="1045" width="1.7" height="15.0" fill="rgb(237,31,40)" rx="2" ry="2" />
<text x="715.50" y="1055.5" ></text>
</g>
<g >
<title>nfnetlink_has_listeners (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="789" width="0.3" height="15.0" fill="rgb(217,229,18)" rx="2" ry="2" />
<text x="1036.54" y="799.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="822.7" y="981" width="0.2" height="15.0" fill="rgb(224,208,7)" rx="2" ry="2" />
<text x="825.71" y="991.5" ></text>
</g>
<g >
<title>php_pcre2_pattern_info (10,101,010 samples, 0.02%)</title><rect x="954.6" y="1077" width="0.2" height="15.0" fill="rgb(252,178,54)" rx="2" ry="2" />
<text x="957.58" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="718.3" y="1013" width="0.2" height="15.0" fill="rgb(246,12,25)" rx="2" ry="2" />
<text x="721.33" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_rehash (20,202,020 samples, 0.04%)</title><rect x="542.1" y="1093" width="0.4" height="15.0" fill="rgb(243,94,19)" rx="2" ry="2" />
<text x="545.08" y="1103.5" ></text>
</g>
<g >
<title>__poll (414,141,410 samples, 0.72%)</title><rect x="1109.4" y="1205" width="8.5" height="15.0" fill="rgb(233,16,50)" rx="2" ry="2" />
<text x="1112.38" y="1215.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1045" width="0.2" height="15.0" fill="rgb(252,0,35)" rx="2" ry="2" />
<text x="468.83" y="1055.5" ></text>
</g>
<g >
<title>zend_activate_auto_globals (10,101,010 samples, 0.02%)</title><rect x="1103.8" y="1141" width="0.2" height="15.0" fill="rgb(218,119,2)" rx="2" ry="2" />
<text x="1106.75" y="1151.5" ></text>
</g>
<g >
<title>zend_clean_and_cache_symbol_table (10,101,010 samples, 0.02%)</title><rect x="833.3" y="885" width="0.2" height="15.0" fill="rgb(236,136,54)" rx="2" ry="2" />
<text x="836.33" y="895.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="981" width="0.2" height="15.0" fill="rgb(242,136,28)" rx="2" ry="2" />
<text x="1090.50" y="991.5" ></text>
</g>
<g >
<title>zend_array_dup (40,404,040 samples, 0.07%)</title><rect x="963.5" y="1077" width="0.9" height="15.0" fill="rgb(212,200,52)" rx="2" ry="2" />
<text x="966.54" y="1087.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (191,919,190 samples, 0.34%)</title><rect x="267.7" y="1093" width="4.0" height="15.0" fill="rgb(212,63,10)" rx="2" ry="2" />
<text x="270.71" y="1103.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="998.8" y="885" width="0.2" height="15.0" fill="rgb(224,189,42)" rx="2" ry="2" />
<text x="1001.75" y="895.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (50,505,050 samples, 0.09%)</title><rect x="686.9" y="1029" width="1.0" height="15.0" fill="rgb(228,40,43)" rx="2" ry="2" />
<text x="689.88" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (101,010,100 samples, 0.18%)</title><rect x="939.4" y="517" width="2.1" height="15.0" fill="rgb(220,179,45)" rx="2" ry="2" />
<text x="942.38" y="527.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="789.0" y="821" width="0.2" height="15.0" fill="rgb(239,187,32)" rx="2" ry="2" />
<text x="791.96" y="831.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="427.1" y="805" width="0.2" height="15.0" fill="rgb(236,177,22)" rx="2" ry="2" />
<text x="430.08" y="815.5" ></text>
</g>
<g >
<title>timelib_unixtime2local (10,101,010 samples, 0.02%)</title><rect x="1021.7" y="1109" width="0.2" height="15.0" fill="rgb(205,66,10)" rx="2" ry="2" />
<text x="1024.67" y="1119.5" ></text>
</g>
<g >
<title>TRACE-297$Wikimedia\Rdbms\{closure}$390 (90,909,090 samples, 0.16%)</title><rect x="481.7" y="1141" width="1.8" height="15.0" fill="rgb(206,193,18)" rx="2" ry="2" />
<text x="484.67" y="1151.5" ></text>
</g>
<g >
<title>zm_deactivate_session (10,101,010 samples, 0.02%)</title><rect x="1101.5" y="1141" width="0.2" height="15.0" fill="rgb(232,76,4)" rx="2" ry="2" />
<text x="1104.46" y="1151.5" ></text>
</g>
<g >
<title>async_page_fault (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1109" width="0.2" height="15.0" fill="rgb(250,166,36)" rx="2" ry="2" />
<text x="1142.17" y="1119.5" ></text>
</g>
<g >
<title>_php_stream_fopen (40,404,040 samples, 0.07%)</title><rect x="948.3" y="1077" width="0.9" height="15.0" fill="rgb(223,5,9)" rx="2" ry="2" />
<text x="951.33" y="1087.5" ></text>
</g>
<g >
<title>tcp_write_xmit (212,121,210 samples, 0.37%)</title><rect x="1184.0" y="1077" width="4.3" height="15.0" fill="rgb(225,91,13)" rx="2" ry="2" />
<text x="1186.96" y="1087.5" ></text>
</g>
<g >
<title>execute_ex.cold (191,919,190 samples, 0.34%)</title><rect x="606.0" y="1141" width="4.0" height="15.0" fill="rgb(244,74,2)" rx="2" ry="2" />
<text x="609.04" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="773" width="0.2" height="15.0" fill="rgb(251,75,42)" rx="2" ry="2" />
<text x="1085.08" y="783.5" ></text>
</g>
<g >
<title>zend_accel_load_script (50,505,050 samples, 0.09%)</title><rect x="730.4" y="965" width="1.1" height="15.0" fill="rgb(208,99,14)" rx="2" ry="2" />
<text x="733.42" y="975.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="248.1" y="1109" width="0.2" height="15.0" fill="rgb(225,6,18)" rx="2" ry="2" />
<text x="251.12" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (70,707,070 samples, 0.12%)</title><rect x="933.1" y="917" width="1.5" height="15.0" fill="rgb(210,183,1)" rx="2" ry="2" />
<text x="936.12" y="927.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="607.9" y="1109" width="0.2" height="15.0" fill="rgb(232,104,3)" rx="2" ry="2" />
<text x="610.92" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1109" width="0.2" height="15.0" fill="rgb(239,174,0)" rx="2" ry="2" />
<text x="1095.08" y="1119.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="608.1" y="1093" width="0.2" height="15.0" fill="rgb(243,172,49)" rx="2" ry="2" />
<text x="611.12" y="1103.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1007.1" y="917" width="0.2" height="15.0" fill="rgb(244,173,9)" rx="2" ry="2" />
<text x="1010.08" y="927.5" ></text>
</g>
<g >
<title>get_timezone_info (20,202,020 samples, 0.04%)</title><rect x="487.1" y="1109" width="0.4" height="15.0" fill="rgb(217,17,12)" rx="2" ry="2" />
<text x="490.08" y="1119.5" ></text>
</g>
<g >
<title>rc_dtor_func (10,101,010 samples, 0.02%)</title><rect x="647.3" y="1093" width="0.2" height="15.0" fill="rgb(232,218,5)" rx="2" ry="2" />
<text x="650.29" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_del (10,101,010 samples, 0.02%)</title><rect x="674.8" y="1093" width="0.2" height="15.0" fill="rgb(249,100,52)" rx="2" ry="2" />
<text x="677.79" y="1103.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="539.4" y="565" width="0.2" height="15.0" fill="rgb(207,53,45)" rx="2" ry="2" />
<text x="542.38" y="575.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="289.8" y="1093" width="0.2" height="15.0" fill="rgb(219,141,34)" rx="2" ry="2" />
<text x="292.79" y="1103.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (8,050,504,970 samples, 14.07%)</title><rect x="36.2" y="1157" width="166.1" height="15.0" fill="rgb(240,151,51)" rx="2" ry="2" />
<text x="39.25" y="1167.5" >php_var_unserialize_i..</text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (80,808,080 samples, 0.14%)</title><rect x="751.0" y="1125" width="1.7" height="15.0" fill="rgb(209,27,31)" rx="2" ry="2" />
<text x="754.04" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="949" width="0.2" height="15.0" fill="rgb(238,68,2)" rx="2" ry="2" />
<text x="1086.33" y="959.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_TMPVAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="251.0" y="1125" width="0.5" height="15.0" fill="rgb(214,111,53)" rx="2" ry="2" />
<text x="254.04" y="1135.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (20,202,020 samples, 0.04%)</title><rect x="983.8" y="1077" width="0.4" height="15.0" fill="rgb(246,148,6)" rx="2" ry="2" />
<text x="986.75" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="850.6" y="789" width="0.2" height="15.0" fill="rgb(227,228,39)" rx="2" ry="2" />
<text x="853.62" y="799.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_free_reference_priv (30,303,030 samples, 0.05%)</title><rect x="1090.8" y="997" width="0.7" height="15.0" fill="rgb(244,142,4)" rx="2" ry="2" />
<text x="1093.83" y="1007.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="437" width="0.2" height="15.0" fill="rgb(239,75,47)" rx="2" ry="2" />
<text x="1035.92" y="447.5" ></text>
</g>
<g >
<title>zif_ksort (222,222,220 samples, 0.39%)</title><rect x="511.0" y="1125" width="4.6" height="15.0" fill="rgb(242,228,19)" rx="2" ry="2" />
<text x="514.04" y="1135.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (30,303,030 samples, 0.05%)</title><rect x="543.3" y="1109" width="0.7" height="15.0" fill="rgb(222,32,1)" rx="2" ry="2" />
<text x="546.33" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (90,909,090 samples, 0.16%)</title><rect x="716.7" y="1093" width="1.8" height="15.0" fill="rgb(240,40,10)" rx="2" ry="2" />
<text x="719.67" y="1103.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1061" width="0.3" height="15.0" fill="rgb(217,58,20)" rx="2" ry="2" />
<text x="1174.25" y="1071.5" ></text>
</g>
<g >
<title>walk_component (10,101,010 samples, 0.02%)</title><rect x="797.3" y="773" width="0.2" height="15.0" fill="rgb(241,152,19)" rx="2" ry="2" />
<text x="800.29" y="783.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="289.8" y="1109" width="0.2" height="15.0" fill="rgb(242,34,42)" rx="2" ry="2" />
<text x="292.79" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="742.7" y="757" width="0.2" height="15.0" fill="rgb(248,20,42)" rx="2" ry="2" />
<text x="745.71" y="767.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="280.2" y="1125" width="0.2" height="15.0" fill="rgb(206,109,54)" rx="2" ry="2" />
<text x="283.21" y="1135.5" ></text>
</g>
<g >
<title>zend_clean_and_cache_symbol_table (10,101,010 samples, 0.02%)</title><rect x="304.4" y="533" width="0.2" height="15.0" fill="rgb(233,28,52)" rx="2" ry="2" />
<text x="307.38" y="543.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="677.9" y="709" width="0.2" height="15.0" fill="rgb(220,194,13)" rx="2" ry="2" />
<text x="680.92" y="719.5" ></text>
</g>
<g >
<title>php_explode (10,101,010 samples, 0.02%)</title><rect x="347.3" y="1125" width="0.2" height="15.0" fill="rgb(220,183,42)" rx="2" ry="2" />
<text x="350.29" y="1135.5" ></text>
</g>
<g >
<title>php_search_array (10,101,010 samples, 0.02%)</title><rect x="484.8" y="1125" width="0.2" height="15.0" fill="rgb(244,53,13)" rx="2" ry="2" />
<text x="487.79" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="350.8" y="1109" width="0.2" height="15.0" fill="rgb(233,200,28)" rx="2" ry="2" />
<text x="353.83" y="1119.5" ></text>
</g>
<g >
<title>__vfs_read (30,303,030 samples, 0.05%)</title><rect x="217.3" y="1029" width="0.6" height="15.0" fill="rgb(247,67,40)" rx="2" ry="2" />
<text x="220.29" y="1039.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="534.8" y="821" width="0.2" height="15.0" fill="rgb(242,17,41)" rx="2" ry="2" />
<text x="537.79" y="831.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="244.4" y="1109" width="0.2" height="15.0" fill="rgb(219,106,19)" rx="2" ry="2" />
<text x="247.38" y="1119.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="476.9" y="933" width="0.2" height="15.0" fill="rgb(240,199,43)" rx="2" ry="2" />
<text x="479.88" y="943.5" ></text>
</g>
<g >
<title>_zend_new_array (10,101,010 samples, 0.02%)</title><rect x="711.5" y="1109" width="0.2" height="15.0" fill="rgb(247,99,5)" rx="2" ry="2" />
<text x="714.46" y="1119.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1045.6" y="1061" width="0.2" height="15.0" fill="rgb(250,204,15)" rx="2" ry="2" />
<text x="1048.62" y="1071.5" ></text>
</g>
<g >
<title>user_path_at_empty (141,414,140 samples, 0.25%)</title><rect x="910.6" y="965" width="2.9" height="15.0" fill="rgb(232,128,37)" rx="2" ry="2" />
<text x="913.62" y="975.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="32.3" y="837" width="0.2" height="15.0" fill="rgb(240,8,42)" rx="2" ry="2" />
<text x="35.29" y="847.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="455.0" y="1125" width="0.2" height="15.0" fill="rgb(237,131,18)" rx="2" ry="2" />
<text x="458.00" y="1135.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="805" width="1.7" height="15.0" fill="rgb(221,186,9)" rx="2" ry="2" />
<text x="1028.00" y="815.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_read_IS (10,101,010 samples, 0.02%)</title><rect x="690.2" y="1109" width="0.2" height="15.0" fill="rgb(248,31,51)" rx="2" ry="2" />
<text x="693.21" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="682.1" y="805" width="0.2" height="15.0" fill="rgb(235,94,26)" rx="2" ry="2" />
<text x="685.08" y="815.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="619.2" y="1109" width="0.2" height="15.0" fill="rgb(210,94,0)" rx="2" ry="2" />
<text x="622.17" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="484.0" y="1125" width="0.6" height="15.0" fill="rgb(246,139,12)" rx="2" ry="2" />
<text x="486.96" y="1135.5" ></text>
</g>
<g >
<title>__fget (10,101,010 samples, 0.02%)</title><rect x="1169.0" y="1093" width="0.2" height="15.0" fill="rgb(237,198,13)" rx="2" ry="2" />
<text x="1171.96" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="725" width="0.4" height="15.0" fill="rgb(219,167,16)" rx="2" ry="2" />
<text x="1035.92" y="735.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (80,808,080 samples, 0.14%)</title><rect x="939.4" y="453" width="1.6" height="15.0" fill="rgb(243,56,6)" rx="2" ry="2" />
<text x="942.38" y="463.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (30,303,030 samples, 0.05%)</title><rect x="938.5" y="645" width="0.7" height="15.0" fill="rgb(216,16,49)" rx="2" ry="2" />
<text x="941.54" y="655.5" ></text>
</g>
<g >
<title>zend_do_link_class (131,313,130 samples, 0.23%)</title><rect x="302.3" y="885" width="2.7" height="15.0" fill="rgb(225,71,26)" rx="2" ry="2" />
<text x="305.29" y="895.5" ></text>
</g>
<g >
<title>alloc_pages_current (10,101,010 samples, 0.02%)</title><rect x="946.9" y="821" width="0.2" height="15.0" fill="rgb(254,226,21)" rx="2" ry="2" />
<text x="949.88" y="831.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="475.2" y="1045" width="0.2" height="15.0" fill="rgb(245,208,39)" rx="2" ry="2" />
<text x="478.21" y="1055.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="619.4" y="1077" width="0.2" height="15.0" fill="rgb(219,72,25)" rx="2" ry="2" />
<text x="622.38" y="1087.5" ></text>
</g>
<g >
<title>zend_register_constant (171,717,170 samples, 0.30%)</title><rect x="650.8" y="1109" width="3.6" height="15.0" fill="rgb(226,26,21)" rx="2" ry="2" />
<text x="653.83" y="1119.5" ></text>
</g>
<g >
<title>TRACE-426$MediumSpecificBagOStuff::get$124 (20,202,020 samples, 0.04%)</title><rect x="517.7" y="1141" width="0.4" height="15.0" fill="rgb(249,173,44)" rx="2" ry="2" />
<text x="520.71" y="1151.5" ></text>
</g>
<g >
<title>walk_component (30,303,030 samples, 0.05%)</title><rect x="533.5" y="885" width="0.7" height="15.0" fill="rgb(218,99,8)" rx="2" ry="2" />
<text x="536.54" y="895.5" ></text>
</g>
<g >
<title>shutdown_executor (212,121,210 samples, 0.37%)</title><rect x="1092.1" y="1141" width="4.4" height="15.0" fill="rgb(247,80,54)" rx="2" ry="2" />
<text x="1095.08" y="1151.5" ></text>
</g>
<g >
<title>zif_date_format (50,505,050 samples, 0.09%)</title><rect x="480.0" y="1045" width="1.0" height="15.0" fill="rgb(250,124,26)" rx="2" ry="2" />
<text x="483.00" y="1055.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="998.8" y="725" width="0.2" height="15.0" fill="rgb(230,189,27)" rx="2" ry="2" />
<text x="1001.75" y="735.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="416.9" y="837" width="0.2" height="15.0" fill="rgb(251,180,19)" rx="2" ry="2" />
<text x="419.88" y="847.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="789.8" y="917" width="0.2" height="15.0" fill="rgb(252,160,12)" rx="2" ry="2" />
<text x="792.79" y="927.5" ></text>
</g>
<g >
<title>TRACE-306$Wikimedia\Rdbms\LoadBalancer::forEachOpenConnection$2330 (10,101,010 samples, 0.02%)</title><rect x="1082.3" y="1077" width="0.2" height="15.0" fill="rgb(223,182,0)" rx="2" ry="2" />
<text x="1085.29" y="1087.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="496.7" y="1045" width="0.2" height="15.0" fill="rgb(229,5,32)" rx="2" ry="2" />
<text x="499.67" y="1055.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="933" width="0.2" height="15.0" fill="rgb(246,71,48)" rx="2" ry="2" />
<text x="1086.33" y="943.5" ></text>
</g>
<g >
<title>audit_filter_inodes (10,101,010 samples, 0.02%)</title><rect x="946.9" y="965" width="0.2" height="15.0" fill="rgb(210,14,22)" rx="2" ry="2" />
<text x="949.88" y="975.5" ></text>
</g>
<g >
<title>TRACE-284$Wikimedia\Rdbms\LoadBalancer::finalizePrimaryChanges$1710 (40,404,040 samples, 0.07%)</title><rect x="476.5" y="1141" width="0.8" height="15.0" fill="rgb(222,169,52)" rx="2" ry="2" />
<text x="479.46" y="1151.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="32.3" y="997" width="0.2" height="15.0" fill="rgb(220,165,17)" rx="2" ry="2" />
<text x="35.29" y="1007.5" ></text>
</g>
<g >
<title>mutex_lock (10,101,010 samples, 0.02%)</title><rect x="1037.1" y="933" width="0.2" height="15.0" fill="rgb(217,188,16)" rx="2" ry="2" />
<text x="1040.08" y="943.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="524.6" y="997" width="0.4" height="15.0" fill="rgb(250,19,42)" rx="2" ry="2" />
<text x="527.58" y="1007.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="716.0" y="1109" width="0.2" height="15.0" fill="rgb(248,10,4)" rx="2" ry="2" />
<text x="719.04" y="1119.5" ></text>
</g>
<g >
<title>TRACE-245$Wikimedia\Rdbms\{closure}$248 (111,111,110 samples, 0.19%)</title><rect x="460.4" y="1141" width="2.3" height="15.0" fill="rgb(235,87,13)" rx="2" ry="2" />
<text x="463.42" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1141" width="0.2" height="15.0" fill="rgb(242,65,39)" rx="2" ry="2" />
<text x="35.29" y="1151.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (141,414,140 samples, 0.25%)</title><rect x="676.7" y="1029" width="2.9" height="15.0" fill="rgb(223,35,36)" rx="2" ry="2" />
<text x="679.67" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="395.4" y="725" width="0.2" height="15.0" fill="rgb(212,164,13)" rx="2" ry="2" />
<text x="398.42" y="735.5" ></text>
</g>
<g >
<title>do_sys_poll (30,303,030 samples, 0.05%)</title><rect x="925.2" y="805" width="0.6" height="15.0" fill="rgb(209,166,1)" rx="2" ry="2" />
<text x="928.21" y="815.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1093" width="3.3" height="15.0" fill="rgb(224,207,37)" rx="2" ry="2" />
<text x="304.67" y="1103.5" ></text>
</g>
<g >
<title>do_interface_implementation (10,101,010 samples, 0.02%)</title><rect x="799.4" y="757" width="0.2" height="15.0" fill="rgb(228,67,21)" rx="2" ry="2" />
<text x="802.38" y="767.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1045" width="0.2" height="15.0" fill="rgb(234,167,5)" rx="2" ry="2" />
<text x="1095.08" y="1055.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (181,818,180 samples, 0.32%)</title><rect x="938.3" y="741" width="3.8" height="15.0" fill="rgb(230,34,18)" rx="2" ry="2" />
<text x="941.33" y="751.5" ></text>
</g>
<g >
<title>__inet_dev_addr_type.isra.24 (10,101,010 samples, 0.02%)</title><rect x="1130.6" y="629" width="0.2" height="15.0" fill="rgb(236,141,14)" rx="2" ry="2" />
<text x="1133.62" y="639.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="852.3" y="885" width="0.4" height="15.0" fill="rgb(239,42,5)" rx="2" ry="2" />
<text x="855.29" y="895.5" ></text>
</g>
<g >
<title>strncpy_from_user (10,101,010 samples, 0.02%)</title><rect x="425.0" y="997" width="0.2" height="15.0" fill="rgb(228,193,45)" rx="2" ry="2" />
<text x="428.00" y="1007.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (20,202,020 samples, 0.04%)</title><rect x="517.7" y="1109" width="0.4" height="15.0" fill="rgb(251,78,30)" rx="2" ry="2" />
<text x="520.71" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (10,101,010 samples, 0.02%)</title><rect x="270.6" y="933" width="0.2" height="15.0" fill="rgb(231,94,14)" rx="2" ry="2" />
<text x="273.62" y="943.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="565" width="0.2" height="15.0" fill="rgb(215,210,7)" rx="2" ry="2" />
<text x="1170.08" y="575.5" ></text>
</g>
<g >
<title>ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="453.5" y="1125" width="0.7" height="15.0" fill="rgb(247,94,27)" rx="2" ry="2" />
<text x="456.54" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="881.2" y="581" width="0.3" height="15.0" fill="rgb(227,152,43)" rx="2" ry="2" />
<text x="884.25" y="591.5" ></text>
</g>
<g >
<title>__kfree_skb (20,202,020 samples, 0.04%)</title><rect x="1177.5" y="1093" width="0.4" height="15.0" fill="rgb(248,218,9)" rx="2" ry="2" />
<text x="1180.50" y="1103.5" ></text>
</g>
<g >
<title>sock_alloc_inode (10,101,010 samples, 0.02%)</title><rect x="1120.0" y="1077" width="0.2" height="15.0" fill="rgb(219,75,19)" rx="2" ry="2" />
<text x="1123.00" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="709" width="0.2" height="15.0" fill="rgb(231,148,52)" rx="2" ry="2" />
<text x="1170.08" y="719.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="1016.0" y="997" width="0.2" height="15.0" fill="rgb(251,163,1)" rx="2" ry="2" />
<text x="1019.04" y="1007.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1157" width="0.2" height="15.0" fill="rgb(218,77,46)" rx="2" ry="2" />
<text x="1118.62" y="1167.5" ></text>
</g>
<g >
<title>zend_symtable_clean (10,101,010 samples, 0.02%)</title><rect x="772.3" y="997" width="0.2" height="15.0" fill="rgb(247,161,5)" rx="2" ry="2" />
<text x="775.29" y="1007.5" ></text>
</g>
<g >
<title>destroy_op_array (10,101,010 samples, 0.02%)</title><rect x="628.5" y="1061" width="0.3" height="15.0" fill="rgb(253,199,33)" rx="2" ry="2" />
<text x="631.54" y="1071.5" ></text>
</g>
<g >
<title>rcu_all_qs (20,202,020 samples, 0.04%)</title><rect x="420.8" y="949" width="0.4" height="15.0" fill="rgb(218,20,15)" rx="2" ry="2" />
<text x="423.83" y="959.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="904.0" y="965" width="0.2" height="15.0" fill="rgb(226,3,26)" rx="2" ry="2" />
<text x="906.96" y="975.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_network_read_pub (50,505,050 samples, 0.09%)</title><rect x="925.0" y="917" width="1.0" height="15.0" fill="rgb(244,196,32)" rx="2" ry="2" />
<text x="928.00" y="927.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1125" width="0.2" height="15.0" fill="rgb(250,105,22)" rx="2" ry="2" />
<text x="205.50" y="1135.5" ></text>
</g>
<g >
<title>spl_perform_autoload (2,141,414,120 samples, 3.74%)</title><rect x="824.6" y="949" width="44.2" height="15.0" fill="rgb(244,211,33)" rx="2" ry="2" />
<text x="827.58" y="959.5" >spl_..</text>
</g>
<g >
<title>TRACE-356$Wikimedia\Rdbms\LoadBalancer::disable$1645 (40,404,040 samples, 0.07%)</title><rect x="1084.2" y="1077" width="0.8" height="15.0" fill="rgb(252,168,30)" rx="2" ry="2" />
<text x="1087.17" y="1087.5" ></text>
</g>
<g >
<title>read (141,414,140 samples, 0.25%)</title><rect x="215.6" y="1125" width="2.9" height="15.0" fill="rgb(228,18,28)" rx="2" ry="2" />
<text x="218.62" y="1135.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="300.6" y="965" width="0.2" height="15.0" fill="rgb(247,212,48)" rx="2" ry="2" />
<text x="303.62" y="975.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="1084.8" y="1045" width="0.2" height="15.0" fill="rgb(223,112,12)" rx="2" ry="2" />
<text x="1087.79" y="1055.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="508.8" y="1093" width="0.2" height="15.0" fill="rgb(230,82,33)" rx="2" ry="2" />
<text x="511.75" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="641.7" y="981" width="0.2" height="15.0" fill="rgb(231,72,30)" rx="2" ry="2" />
<text x="644.67" y="991.5" ></text>
</g>
<g >
<title>mntget (10,101,010 samples, 0.02%)</title><rect x="419.2" y="949" width="0.2" height="15.0" fill="rgb(221,37,35)" rx="2" ry="2" />
<text x="422.17" y="959.5" ></text>
</g>
<g >
<title>__secure_computing (30,303,030 samples, 0.05%)</title><rect x="936.7" y="853" width="0.6" height="15.0" fill="rgb(217,185,26)" rx="2" ry="2" />
<text x="939.67" y="863.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="705.0" y="1061" width="0.2" height="15.0" fill="rgb(247,204,45)" rx="2" ry="2" />
<text x="708.00" y="1071.5" ></text>
</g>
<g >
<title>do_interface_implementation (181,818,180 samples, 0.32%)</title><rect x="734.0" y="981" width="3.7" height="15.0" fill="rgb(254,155,17)" rx="2" ry="2" />
<text x="736.96" y="991.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (50,505,050 samples, 0.09%)</title><rect x="349.8" y="1093" width="1.0" height="15.0" fill="rgb(218,37,2)" rx="2" ry="2" />
<text x="352.79" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (20,202,020 samples, 0.04%)</title><rect x="539.4" y="1109" width="0.4" height="15.0" fill="rgb(211,208,10)" rx="2" ry="2" />
<text x="542.38" y="1119.5" ></text>
</g>
<g >
<title>TRACE-161$Wikimedia\ScopedCallback::__destruct$95 (60,606,060 samples, 0.11%)</title><rect x="447.5" y="1077" width="1.3" height="15.0" fill="rgb(211,93,17)" rx="2" ry="2" />
<text x="450.50" y="1087.5" ></text>
</g>
<g >
<title>syscall_trace_enter (50,505,050 samples, 0.09%)</title><rect x="1170.8" y="1173" width="1.1" height="15.0" fill="rgb(250,94,52)" rx="2" ry="2" />
<text x="1173.83" y="1183.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="295.2" y="1125" width="0.2" height="15.0" fill="rgb(218,99,34)" rx="2" ry="2" />
<text x="298.21" y="1135.5" ></text>
</g>
<g >
<title>zend_do_link_class (90,909,090 samples, 0.16%)</title><rect x="1002.1" y="965" width="1.9" height="15.0" fill="rgb(238,34,16)" rx="2" ry="2" />
<text x="1005.08" y="975.5" ></text>
</g>
<g >
<title>user_path_at_empty (50,505,050 samples, 0.09%)</title><rect x="956.9" y="1013" width="1.0" height="15.0" fill="rgb(211,144,5)" rx="2" ry="2" />
<text x="959.88" y="1023.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (20,202,020 samples, 0.04%)</title><rect x="184.2" y="1061" width="0.4" height="15.0" fill="rgb(221,158,3)" rx="2" ry="2" />
<text x="187.17" y="1071.5" ></text>
</g>
<g >
<title>__fget_light (10,101,010 samples, 0.02%)</title><rect x="208.8" y="1045" width="0.2" height="15.0" fill="rgb(226,129,27)" rx="2" ry="2" />
<text x="211.75" y="1055.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (20,202,020 samples, 0.04%)</title><rect x="496.5" y="1077" width="0.4" height="15.0" fill="rgb(239,206,42)" rx="2" ry="2" />
<text x="499.46" y="1087.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1061" width="0.2" height="15.0" fill="rgb(215,138,19)" rx="2" ry="2" />
<text x="347.79" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1109" width="0.2" height="15.0" fill="rgb(213,102,8)" rx="2" ry="2" />
<text x="1083.83" y="1119.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="183.8" y="709" width="0.2" height="15.0" fill="rgb(221,228,44)" rx="2" ry="2" />
<text x="186.75" y="719.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="757" width="0.4" height="15.0" fill="rgb(208,55,33)" rx="2" ry="2" />
<text x="1035.92" y="767.5" ></text>
</g>
<g >
<title>tcp_v4_connect (252,525,250 samples, 0.44%)</title><rect x="937.5" y="805" width="5.2" height="15.0" fill="rgb(232,114,44)" rx="2" ry="2" />
<text x="940.50" y="815.5" ></text>
</g>
<g >
<title>zif_is_callable (10,101,010 samples, 0.02%)</title><rect x="289.8" y="1125" width="0.2" height="15.0" fill="rgb(254,67,14)" rx="2" ry="2" />
<text x="292.79" y="1135.5" ></text>
</g>
<g >
<title>pipe_write (121,212,120 samples, 0.21%)</title><rect x="1035.0" y="949" width="2.5" height="15.0" fill="rgb(218,204,51)" rx="2" ry="2" />
<text x="1038.00" y="959.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="913.1" y="757" width="0.2" height="15.0" fill="rgb(254,158,1)" rx="2" ry="2" />
<text x="916.12" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_access (171,717,170 samples, 0.30%)</title><rect x="910.0" y="997" width="3.5" height="15.0" fill="rgb(236,65,10)" rx="2" ry="2" />
<text x="913.00" y="1007.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="190.6" y="997" width="0.2" height="15.0" fill="rgb(216,139,18)" rx="2" ry="2" />
<text x="193.62" y="1007.5" ></text>
</g>
<g >
<title>__fxstat64 (10,101,010 samples, 0.02%)</title><rect x="945.4" y="1077" width="0.2" height="15.0" fill="rgb(245,17,45)" rx="2" ry="2" />
<text x="948.42" y="1087.5" ></text>
</g>
<g >
<title>generic_permission (10,101,010 samples, 0.02%)</title><rect x="910.6" y="869" width="0.2" height="15.0" fill="rgb(215,90,12)" rx="2" ry="2" />
<text x="913.62" y="879.5" ></text>
</g>
<g >
<title>security_cred_free (10,101,010 samples, 0.02%)</title><rect x="1006.0" y="949" width="0.2" height="15.0" fill="rgb(230,57,44)" rx="2" ry="2" />
<text x="1009.04" y="959.5" ></text>
</g>
<g >
<title>__fxstat64 (10,101,010 samples, 0.02%)</title><rect x="949.4" y="1077" width="0.2" height="15.0" fill="rgb(247,107,28)" rx="2" ry="2" />
<text x="952.38" y="1087.5" ></text>
</g>
<g >
<title>ip_forward (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="565" width="2.9" height="15.0" fill="rgb(232,116,42)" rx="2" ry="2" />
<text x="1130.50" y="575.5" ></text>
</g>
<g >
<title>execute_ex (191,919,190 samples, 0.34%)</title><rect x="1026.9" y="1045" width="3.9" height="15.0" fill="rgb(235,174,51)" rx="2" ry="2" />
<text x="1029.88" y="1055.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="628.5" y="1045" width="0.3" height="15.0" fill="rgb(229,62,53)" rx="2" ry="2" />
<text x="631.54" y="1055.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1109" width="0.4" height="15.0" fill="rgb(217,142,52)" rx="2" ry="2" />
<text x="1001.75" y="1119.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (10,101,010 samples, 0.02%)</title><rect x="451.9" y="1109" width="0.2" height="15.0" fill="rgb(207,106,26)" rx="2" ry="2" />
<text x="454.88" y="1119.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (20,202,020 samples, 0.04%)</title><rect x="107.1" y="1077" width="0.4" height="15.0" fill="rgb(209,208,24)" rx="2" ry="2" />
<text x="110.08" y="1087.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_TMPVAR_HANDLER (30,303,030 samples, 0.05%)</title><rect x="247.3" y="1125" width="0.6" height="15.0" fill="rgb(223,34,51)" rx="2" ry="2" />
<text x="250.29" y="1135.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="904.0" y="725" width="0.2" height="15.0" fill="rgb(226,141,24)" rx="2" ry="2" />
<text x="906.96" y="735.5" ></text>
</g>
<g >
<title>zend_alter_ini_entry_chars (10,101,010 samples, 0.02%)</title><rect x="1030.4" y="997" width="0.2" height="15.0" fill="rgb(236,30,5)" rx="2" ry="2" />
<text x="1033.42" y="1007.5" ></text>
</g>
<g >
<title>zend_call_known_function (80,808,080 samples, 0.14%)</title><rect x="921.2" y="965" width="1.7" height="15.0" fill="rgb(218,52,24)" rx="2" ry="2" />
<text x="924.25" y="975.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="742.3" y="789" width="0.2" height="15.0" fill="rgb(246,155,11)" rx="2" ry="2" />
<text x="745.29" y="799.5" ></text>
</g>
<g >
<title>sk_alloc (10,101,010 samples, 0.02%)</title><rect x="1119.0" y="1093" width="0.2" height="15.0" fill="rgb(243,224,47)" rx="2" ry="2" />
<text x="1121.96" y="1103.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="485" width="0.4" height="15.0" fill="rgb(225,76,52)" rx="2" ry="2" />
<text x="1028.62" y="495.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="823.8" y="965" width="0.2" height="15.0" fill="rgb(241,129,35)" rx="2" ry="2" />
<text x="826.75" y="975.5" ></text>
</g>
<g >
<title>zend_deactivate (414,141,410 samples, 0.72%)</title><rect x="1091.9" y="1157" width="8.5" height="15.0" fill="rgb(205,3,18)" rx="2" ry="2" />
<text x="1094.88" y="1167.5" ></text>
</g>
<g >
<title>zend_do_link_class (30,303,030 samples, 0.05%)</title><rect x="524.0" y="997" width="0.6" height="15.0" fill="rgb(218,207,24)" rx="2" ry="2" />
<text x="526.96" y="1007.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (585,858,580 samples, 1.02%)</title><rect x="733.5" y="1029" width="12.1" height="15.0" fill="rgb(251,28,42)" rx="2" ry="2" />
<text x="736.54" y="1039.5" ></text>
</g>
<g >
<title>__legitimize_mnt (10,101,010 samples, 0.02%)</title><rect x="395.0" y="901" width="0.2" height="15.0" fill="rgb(241,25,6)" rx="2" ry="2" />
<text x="398.00" y="911.5" ></text>
</g>
<g >
<title>TRACE-216$Fandom\Includes\Cache\BagOStuffDomainCache::get$34 (80,808,080 samples, 0.14%)</title><rect x="354.0" y="1141" width="1.6" height="15.0" fill="rgb(205,86,24)" rx="2" ry="2" />
<text x="356.96" y="1151.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="773" width="0.2" height="15.0" fill="rgb(214,217,21)" rx="2" ry="2" />
<text x="1010.50" y="783.5" ></text>
</g>
<g >
<title>tcp_close (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="933" width="0.3" height="15.0" fill="rgb(238,143,28)" rx="2" ry="2" />
<text x="1026.54" y="943.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="799.8" y="645" width="0.2" height="15.0" fill="rgb(238,139,6)" rx="2" ry="2" />
<text x="802.79" y="655.5" ></text>
</g>
<g >
<title>TRACE-24$wfLoadFandomExtension$9 (131,313,130 samples, 0.23%)</title><rect x="452.5" y="1141" width="2.7" height="15.0" fill="rgb(229,134,32)" rx="2" ry="2" />
<text x="455.50" y="1151.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="1015.4" y="1013" width="0.2" height="15.0" fill="rgb(236,139,11)" rx="2" ry="2" />
<text x="1018.42" y="1023.5" ></text>
</g>
<g >
<title>do_bind_class (40,404,040 samples, 0.07%)</title><rect x="283.3" y="1013" width="0.9" height="15.0" fill="rgb(242,222,22)" rx="2" ry="2" />
<text x="286.33" y="1023.5" ></text>
</g>
<g >
<title>walk_component (10,101,010 samples, 0.02%)</title><rect x="500.8" y="885" width="0.2" height="15.0" fill="rgb(239,227,11)" rx="2" ry="2" />
<text x="503.83" y="895.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="685.6" y="949" width="0.2" height="15.0" fill="rgb(216,220,24)" rx="2" ry="2" />
<text x="688.62" y="959.5" ></text>
</g>
<g >
<title>TRACE-438$DeferredUpdates::getScopeStack$546 (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1141" width="0.3" height="15.0" fill="rgb(248,97,39)" rx="2" ry="2" />
<text x="526.54" y="1151.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="508.1" y="1109" width="0.2" height="15.0" fill="rgb(219,131,8)" rx="2" ry="2" />
<text x="511.12" y="1119.5" ></text>
</g>
<g >
<title>mod_timer (10,101,010 samples, 0.02%)</title><rect x="1188.1" y="1029" width="0.2" height="15.0" fill="rgb(248,144,8)" rx="2" ry="2" />
<text x="1191.12" y="1039.5" ></text>
</g>
<g >
<title>spl_perform_autoload (151,515,150 samples, 0.26%)</title><rect x="301.9" y="965" width="3.1" height="15.0" fill="rgb(227,212,39)" rx="2" ry="2" />
<text x="304.88" y="975.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (636,363,630 samples, 1.11%)</title><rect x="1151.5" y="885" width="13.1" height="15.0" fill="rgb(228,201,43)" rx="2" ry="2" />
<text x="1154.46" y="895.5" ></text>
</g>
<g >
<title>l4proto_manip_pkt (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="725" width="0.2" height="15.0" fill="rgb(239,189,16)" rx="2" ry="2" />
<text x="1127.17" y="735.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (50,505,050 samples, 0.09%)</title><rect x="1089.2" y="709" width="1.0" height="15.0" fill="rgb(253,45,37)" rx="2" ry="2" />
<text x="1092.17" y="719.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="904.0" y="661" width="0.2" height="15.0" fill="rgb(243,104,12)" rx="2" ry="2" />
<text x="906.96" y="671.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="1077.3" y="1093" width="0.2" height="15.0" fill="rgb(221,44,13)" rx="2" ry="2" />
<text x="1080.29" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="24.0" y="789" width="0.2" height="15.0" fill="rgb(247,170,9)" rx="2" ry="2" />
<text x="26.96" y="799.5" ></text>
</g>
<g >
<title>ZEND_COALESCE_SPEC_TMP_HANDLER (20,202,020 samples, 0.04%)</title><rect x="549.0" y="1141" width="0.4" height="15.0" fill="rgb(244,145,26)" rx="2" ry="2" />
<text x="551.96" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1093" width="0.2" height="15.0" fill="rgb(216,9,47)" rx="2" ry="2" />
<text x="906.96" y="1103.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="641.7" y="917" width="0.2" height="15.0" fill="rgb(253,10,12)" rx="2" ry="2" />
<text x="644.67" y="927.5" ></text>
</g>
<g >
<title>init_conntrack.isra.43 (10,101,010 samples, 0.02%)</title><rect x="1126.2" y="933" width="0.3" height="15.0" fill="rgb(226,72,23)" rx="2" ry="2" />
<text x="1129.25" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="821" width="3.1" height="15.0" fill="rgb(253,29,3)" rx="2" ry="2" />
<text x="1187.58" y="831.5" ></text>
</g>
<g >
<title>ip_rcv_finish (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="581" width="2.9" height="15.0" fill="rgb(243,51,21)" rx="2" ry="2" />
<text x="1130.50" y="591.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="913.1" y="821" width="0.2" height="15.0" fill="rgb(248,135,40)" rx="2" ry="2" />
<text x="916.12" y="831.5" ></text>
</g>
<g >
<title>execute_ex (50,505,050 samples, 0.09%)</title><rect x="799.4" y="821" width="1.0" height="15.0" fill="rgb(231,21,41)" rx="2" ry="2" />
<text x="802.38" y="831.5" ></text>
</g>
<g >
<title>rcu_core_si (10,101,010 samples, 0.02%)</title><rect x="950.4" y="965" width="0.2" height="15.0" fill="rgb(239,215,44)" rx="2" ry="2" />
<text x="953.42" y="975.5" ></text>
</g>
<g >
<title>do_async_page_fault (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1173" width="0.2" height="15.0" fill="rgb(232,119,29)" rx="2" ry="2" />
<text x="33.00" y="1183.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1061" width="0.2" height="15.0" fill="rgb(246,31,49)" rx="2" ry="2" />
<text x="693.62" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1061" width="0.2" height="15.0" fill="rgb(206,7,31)" rx="2" ry="2" />
<text x="1171.12" y="1071.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (171,717,170 samples, 0.30%)</title><rect x="267.9" y="1077" width="3.6" height="15.0" fill="rgb(243,163,9)" rx="2" ry="2" />
<text x="270.92" y="1087.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (20,202,020 samples, 0.04%)</title><rect x="178.5" y="1045" width="0.5" height="15.0" fill="rgb(213,159,46)" rx="2" ry="2" />
<text x="181.54" y="1055.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (70,707,070 samples, 0.12%)</title><rect x="766.9" y="1093" width="1.4" height="15.0" fill="rgb(229,58,1)" rx="2" ry="2" />
<text x="769.88" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="288.5" y="1109" width="0.5" height="15.0" fill="rgb(221,88,41)" rx="2" ry="2" />
<text x="291.54" y="1119.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="475.2" y="1093" width="0.2" height="15.0" fill="rgb(216,84,8)" rx="2" ry="2" />
<text x="478.21" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (70,707,070 samples, 0.12%)</title><rect x="217.1" y="1093" width="1.4" height="15.0" fill="rgb(214,73,29)" rx="2" ry="2" />
<text x="220.08" y="1103.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="674.2" y="1109" width="0.4" height="15.0" fill="rgb(254,111,22)" rx="2" ry="2" />
<text x="677.17" y="1119.5" ></text>
</g>
<g >
<title>zlog_ex (10,101,010 samples, 0.02%)</title><rect x="218.5" y="1141" width="0.3" height="15.0" fill="rgb(243,198,51)" rx="2" ry="2" />
<text x="221.54" y="1151.5" ></text>
</g>
<g >
<title>zif_md5 (111,111,110 samples, 0.19%)</title><rect x="1048.5" y="1125" width="2.3" height="15.0" fill="rgb(237,132,7)" rx="2" ry="2" />
<text x="1051.54" y="1135.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="427.1" y="741" width="0.2" height="15.0" fill="rgb(224,36,13)" rx="2" ry="2" />
<text x="430.08" y="751.5" ></text>
</g>
<g >
<title>php_json_encode_array (151,515,150 samples, 0.26%)</title><rect x="1045.4" y="1093" width="3.1" height="15.0" fill="rgb(243,179,20)" rx="2" ry="2" />
<text x="1048.42" y="1103.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="934.0" y="869" width="0.4" height="15.0" fill="rgb(246,157,41)" rx="2" ry="2" />
<text x="936.96" y="879.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="744.0" y="693" width="0.2" height="15.0" fill="rgb(246,129,53)" rx="2" ry="2" />
<text x="746.96" y="703.5" ></text>
</g>
<g >
<title>zm_activate_apcu (10,101,010 samples, 0.02%)</title><rect x="1105.6" y="1157" width="0.2" height="15.0" fill="rgb(247,3,16)" rx="2" ry="2" />
<text x="1108.62" y="1167.5" ></text>
</g>
<g >
<title>_emalloc_32 (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1141" width="0.2" height="15.0" fill="rgb(250,58,54)" rx="2" ry="2" />
<text x="560.29" y="1151.5" ></text>
</g>
<g >
<title>TRACE-435$MediaWiki\User\DefaultOptionsLookup::__construct$63 (10,101,010 samples, 0.02%)</title><rect x="520.6" y="1141" width="0.2" height="15.0" fill="rgb(246,151,23)" rx="2" ry="2" />
<text x="523.62" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="837" width="0.3" height="15.0" fill="rgb(215,185,49)" rx="2" ry="2" />
<text x="1134.25" y="847.5" ></text>
</g>
<g >
<title>__pollwait (10,101,010 samples, 0.02%)</title><rect x="1114.6" y="1093" width="0.2" height="15.0" fill="rgb(224,25,9)" rx="2" ry="2" />
<text x="1117.58" y="1103.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="914.6" y="965" width="0.2" height="15.0" fill="rgb(219,9,43)" rx="2" ry="2" />
<text x="917.58" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb (101,010,100 samples, 0.18%)</title><rect x="939.4" y="549" width="2.1" height="15.0" fill="rgb(210,144,20)" rx="2" ry="2" />
<text x="942.38" y="559.5" ></text>
</g>
<g >
<title>__poll (40,404,040 samples, 0.07%)</title><rect x="929.6" y="933" width="0.8" height="15.0" fill="rgb(249,191,47)" rx="2" ry="2" />
<text x="932.58" y="943.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1109" width="0.2" height="15.0" fill="rgb(205,211,51)" rx="2" ry="2" />
<text x="297.38" y="1119.5" ></text>
</g>
<g >
<title>ovl_inode_upper (50,505,050 samples, 0.09%)</title><rect x="391.2" y="917" width="1.1" height="15.0" fill="rgb(251,93,5)" rx="2" ry="2" />
<text x="394.25" y="927.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="926.9" y="725" width="0.2" height="15.0" fill="rgb(239,120,37)" rx="2" ry="2" />
<text x="929.88" y="735.5" ></text>
</g>
<g >
<title>syscall_trace_enter (30,303,030 samples, 0.05%)</title><rect x="936.7" y="869" width="0.6" height="15.0" fill="rgb(210,116,4)" rx="2" ry="2" />
<text x="939.67" y="879.5" ></text>
</g>
<g >
<title>ip_finish_output (30,303,030 samples, 0.05%)</title><rect x="1032.9" y="869" width="0.6" height="15.0" fill="rgb(217,140,33)" rx="2" ry="2" />
<text x="1035.92" y="879.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="293.8" y="1125" width="0.4" height="15.0" fill="rgb(206,122,47)" rx="2" ry="2" />
<text x="296.75" y="1135.5" ></text>
</g>
<g >
<title>TRACE-186$ResourceLoader::isValidModuleName$1847 (313,131,310 samples, 0.55%)</title><rect x="321.9" y="1141" width="6.4" height="15.0" fill="rgb(247,200,24)" rx="2" ry="2" />
<text x="324.88" y="1151.5" ></text>
</g>
<g >
<title>localeconv (10,101,010 samples, 0.02%)</title><rect x="889.2" y="1077" width="0.2" height="15.0" fill="rgb(236,91,0)" rx="2" ry="2" />
<text x="892.17" y="1087.5" ></text>
</g>
<g >
<title>tcp_recvmsg (30,303,030 samples, 0.05%)</title><rect x="1176.5" y="1109" width="0.6" height="15.0" fill="rgb(218,79,11)" rx="2" ry="2" />
<text x="1179.46" y="1119.5" ></text>
</g>
<g >
<title>parse_iv2 (10,101,010 samples, 0.02%)</title><rect x="37.1" y="1141" width="0.2" height="15.0" fill="rgb(222,209,44)" rx="2" ry="2" />
<text x="40.08" y="1151.5" ></text>
</g>
<g >
<title>iptable_nat_do_chain (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="917" width="0.3" height="15.0" fill="rgb(213,172,31)" rx="2" ry="2" />
<text x="1134.25" y="927.5" ></text>
</g>
<g >
<title>ZEND_CAST_SPEC_CV_HANDLER (90,909,090 samples, 0.16%)</title><rect x="479.2" y="1125" width="1.8" height="15.0" fill="rgb(249,200,16)" rx="2" ry="2" />
<text x="482.17" y="1135.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="482.3" y="1125" width="0.6" height="15.0" fill="rgb(214,36,46)" rx="2" ry="2" />
<text x="485.29" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_merge (20,202,020 samples, 0.04%)</title><rect x="522.9" y="1061" width="0.4" height="15.0" fill="rgb(244,131,22)" rx="2" ry="2" />
<text x="525.92" y="1071.5" ></text>
</g>
<g >
<title>zend_parse_arg (30,303,030 samples, 0.05%)</title><rect x="286.9" y="1077" width="0.6" height="15.0" fill="rgb(231,10,24)" rx="2" ry="2" />
<text x="289.88" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv_finish (474,747,470 samples, 0.83%)</title><rect x="1152.5" y="549" width="9.8" height="15.0" fill="rgb(219,107,51)" rx="2" ry="2" />
<text x="1155.50" y="559.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="693" width="0.4" height="15.0" fill="rgb(225,0,13)" rx="2" ry="2" />
<text x="1035.92" y="703.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="918.8" y="1013" width="0.2" height="15.0" fill="rgb(209,45,30)" rx="2" ry="2" />
<text x="921.75" y="1023.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="32.3" y="933" width="0.2" height="15.0" fill="rgb(250,55,25)" rx="2" ry="2" />
<text x="35.29" y="943.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="526.2" y="997" width="0.3" height="15.0" fill="rgb(249,147,27)" rx="2" ry="2" />
<text x="529.25" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="1104.4" y="1125" width="0.2" height="15.0" fill="rgb(249,84,36)" rx="2" ry="2" />
<text x="1107.38" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="193.5" y="1045" width="0.5" height="15.0" fill="rgb(207,30,18)" rx="2" ry="2" />
<text x="196.54" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (40,404,040 samples, 0.07%)</title><rect x="34.4" y="1173" width="0.8" height="15.0" fill="rgb(212,154,51)" rx="2" ry="2" />
<text x="37.38" y="1183.5" ></text>
</g>
<g >
<title>prepare_creds (30,303,030 samples, 0.05%)</title><rect x="899.8" y="1045" width="0.6" height="15.0" fill="rgb(222,166,24)" rx="2" ry="2" />
<text x="902.79" y="1055.5" ></text>
</g>
<g >
<title>zend_object_std_init (20,202,020 samples, 0.04%)</title><rect x="474.8" y="1077" width="0.4" height="15.0" fill="rgb(225,32,14)" rx="2" ry="2" />
<text x="477.79" y="1087.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1189.6" y="1173" width="0.2" height="15.0" fill="rgb(235,153,47)" rx="2" ry="2" />
<text x="1192.58" y="1183.5" ></text>
</g>
<g >
<title>zend_std_get_static_property_with_info (10,101,010 samples, 0.02%)</title><rect x="977.3" y="1093" width="0.2" height="15.0" fill="rgb(221,53,10)" rx="2" ry="2" />
<text x="980.29" y="1103.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="744.0" y="789" width="0.2" height="15.0" fill="rgb(224,26,33)" rx="2" ry="2" />
<text x="746.96" y="799.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="427.1" y="837" width="0.2" height="15.0" fill="rgb(245,63,16)" rx="2" ry="2" />
<text x="430.08" y="847.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="1045" width="0.2" height="15.0" fill="rgb(242,10,20)" rx="2" ry="2" />
<text x="1150.29" y="1055.5" ></text>
</g>
<g >
<title>__fget_light (10,101,010 samples, 0.02%)</title><rect x="942.9" y="805" width="0.2" height="15.0" fill="rgb(229,116,53)" rx="2" ry="2" />
<text x="945.92" y="815.5" ></text>
</g>
<g >
<title>zend_hash_extend (10,101,010 samples, 0.02%)</title><rect x="790.0" y="949" width="0.2" height="15.0" fill="rgb(227,129,5)" rx="2" ry="2" />
<text x="793.00" y="959.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="914.6" y="981" width="0.2" height="15.0" fill="rgb(227,100,18)" rx="2" ry="2" />
<text x="917.58" y="991.5" ></text>
</g>
<g >
<title>__vfs_getxattr (10,101,010 samples, 0.02%)</title><rect x="1135.6" y="1045" width="0.2" height="15.0" fill="rgb(210,122,9)" rx="2" ry="2" />
<text x="1138.62" y="1055.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="619.0" y="885" width="0.2" height="15.0" fill="rgb(219,46,34)" rx="2" ry="2" />
<text x="621.96" y="895.5" ></text>
</g>
<g >
<title>zend_clean_and_cache_symbol_table@plt (10,101,010 samples, 0.02%)</title><rect x="739.0" y="901" width="0.2" height="15.0" fill="rgb(225,58,14)" rx="2" ry="2" />
<text x="741.96" y="911.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="821" width="0.2" height="15.0" fill="rgb(239,162,52)" rx="2" ry="2" />
<text x="1150.29" y="831.5" ></text>
</g>
<g >
<title>TRACE-19$Wikimedia\Rdbms\LoadBalancer::getServerName$1580 (40,404,040 samples, 0.07%)</title><rect x="333.5" y="1141" width="0.9" height="15.0" fill="rgb(236,142,4)" rx="2" ry="2" />
<text x="336.54" y="1151.5" ></text>
</g>
<g >
<title>execute_ex (21,818,181,600 samples, 38.14%)</title><rect x="610.0" y="1141" width="450.0" height="15.0" fill="rgb(241,1,16)" rx="2" ry="2" />
<text x="613.00" y="1151.5" >execute_ex</text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="998.8" y="965" width="0.2" height="15.0" fill="rgb(213,93,19)" rx="2" ry="2" />
<text x="1001.75" y="975.5" ></text>
</g>
<g >
<title>generic_permission (20,202,020 samples, 0.04%)</title><rect x="900.6" y="949" width="0.4" height="15.0" fill="rgb(224,210,40)" rx="2" ry="2" />
<text x="903.62" y="959.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="501" width="0.2" height="15.0" fill="rgb(241,129,24)" rx="2" ry="2" />
<text x="1170.08" y="511.5" ></text>
</g>
<g >
<title>get_acl (10,101,010 samples, 0.02%)</title><rect x="1007.9" y="821" width="0.2" height="15.0" fill="rgb(245,206,44)" rx="2" ry="2" />
<text x="1010.92" y="831.5" ></text>
</g>
<g >
<title>virtual_file_ex (40,404,040 samples, 0.07%)</title><rect x="1107.1" y="1157" width="0.8" height="15.0" fill="rgb(240,104,29)" rx="2" ry="2" />
<text x="1110.08" y="1167.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="442.3" y="885" width="0.2" height="15.0" fill="rgb(248,59,7)" rx="2" ry="2" />
<text x="445.29" y="895.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="755.4" y="1125" width="0.4" height="15.0" fill="rgb(237,52,3)" rx="2" ry="2" />
<text x="758.42" y="1135.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="142.3" y="1061" width="0.2" height="15.0" fill="rgb(253,6,27)" rx="2" ry="2" />
<text x="145.29" y="1071.5" ></text>
</g>
<g >
<title>[perf-25503.map] (10,101,010 samples, 0.02%)</title><rect x="960.2" y="1077" width="0.2" height="15.0" fill="rgb(253,12,52)" rx="2" ry="2" />
<text x="963.21" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="333.1" y="1109" width="0.4" height="15.0" fill="rgb(236,59,2)" rx="2" ry="2" />
<text x="336.12" y="1119.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (20,202,020 samples, 0.04%)</title><rect x="797.1" y="789" width="0.4" height="15.0" fill="rgb(247,76,45)" rx="2" ry="2" />
<text x="800.08" y="799.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1125" width="0.2" height="15.0" fill="rgb(206,169,29)" rx="2" ry="2" />
<text x="33.00" y="1135.5" ></text>
</g>
<g >
<title>php_var_unserialize (161,616,160 samples, 0.28%)</title><rect x="1136.7" y="1189" width="3.3" height="15.0" fill="rgb(229,199,42)" rx="2" ry="2" />
<text x="1139.67" y="1199.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="709" width="0.2" height="15.0" fill="rgb(213,192,18)" rx="2" ry="2" />
<text x="1085.08" y="719.5" ></text>
</g>
<g >
<title>JIT$$leave_function (10,101,010 samples, 0.02%)</title><rect x="304.4" y="549" width="0.2" height="15.0" fill="rgb(246,24,35)" rx="2" ry="2" />
<text x="307.38" y="559.5" ></text>
</g>
<g >
<title>TRACE-263$Wikimedia\Rdbms\LoadBalancer::runPrimaryTransactionIdleCallbacks$1934 (30,303,030 samples, 0.05%)</title><rect x="469.4" y="1141" width="0.6" height="15.0" fill="rgb(228,16,1)" rx="2" ry="2" />
<text x="472.38" y="1151.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="533.1" y="917" width="0.2" height="15.0" fill="rgb(221,14,7)" rx="2" ry="2" />
<text x="536.12" y="927.5" ></text>
</g>
<g >
<title>process_backlog (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="853" width="3.1" height="15.0" fill="rgb(241,214,15)" rx="2" ry="2" />
<text x="1187.58" y="863.5" ></text>
</g>
<g >
<title>tcp_release_cb (10,101,010 samples, 0.02%)</title><rect x="1179.8" y="1093" width="0.2" height="15.0" fill="rgb(206,37,21)" rx="2" ry="2" />
<text x="1182.79" y="1103.5" ></text>
</g>
<g >
<title>zif_parse_url (10,101,010 samples, 0.02%)</title><rect x="1074.2" y="1141" width="0.2" height="15.0" fill="rgb(217,23,30)" rx="2" ry="2" />
<text x="1077.17" y="1151.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="1181.0" y="1125" width="0.2" height="15.0" fill="rgb(253,73,26)" rx="2" ry="2" />
<text x="1184.04" y="1135.5" ></text>
</g>
<g >
<title>tcp_send_fin (242,424,240 samples, 0.42%)</title><rect x="1183.3" y="1109" width="5.0" height="15.0" fill="rgb(234,114,15)" rx="2" ry="2" />
<text x="1186.33" y="1119.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="853" width="0.2" height="15.0" fill="rgb(247,113,38)" rx="2" ry="2" />
<text x="1085.08" y="863.5" ></text>
</g>
<g >
<title>zend_hash_set_bucket_key (10,101,010 samples, 0.02%)</title><rect x="1019.2" y="1013" width="0.2" height="15.0" fill="rgb(206,23,19)" rx="2" ry="2" />
<text x="1022.17" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,292,929,280 samples, 2.26%)</title><rect x="1145.2" y="1189" width="26.7" height="15.0" fill="rgb(250,154,2)" rx="2" ry="2" />
<text x="1148.21" y="1199.5" >d..</text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="955.4" y="997" width="0.2" height="15.0" fill="rgb(254,35,28)" rx="2" ry="2" />
<text x="958.42" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="883.1" y="1061" width="0.4" height="15.0" fill="rgb(238,95,28)" rx="2" ry="2" />
<text x="886.12" y="1071.5" ></text>
</g>
<g >
<title>tcp_v4_send_check (10,101,010 samples, 0.02%)</title><rect x="1167.3" y="1029" width="0.2" height="15.0" fill="rgb(248,104,25)" rx="2" ry="2" />
<text x="1170.29" y="1039.5" ></text>
</g>
<g >
<title>_call_user_function_impl (30,303,030 samples, 0.05%)</title><rect x="1076.9" y="1109" width="0.6" height="15.0" fill="rgb(205,200,24)" rx="2" ry="2" />
<text x="1079.88" y="1119.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_set_client_option_pub (10,101,010 samples, 0.02%)</title><rect x="955.2" y="1061" width="0.2" height="15.0" fill="rgb(220,64,38)" rx="2" ry="2" />
<text x="958.21" y="1071.5" ></text>
</g>
<g >
<title>TRACE-377$Composer\Autoload\ClassLoader::loadClass$427 (10,101,010 samples, 0.02%)</title><rect x="834.4" y="917" width="0.2" height="15.0" fill="rgb(249,112,24)" rx="2" ry="2" />
<text x="837.38" y="927.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="683.5" y="1061" width="0.3" height="15.0" fill="rgb(214,76,49)" rx="2" ry="2" />
<text x="686.54" y="1071.5" ></text>
</g>
<g >
<title>ip_local_out (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="901" width="0.9" height="15.0" fill="rgb(233,169,38)" rx="2" ry="2" />
<text x="1035.92" y="911.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="875.6" y="917" width="0.2" height="15.0" fill="rgb(215,132,54)" rx="2" ry="2" />
<text x="878.62" y="927.5" ></text>
</g>
<g >
<title>zend_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="929.2" y="965" width="0.2" height="15.0" fill="rgb(231,219,18)" rx="2" ry="2" />
<text x="932.17" y="975.5" ></text>
</g>
<g >
<title>ZEND_FE_FETCH_R_SPEC_VAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="1083.3" y="1061" width="0.5" height="15.0" fill="rgb(229,179,1)" rx="2" ry="2" />
<text x="1086.33" y="1071.5" ></text>
</g>
<g >
<title>__close (111,111,110 samples, 0.19%)</title><rect x="1088.5" y="965" width="2.3" height="15.0" fill="rgb(229,64,6)" rx="2" ry="2" />
<text x="1091.54" y="975.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="718.3" y="869" width="0.2" height="15.0" fill="rgb(217,95,46)" rx="2" ry="2" />
<text x="721.33" y="879.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (20,202,020 samples, 0.04%)</title><rect x="301.0" y="981" width="0.5" height="15.0" fill="rgb(206,55,28)" rx="2" ry="2" />
<text x="304.04" y="991.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="1031.9" y="949" width="0.2" height="15.0" fill="rgb(228,65,28)" rx="2" ry="2" />
<text x="1034.88" y="959.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1086.2" y="981" width="0.3" height="15.0" fill="rgb(227,146,49)" rx="2" ry="2" />
<text x="1089.25" y="991.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (20,202,020 samples, 0.04%)</title><rect x="983.3" y="1077" width="0.5" height="15.0" fill="rgb(210,212,4)" rx="2" ry="2" />
<text x="986.33" y="1087.5" ></text>
</g>
<g >
<title>zend_jit_fast_concat_helper (20,202,020 samples, 0.04%)</title><rect x="1067.1" y="1141" width="0.4" height="15.0" fill="rgb(218,85,46)" rx="2" ry="2" />
<text x="1070.08" y="1151.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (30,303,030 samples, 0.05%)</title><rect x="739.6" y="917" width="0.6" height="15.0" fill="rgb(229,87,13)" rx="2" ry="2" />
<text x="742.58" y="927.5" ></text>
</g>
<g >
<title>ZEND_PRE_INC_OBJ_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1001.9" y="1093" width="0.2" height="15.0" fill="rgb(217,154,43)" rx="2" ry="2" />
<text x="1004.88" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="339.2" y="1013" width="0.4" height="15.0" fill="rgb(247,171,32)" rx="2" ry="2" />
<text x="342.17" y="1023.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (101,010,100 samples, 0.18%)</title><rect x="419.4" y="981" width="2.1" height="15.0" fill="rgb(251,182,25)" rx="2" ry="2" />
<text x="422.38" y="991.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (191,919,190 samples, 0.34%)</title><rect x="1015.4" y="1045" width="4.0" height="15.0" fill="rgb(244,218,13)" rx="2" ry="2" />
<text x="1018.42" y="1055.5" ></text>
</g>
<g >
<title>cap_inode_getsecurity (20,202,020 samples, 0.04%)</title><rect x="956.9" y="853" width="0.4" height="15.0" fill="rgb(246,226,46)" rx="2" ry="2" />
<text x="959.88" y="863.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="677.3" y="869" width="0.4" height="15.0" fill="rgb(219,37,41)" rx="2" ry="2" />
<text x="680.29" y="879.5" ></text>
</g>
<g >
<title>mysqlnd_read_header (40,404,040 samples, 0.07%)</title><rect x="929.6" y="997" width="0.8" height="15.0" fill="rgb(232,40,44)" rx="2" ry="2" />
<text x="932.58" y="1007.5" ></text>
</g>
<g >
<title>strncpy_from_user (10,101,010 samples, 0.02%)</title><rect x="534.8" y="917" width="0.2" height="15.0" fill="rgb(253,172,19)" rx="2" ry="2" />
<text x="537.79" y="927.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="881.2" y="325" width="0.3" height="15.0" fill="rgb(244,144,21)" rx="2" ry="2" />
<text x="884.25" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (292,929,290 samples, 0.51%)</title><rect x="1182.9" y="1205" width="6.1" height="15.0" fill="rgb(248,156,36)" rx="2" ry="2" />
<text x="1185.92" y="1215.5" ></text>
</g>
<g >
<title>nfnetlink_has_listeners (10,101,010 samples, 0.02%)</title><rect x="193.8" y="741" width="0.2" height="15.0" fill="rgb(231,137,48)" rx="2" ry="2" />
<text x="196.75" y="751.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="981" width="0.2" height="15.0" fill="rgb(233,0,22)" rx="2" ry="2" />
<text x="1086.33" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="654.2" y="981" width="0.2" height="15.0" fill="rgb(252,92,52)" rx="2" ry="2" />
<text x="657.17" y="991.5" ></text>
</g>
<g >
<title>veth_xmit (20,202,020 samples, 0.04%)</title><rect x="1130.8" y="885" width="0.4" height="15.0" fill="rgb(211,2,44)" rx="2" ry="2" />
<text x="1133.83" y="895.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (141,414,140 samples, 0.25%)</title><rect x="854.4" y="837" width="2.9" height="15.0" fill="rgb(227,104,10)" rx="2" ry="2" />
<text x="857.38" y="847.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (50,505,050 samples, 0.09%)</title><rect x="720.8" y="1045" width="1.1" height="15.0" fill="rgb(243,42,18)" rx="2" ry="2" />
<text x="723.83" y="1055.5" ></text>
</g>
<g >
<title>_efree_32 (20,202,020 samples, 0.04%)</title><rect x="989.6" y="1093" width="0.4" height="15.0" fill="rgb(206,24,52)" rx="2" ry="2" />
<text x="992.58" y="1103.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="24.0" y="869" width="0.2" height="15.0" fill="rgb(253,30,34)" rx="2" ry="2" />
<text x="26.96" y="879.5" ></text>
</g>
<g >
<title>instanceof_function_slow (10,101,010 samples, 0.02%)</title><rect x="503.3" y="1125" width="0.2" height="15.0" fill="rgb(252,184,49)" rx="2" ry="2" />
<text x="506.33" y="1135.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="1135.8" y="1077" width="0.2" height="15.0" fill="rgb(211,174,22)" rx="2" ry="2" />
<text x="1138.83" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1037.3" y="885" width="0.2" height="15.0" fill="rgb(210,99,36)" rx="2" ry="2" />
<text x="1040.29" y="895.5" ></text>
</g>
<g >
<title>zend_include_or_eval (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="853" width="1.5" height="15.0" fill="rgb(252,121,6)" rx="2" ry="2" />
<text x="1005.50" y="863.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="1013" width="0.2" height="15.0" fill="rgb(235,108,27)" rx="2" ry="2" />
<text x="1170.08" y="1023.5" ></text>
</g>
<g >
<title>zend_closure_bind_var_ex (10,101,010 samples, 0.02%)</title><rect x="469.2" y="1109" width="0.2" height="15.0" fill="rgb(220,94,15)" rx="2" ry="2" />
<text x="472.17" y="1119.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="549.8" y="1141" width="0.6" height="15.0" fill="rgb(213,83,31)" rx="2" ry="2" />
<text x="552.79" y="1151.5" ></text>
</g>
<g >
<title>xfrm_lookup_route (10,101,010 samples, 0.02%)</title><rect x="1124.8" y="1061" width="0.2" height="15.0" fill="rgb(212,229,52)" rx="2" ry="2" />
<text x="1127.79" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="799.0" y="853" width="0.2" height="15.0" fill="rgb(217,146,29)" rx="2" ry="2" />
<text x="801.96" y="863.5" ></text>
</g>
<g >
<title>TRACE-108${closure}$451 (10,101,010 samples, 0.02%)</title><rect x="498.8" y="1109" width="0.2" height="15.0" fill="rgb(233,184,4)" rx="2" ry="2" />
<text x="501.75" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1045.6" y="1045" width="0.2" height="15.0" fill="rgb(238,19,5)" rx="2" ry="2" />
<text x="1048.62" y="1055.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="943.1" y="853" width="0.2" height="15.0" fill="rgb(206,112,30)" rx="2" ry="2" />
<text x="946.12" y="863.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="731.2" y="837" width="0.3" height="15.0" fill="rgb(209,97,43)" rx="2" ry="2" />
<text x="734.25" y="847.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="950.4" y="981" width="0.2" height="15.0" fill="rgb(217,177,14)" rx="2" ry="2" />
<text x="953.42" y="991.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="644.2" y="1045" width="0.2" height="15.0" fill="rgb(211,31,24)" rx="2" ry="2" />
<text x="647.17" y="1055.5" ></text>
</g>
<g >
<title>zend_traits_copy_functions (30,303,030 samples, 0.05%)</title><rect x="745.0" y="981" width="0.6" height="15.0" fill="rgb(218,149,35)" rx="2" ry="2" />
<text x="748.00" y="991.5" ></text>
</g>
<g >
<title>apc_time (10,101,010 samples, 0.02%)</title><rect x="1123.5" y="1205" width="0.3" height="15.0" fill="rgb(206,157,48)" rx="2" ry="2" />
<text x="1126.54" y="1215.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="692.1" y="1045" width="0.2" height="15.0" fill="rgb(224,40,54)" rx="2" ry="2" />
<text x="695.08" y="1055.5" ></text>
</g>
<g >
<title>TRACE-196$GlobalVarConfig::hasWithPrefix$90 (20,202,020 samples, 0.04%)</title><rect x="340.6" y="1141" width="0.4" height="15.0" fill="rgb(227,26,39)" rx="2" ry="2" />
<text x="343.62" y="1151.5" ></text>
</g>
<g >
<title>fcgi_read_request (10,101,010 samples, 0.02%)</title><rect x="206.2" y="1157" width="0.3" height="15.0" fill="rgb(227,193,39)" rx="2" ry="2" />
<text x="209.25" y="1167.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="913.1" y="773" width="0.2" height="15.0" fill="rgb(242,229,21)" rx="2" ry="2" />
<text x="916.12" y="783.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (101,010,100 samples, 0.18%)</title><rect x="1002.1" y="1109" width="2.1" height="15.0" fill="rgb(245,80,15)" rx="2" ry="2" />
<text x="1005.08" y="1119.5" ></text>
</g>
<g >
<title>tcp_small_queue_check.isra.33 (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="1029" width="0.2" height="15.0" fill="rgb(205,43,22)" rx="2" ry="2" />
<text x="1170.08" y="1039.5" ></text>
</g>
<g >
<title>zend_std_get_method (111,111,110 samples, 0.19%)</title><rect x="716.2" y="1109" width="2.3" height="15.0" fill="rgb(210,138,35)" rx="2" ry="2" />
<text x="719.25" y="1119.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="686.7" y="965" width="0.2" height="15.0" fill="rgb(215,108,51)" rx="2" ry="2" />
<text x="689.67" y="975.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="444.6" y="1093" width="0.4" height="15.0" fill="rgb(206,121,51)" rx="2" ry="2" />
<text x="447.58" y="1103.5" ></text>
</g>
<g >
<title>__vfs_write (70,707,070 samples, 0.12%)</title><rect x="213.3" y="997" width="1.5" height="15.0" fill="rgb(212,147,49)" rx="2" ry="2" />
<text x="216.33" y="1007.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (10,101,010 samples, 0.02%)</title><rect x="1147.9" y="1045" width="0.2" height="15.0" fill="rgb(221,38,11)" rx="2" ry="2" />
<text x="1150.92" y="1055.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="904.8" y="1061" width="0.2" height="15.0" fill="rgb(241,136,45)" rx="2" ry="2" />
<text x="907.79" y="1071.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="1013" width="0.2" height="15.0" fill="rgb(230,173,38)" rx="2" ry="2" />
<text x="1127.17" y="1023.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="949" width="0.2" height="15.0" fill="rgb(238,31,38)" rx="2" ry="2" />
<text x="1015.92" y="959.5" ></text>
</g>
<g >
<title>copy_page_to_iter (10,101,010 samples, 0.02%)</title><rect x="946.5" y="885" width="0.2" height="15.0" fill="rgb(235,53,49)" rx="2" ry="2" />
<text x="949.46" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="30.2" y="901" width="0.2" height="15.0" fill="rgb(205,176,39)" rx="2" ry="2" />
<text x="33.21" y="911.5" ></text>
</g>
<g >
<title>access (20,202,020 samples, 0.04%)</title><rect x="1018.8" y="917" width="0.4" height="15.0" fill="rgb(244,136,47)" rx="2" ry="2" />
<text x="1021.75" y="927.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (101,010,100 samples, 0.18%)</title><rect x="1115.8" y="1157" width="2.1" height="15.0" fill="rgb(239,55,34)" rx="2" ry="2" />
<text x="1118.83" y="1167.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (30,303,030 samples, 0.05%)</title><rect x="1057.9" y="1061" width="0.6" height="15.0" fill="rgb(220,104,13)" rx="2" ry="2" />
<text x="1060.92" y="1071.5" ></text>
</g>
<g >
<title>zend_parse_va_args (40,404,040 samples, 0.07%)</title><rect x="1057.7" y="1093" width="0.8" height="15.0" fill="rgb(248,189,49)" rx="2" ry="2" />
<text x="1060.71" y="1103.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="955.4" y="1045" width="0.2" height="15.0" fill="rgb(209,94,5)" rx="2" ry="2" />
<text x="958.42" y="1055.5" ></text>
</g>
<g >
<title>ZEND_IS_NOT_IDENTICAL_NOTHROW_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="756.7" y="1125" width="0.2" height="15.0" fill="rgb(246,107,50)" rx="2" ry="2" />
<text x="759.67" y="1135.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="1106.9" y="1125" width="0.2" height="15.0" fill="rgb(235,163,14)" rx="2" ry="2" />
<text x="1109.88" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (60,606,060 samples, 0.11%)</title><rect x="683.8" y="1029" width="1.2" height="15.0" fill="rgb(205,229,24)" rx="2" ry="2" />
<text x="686.75" y="1039.5" ></text>
</g>
<g >
<title>memcached_behavior_get (10,101,010 samples, 0.02%)</title><rect x="1134.4" y="1205" width="0.2" height="15.0" fill="rgb(244,45,0)" rx="2" ry="2" />
<text x="1137.38" y="1215.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (70,707,070 samples, 0.12%)</title><rect x="916.5" y="933" width="1.4" height="15.0" fill="rgb(209,216,18)" rx="2" ry="2" />
<text x="919.46" y="943.5" ></text>
</g>
<g >
<title>zm_deactivate_mbstring (10,101,010 samples, 0.02%)</title><rect x="1101.0" y="1141" width="0.2" height="15.0" fill="rgb(241,153,35)" rx="2" ry="2" />
<text x="1104.04" y="1151.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="918.8" y="1029" width="0.2" height="15.0" fill="rgb(217,150,12)" rx="2" ry="2" />
<text x="921.75" y="1039.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="218.3" y="1045" width="0.2" height="15.0" fill="rgb(252,147,20)" rx="2" ry="2" />
<text x="221.33" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="672.5" y="965" width="0.2" height="15.0" fill="rgb(252,62,28)" rx="2" ry="2" />
<text x="675.50" y="975.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="243.8" y="1125" width="0.2" height="15.0" fill="rgb(220,164,21)" rx="2" ry="2" />
<text x="246.75" y="1135.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (80,808,080 samples, 0.14%)</title><rect x="712.5" y="1077" width="1.7" height="15.0" fill="rgb(244,158,9)" rx="2" ry="2" />
<text x="715.50" y="1087.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="107.3" y="997" width="0.2" height="15.0" fill="rgb(229,40,11)" rx="2" ry="2" />
<text x="110.29" y="1007.5" ></text>
</g>
<g >
<title>destroy_op_array (101,010,100 samples, 0.18%)</title><rect x="1094.2" y="1093" width="2.0" height="15.0" fill="rgb(240,49,18)" rx="2" ry="2" />
<text x="1097.17" y="1103.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="881.2" y="309" width="0.3" height="15.0" fill="rgb(211,176,5)" rx="2" ry="2" />
<text x="884.25" y="319.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="581" width="0.3" height="15.0" fill="rgb(232,179,53)" rx="2" ry="2" />
<text x="1134.25" y="591.5" ></text>
</g>
<g >
<title>__ip_local_out (30,303,030 samples, 0.05%)</title><rect x="1184.0" y="997" width="0.6" height="15.0" fill="rgb(216,55,7)" rx="2" ry="2" />
<text x="1186.96" y="1007.5" ></text>
</g>
<g >
<title>do_faccessat (90,909,090 samples, 0.16%)</title><rect x="533.1" y="965" width="1.9" height="15.0" fill="rgb(253,48,19)" rx="2" ry="2" />
<text x="536.12" y="975.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="549" width="0.2" height="15.0" fill="rgb(251,132,17)" rx="2" ry="2" />
<text x="1085.08" y="559.5" ></text>
</g>
<g >
<title>zval_get_long_func (30,303,030 samples, 0.05%)</title><rect x="299.0" y="1109" width="0.6" height="15.0" fill="rgb(251,29,3)" rx="2" ry="2" />
<text x="301.96" y="1119.5" ></text>
</g>
<g >
<title>ip_sabotage_in (111,111,110 samples, 0.19%)</title><rect x="1185.0" y="597" width="2.3" height="15.0" fill="rgb(246,106,48)" rx="2" ry="2" />
<text x="1188.00" y="607.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="489.4" y="1109" width="0.2" height="15.0" fill="rgb(226,48,7)" rx="2" ry="2" />
<text x="492.38" y="1119.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="248.8" y="1045" width="0.2" height="15.0" fill="rgb(205,150,14)" rx="2" ry="2" />
<text x="251.75" y="1055.5" ></text>
</g>
<g >
<title>zend_std_read_property (10,101,010 samples, 0.02%)</title><rect x="695.0" y="1109" width="0.2" height="15.0" fill="rgb(230,203,52)" rx="2" ry="2" />
<text x="698.00" y="1119.5" ></text>
</g>
<g >
<title>object_init_ex (30,303,030 samples, 0.05%)</title><rect x="887.1" y="1109" width="0.6" height="15.0" fill="rgb(212,174,47)" rx="2" ry="2" />
<text x="890.08" y="1119.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1109" width="0.2" height="15.0" fill="rgb(230,171,23)" rx="2" ry="2" />
<text x="479.88" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="742.7" y="741" width="0.2" height="15.0" fill="rgb(252,101,34)" rx="2" ry="2" />
<text x="745.71" y="751.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="1013" width="0.2" height="15.0" fill="rgb(215,125,48)" rx="2" ry="2" />
<text x="1085.08" y="1023.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="850.6" y="357" width="0.2" height="15.0" fill="rgb(240,26,11)" rx="2" ry="2" />
<text x="853.62" y="367.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="597" width="0.2" height="15.0" fill="rgb(242,219,54)" rx="2" ry="2" />
<text x="1085.08" y="607.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="304.2" y="629" width="0.2" height="15.0" fill="rgb(236,88,22)" rx="2" ry="2" />
<text x="307.17" y="639.5" ></text>
</g>
<g >
<title>tcp_in_window (10,101,010 samples, 0.02%)</title><rect x="890.0" y="837" width="0.2" height="15.0" fill="rgb(236,29,39)" rx="2" ry="2" />
<text x="893.00" y="847.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (10,101,010 samples, 0.02%)</title><rect x="247.9" y="1125" width="0.2" height="15.0" fill="rgb(208,94,39)" rx="2" ry="2" />
<text x="250.92" y="1135.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="481.0" y="1093" width="0.2" height="15.0" fill="rgb(208,140,6)" rx="2" ry="2" />
<text x="484.04" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_ARRAY_SPEC_TMP_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="553.1" y="1141" width="0.4" height="15.0" fill="rgb(210,209,42)" rx="2" ry="2" />
<text x="556.12" y="1151.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="791.5" y="997" width="0.2" height="15.0" fill="rgb(250,177,38)" rx="2" ry="2" />
<text x="794.46" y="1007.5" ></text>
</g>
<g >
<title>zend_alter_ini_entry_ex (10,101,010 samples, 0.02%)</title><rect x="1030.4" y="981" width="0.2" height="15.0" fill="rgb(238,1,22)" rx="2" ry="2" />
<text x="1033.42" y="991.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="805" width="0.3" height="15.0" fill="rgb(236,135,13)" rx="2" ry="2" />
<text x="1134.25" y="815.5" ></text>
</g>
<g >
<title>tcp_sendmsg (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="917" width="2.7" height="15.0" fill="rgb(234,124,24)" rx="2" ry="2" />
<text x="1026.96" y="927.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_ANON_CLASS_SPEC_HANDLER (20,202,020 samples, 0.04%)</title><rect x="649.2" y="1125" width="0.4" height="15.0" fill="rgb(206,203,53)" rx="2" ry="2" />
<text x="652.17" y="1135.5" ></text>
</g>
<g >
<title>_emalloc (202,020,200 samples, 0.35%)</title><rect x="128.1" y="1077" width="4.2" height="15.0" fill="rgb(254,42,46)" rx="2" ry="2" />
<text x="131.12" y="1087.5" ></text>
</g>
<g >
<title>nf_nat_packet (10,101,010 samples, 0.02%)</title><rect x="24.0" y="725" width="0.2" height="15.0" fill="rgb(252,228,37)" rx="2" ry="2" />
<text x="26.96" y="735.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="32.3" y="789" width="0.2" height="15.0" fill="rgb(221,61,11)" rx="2" ry="2" />
<text x="35.29" y="799.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="45.8" y="1109" width="0.2" height="15.0" fill="rgb(215,183,45)" rx="2" ry="2" />
<text x="48.83" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="1061" width="0.2" height="15.0" fill="rgb(214,164,52)" rx="2" ry="2" />
<text x="1085.08" y="1071.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="405" width="0.4" height="15.0" fill="rgb(233,205,30)" rx="2" ry="2" />
<text x="1028.62" y="415.5" ></text>
</g>
<g >
<title>zend_is_true (20,202,020 samples, 0.04%)</title><rect x="722.3" y="1029" width="0.4" height="15.0" fill="rgb(234,19,6)" rx="2" ry="2" />
<text x="725.29" y="1039.5" ></text>
</g>
<g >
<title>fq_codel_dequeue (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="341" width="0.3" height="15.0" fill="rgb(233,140,16)" rx="2" ry="2" />
<text x="1134.25" y="351.5" ></text>
</g>
<g >
<title>connect (262,626,260 samples, 0.46%)</title><rect x="937.3" y="917" width="5.4" height="15.0" fill="rgb(222,133,52)" rx="2" ry="2" />
<text x="940.29" y="927.5" ></text>
</g>
<g >
<title>ip_finish_output (101,010,100 samples, 0.18%)</title><rect x="1127.5" y="517" width="2.1" height="15.0" fill="rgb(252,158,45)" rx="2" ry="2" />
<text x="1130.50" y="527.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="303.1" y="773" width="0.2" height="15.0" fill="rgb(245,181,48)" rx="2" ry="2" />
<text x="306.12" y="783.5" ></text>
</g>
<g >
<title>skb_free_head (10,101,010 samples, 0.02%)</title><rect x="806.0" y="581" width="0.2" height="15.0" fill="rgb(212,217,11)" rx="2" ry="2" />
<text x="809.04" y="591.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="1136.0" y="1077" width="0.2" height="15.0" fill="rgb(216,50,35)" rx="2" ry="2" />
<text x="1139.04" y="1087.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="522.1" y="1093" width="0.2" height="15.0" fill="rgb(235,170,0)" rx="2" ry="2" />
<text x="525.08" y="1103.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="922.3" y="821" width="0.2" height="15.0" fill="rgb(251,91,1)" rx="2" ry="2" />
<text x="925.29" y="831.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_R_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1031.5" y="981" width="0.2" height="15.0" fill="rgb(210,226,53)" rx="2" ry="2" />
<text x="1034.46" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="300.4" y="933" width="0.2" height="15.0" fill="rgb(211,71,12)" rx="2" ry="2" />
<text x="303.42" y="943.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="523.8" y="997" width="0.2" height="15.0" fill="rgb(213,3,27)" rx="2" ry="2" />
<text x="526.75" y="1007.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="1106.7" y="1141" width="0.4" height="15.0" fill="rgb(251,47,51)" rx="2" ry="2" />
<text x="1109.67" y="1151.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (161,616,160 samples, 0.28%)</title><rect x="276.2" y="1045" width="3.4" height="15.0" fill="rgb(230,5,14)" rx="2" ry="2" />
<text x="279.25" y="1055.5" ></text>
</g>
<g >
<title>__errno_location (10,101,010 samples, 0.02%)</title><rect x="35.4" y="1189" width="0.2" height="15.0" fill="rgb(206,213,32)" rx="2" ry="2" />
<text x="38.42" y="1199.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (30,303,030 samples, 0.05%)</title><rect x="659.6" y="1109" width="0.6" height="15.0" fill="rgb(215,59,8)" rx="2" ry="2" />
<text x="662.58" y="1119.5" ></text>
</g>
<g >
<title>tcp_data_ready (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="453" width="0.4" height="15.0" fill="rgb(242,71,11)" rx="2" ry="2" />
<text x="1028.62" y="463.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="339.6" y="981" width="0.2" height="15.0" fill="rgb(254,193,50)" rx="2" ry="2" />
<text x="342.58" y="991.5" ></text>
</g>
<g >
<title>TRACE-256$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$124 (50,505,050 samples, 0.09%)</title><rect x="464.8" y="1141" width="1.0" height="15.0" fill="rgb(222,80,0)" rx="2" ry="2" />
<text x="467.79" y="1151.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="941.0" y="469" width="0.5" height="15.0" fill="rgb(242,219,45)" rx="2" ry="2" />
<text x="944.04" y="479.5" ></text>
</g>
<g >
<title>ip_output (292,929,290 samples, 0.51%)</title><rect x="1152.7" y="501" width="6.1" height="15.0" fill="rgb(234,76,30)" rx="2" ry="2" />
<text x="1155.71" y="511.5" ></text>
</g>
<g >
<title>net_rx_action (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="869" width="3.3" height="15.0" fill="rgb(253,174,41)" rx="2" ry="2" />
<text x="1130.50" y="879.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="450.4" y="1061" width="0.2" height="15.0" fill="rgb(237,10,21)" rx="2" ry="2" />
<text x="453.42" y="1071.5" ></text>
</g>
<g >
<title>tcp_push (121,212,120 samples, 0.21%)</title><rect x="1024.2" y="885" width="2.5" height="15.0" fill="rgb(238,168,53)" rx="2" ry="2" />
<text x="1027.17" y="895.5" ></text>
</g>
<g >
<title>_php_stream_fill_read_buffer (80,808,080 samples, 0.14%)</title><rect x="926.2" y="901" width="1.7" height="15.0" fill="rgb(227,191,42)" rx="2" ry="2" />
<text x="929.25" y="911.5" ></text>
</g>
<g >
<title>ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="472.7" y="1125" width="0.2" height="15.0" fill="rgb(251,199,42)" rx="2" ry="2" />
<text x="475.71" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="906.2" y="1045" width="0.5" height="15.0" fill="rgb(233,164,26)" rx="2" ry="2" />
<text x="909.25" y="1055.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="742.3" y="805" width="0.2" height="15.0" fill="rgb(236,99,31)" rx="2" ry="2" />
<text x="745.29" y="815.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="270.8" y="933" width="0.2" height="15.0" fill="rgb(226,15,24)" rx="2" ry="2" />
<text x="273.83" y="943.5" ></text>
</g>
<g >
<title>zend_string_concat2 (10,101,010 samples, 0.02%)</title><rect x="953.8" y="1093" width="0.2" height="15.0" fill="rgb(208,190,1)" rx="2" ry="2" />
<text x="956.75" y="1103.5" ></text>
</g>
<g >
<title>ip_route_output_key_hash (30,303,030 samples, 0.05%)</title><rect x="1125.0" y="1077" width="0.6" height="15.0" fill="rgb(217,39,7)" rx="2" ry="2" />
<text x="1128.00" y="1087.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="1108.8" y="1093" width="0.4" height="15.0" fill="rgb(240,99,3)" rx="2" ry="2" />
<text x="1111.75" y="1103.5" ></text>
</g>
<g >
<title>__secure_computing (30,303,030 samples, 0.05%)</title><rect x="1181.9" y="1157" width="0.6" height="15.0" fill="rgb(248,66,11)" rx="2" ry="2" />
<text x="1184.88" y="1167.5" ></text>
</g>
<g >
<title>__schedule (20,202,020 samples, 0.04%)</title><rect x="194.0" y="1029" width="0.4" height="15.0" fill="rgb(226,24,11)" rx="2" ry="2" />
<text x="196.96" y="1039.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="677.3" y="901" width="0.4" height="15.0" fill="rgb(241,161,32)" rx="2" ry="2" />
<text x="680.29" y="911.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="872.7" y="917" width="0.2" height="15.0" fill="rgb(251,72,45)" rx="2" ry="2" />
<text x="875.71" y="927.5" ></text>
</g>
<g >
<title>TRACE-16$MediaWiki\Languages\LanguageNameUtils::getLanguageNamesUncached$242 (50,505,050 samples, 0.09%)</title><rect x="287.9" y="1141" width="1.1" height="15.0" fill="rgb(207,179,6)" rx="2" ry="2" />
<text x="290.92" y="1151.5" ></text>
</g>
<g >
<title>format_converter (20,202,020 samples, 0.04%)</title><rect x="480.6" y="997" width="0.4" height="15.0" fill="rgb(251,28,15)" rx="2" ry="2" />
<text x="483.62" y="1007.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (313,131,310 samples, 0.55%)</title><rect x="816.2" y="965" width="6.5" height="15.0" fill="rgb(251,187,26)" rx="2" ry="2" />
<text x="819.25" y="975.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="524.0" y="933" width="0.4" height="15.0" fill="rgb(231,151,35)" rx="2" ry="2" />
<text x="526.96" y="943.5" ></text>
</g>
<g >
<title>user_path_at_empty (20,202,020 samples, 0.04%)</title><rect x="797.1" y="837" width="0.4" height="15.0" fill="rgb(241,21,23)" rx="2" ry="2" />
<text x="800.08" y="847.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="950.2" y="997" width="0.2" height="15.0" fill="rgb(226,24,42)" rx="2" ry="2" />
<text x="953.21" y="1007.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="508.8" y="1109" width="0.2" height="15.0" fill="rgb(213,106,48)" rx="2" ry="2" />
<text x="511.75" y="1119.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="682.3" y="933" width="0.2" height="15.0" fill="rgb(212,13,51)" rx="2" ry="2" />
<text x="685.29" y="943.5" ></text>
</g>
<g >
<title>vp_notify (212,121,210 samples, 0.37%)</title><rect x="1153.5" y="341" width="4.4" height="15.0" fill="rgb(219,199,31)" rx="2" ry="2" />
<text x="1156.54" y="351.5" ></text>
</g>
<g >
<title>__find_get_block (10,101,010 samples, 0.02%)</title><rect x="957.1" y="725" width="0.2" height="15.0" fill="rgb(221,100,35)" rx="2" ry="2" />
<text x="960.08" y="735.5" ></text>
</g>
<g >
<title>zend_do_link_class (101,010,100 samples, 0.18%)</title><rect x="920.8" y="1029" width="2.1" height="15.0" fill="rgb(222,124,8)" rx="2" ry="2" />
<text x="923.83" y="1039.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="890.0" y="981" width="0.2" height="15.0" fill="rgb(206,115,49)" rx="2" ry="2" />
<text x="893.00" y="991.5" ></text>
</g>
<g >
<title>zend_std_get_static_property_with_info (10,101,010 samples, 0.02%)</title><rect x="732.5" y="997" width="0.2" height="15.0" fill="rgb(222,219,42)" rx="2" ry="2" />
<text x="735.50" y="1007.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="944.0" y="1013" width="0.4" height="15.0" fill="rgb(247,215,27)" rx="2" ry="2" />
<text x="946.96" y="1023.5" ></text>
</g>
<g >
<title>zlog_stream_finish (121,212,120 samples, 0.21%)</title><rect x="213.1" y="1109" width="2.5" height="15.0" fill="rgb(243,56,25)" rx="2" ry="2" />
<text x="216.12" y="1119.5" ></text>
</g>
<g >
<title>new_inode_pseudo (20,202,020 samples, 0.04%)</title><rect x="931.0" y="821" width="0.5" height="15.0" fill="rgb(247,124,22)" rx="2" ry="2" />
<text x="934.04" y="831.5" ></text>
</g>
<g >
<title>zend_objects_store_put (10,101,010 samples, 0.02%)</title><rect x="766.7" y="1093" width="0.2" height="15.0" fill="rgb(221,165,51)" rx="2" ry="2" />
<text x="769.67" y="1103.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="524.2" y="885" width="0.2" height="15.0" fill="rgb(238,99,3)" rx="2" ry="2" />
<text x="527.17" y="895.5" ></text>
</g>
<g >
<title>__d_alloc (30,303,030 samples, 0.05%)</title><rect x="1120.2" y="1077" width="0.6" height="15.0" fill="rgb(245,98,39)" rx="2" ry="2" />
<text x="1123.21" y="1087.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="869" width="0.2" height="15.0" fill="rgb(213,165,21)" rx="2" ry="2" />
<text x="1171.12" y="879.5" ></text>
</g>
<g >
<title>sock_poll (40,404,040 samples, 0.07%)</title><rect x="1114.4" y="1125" width="0.8" height="15.0" fill="rgb(226,167,47)" rx="2" ry="2" />
<text x="1117.38" y="1135.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="1084.6" y="1045" width="0.2" height="15.0" fill="rgb(214,165,2)" rx="2" ry="2" />
<text x="1087.58" y="1055.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="442.3" y="981" width="0.2" height="15.0" fill="rgb(238,32,31)" rx="2" ry="2" />
<text x="445.29" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="800.0" y="789" width="0.4" height="15.0" fill="rgb(221,217,52)" rx="2" ry="2" />
<text x="803.00" y="799.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="285.0" y="1093" width="0.2" height="15.0" fill="rgb(238,214,49)" rx="2" ry="2" />
<text x="288.00" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (30,303,030 samples, 0.05%)</title><rect x="488.1" y="1125" width="0.7" height="15.0" fill="rgb(235,186,46)" rx="2" ry="2" />
<text x="491.12" y="1135.5" ></text>
</g>
<g >
<title>php_stdiop_stat (10,101,010 samples, 0.02%)</title><rect x="949.2" y="1093" width="0.2" height="15.0" fill="rgb(225,185,24)" rx="2" ry="2" />
<text x="952.17" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="929.0" y="965" width="0.2" height="15.0" fill="rgb(208,85,1)" rx="2" ry="2" />
<text x="931.96" y="975.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="536.2" y="1077" width="0.5" height="15.0" fill="rgb(221,50,45)" rx="2" ry="2" />
<text x="539.25" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="342.5" y="1061" width="0.2" height="15.0" fill="rgb(225,24,23)" rx="2" ry="2" />
<text x="345.50" y="1071.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_connect_handshake_pub (989,898,980 samples, 1.73%)</title><rect x="924.0" y="1061" width="20.4" height="15.0" fill="rgb(231,147,53)" rx="2" ry="2" />
<text x="926.96" y="1071.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="281.7" y="1125" width="0.2" height="15.0" fill="rgb(210,229,35)" rx="2" ry="2" />
<text x="284.67" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="949.8" y="1045" width="0.6" height="15.0" fill="rgb(242,138,11)" rx="2" ry="2" />
<text x="952.79" y="1055.5" ></text>
</g>
<g >
<title>ret_from_intr (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1189" width="0.4" height="15.0" fill="rgb(239,147,31)" rx="2" ry="2" />
<text x="33.21" y="1199.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="905.0" y="885" width="0.2" height="15.0" fill="rgb(219,65,1)" rx="2" ry="2" />
<text x="908.00" y="895.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1130.6" y="677" width="0.2" height="15.0" fill="rgb(215,165,14)" rx="2" ry="2" />
<text x="1133.62" y="687.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (30,303,030 samples, 0.05%)</title><rect x="801.2" y="853" width="0.7" height="15.0" fill="rgb(241,93,19)" rx="2" ry="2" />
<text x="804.25" y="863.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="881.2" y="629" width="0.3" height="15.0" fill="rgb(226,190,54)" rx="2" ry="2" />
<text x="884.25" y="639.5" ></text>
</g>
<g >
<title>inet_release (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="949" width="0.3" height="15.0" fill="rgb(228,24,42)" rx="2" ry="2" />
<text x="1026.54" y="959.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1077" width="0.2" height="15.0" fill="rgb(213,60,49)" rx="2" ry="2" />
<text x="691.96" y="1087.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="731.2" y="821" width="0.3" height="15.0" fill="rgb(243,208,14)" rx="2" ry="2" />
<text x="734.25" y="831.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="997" width="0.2" height="15.0" fill="rgb(221,81,28)" rx="2" ry="2" />
<text x="1171.12" y="1007.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (30,303,030 samples, 0.05%)</title><rect x="712.5" y="1029" width="0.6" height="15.0" fill="rgb(241,163,10)" rx="2" ry="2" />
<text x="715.50" y="1039.5" ></text>
</g>
<g >
<title>ksys_write (70,707,070 samples, 0.12%)</title><rect x="213.3" y="1029" width="1.5" height="15.0" fill="rgb(233,217,36)" rx="2" ry="2" />
<text x="216.33" y="1039.5" ></text>
</g>
<g >
<title>TRACE-353$Wikimedia\Rdbms\LBFactory::hasPrimaryChanges$413 (10,101,010 samples, 0.02%)</title><rect x="497.7" y="1141" width="0.2" height="15.0" fill="rgb(208,80,26)" rx="2" ry="2" />
<text x="500.71" y="1151.5" ></text>
</g>
<g >
<title>__virt_addr_valid (20,202,020 samples, 0.04%)</title><rect x="424.6" y="965" width="0.4" height="15.0" fill="rgb(252,209,11)" rx="2" ry="2" />
<text x="427.58" y="975.5" ></text>
</g>
<g >
<title>path_lookupat (90,909,090 samples, 0.16%)</title><rect x="900.4" y="1013" width="1.9" height="15.0" fill="rgb(226,204,45)" rx="2" ry="2" />
<text x="903.42" y="1023.5" ></text>
</g>
<g >
<title>_emalloc (40,404,040 samples, 0.07%)</title><rect x="759.2" y="1093" width="0.8" height="15.0" fill="rgb(230,117,3)" rx="2" ry="2" />
<text x="762.17" y="1103.5" ></text>
</g>
<g >
<title>prepare_creds (50,505,050 samples, 0.09%)</title><rect x="1006.2" y="965" width="1.1" height="15.0" fill="rgb(238,196,22)" rx="2" ry="2" />
<text x="1009.25" y="975.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="133" width="0.4" height="15.0" fill="rgb(212,91,16)" rx="2" ry="2" />
<text x="1092.58" y="143.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="873.5" y="997" width="0.3" height="15.0" fill="rgb(213,165,14)" rx="2" ry="2" />
<text x="876.54" y="1007.5" ></text>
</g>
<g >
<title>inet_twsk_alloc (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="805" width="0.2" height="15.0" fill="rgb(247,43,38)" rx="2" ry="2" />
<text x="1083.83" y="815.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="789" width="0.2" height="15.0" fill="rgb(225,197,49)" rx="2" ry="2" />
<text x="1021.96" y="799.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="619.0" y="981" width="0.2" height="15.0" fill="rgb(209,16,15)" rx="2" ry="2" />
<text x="621.96" y="991.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_pfc_receive_pub (10,101,010 samples, 0.02%)</title><rect x="1052.1" y="1013" width="0.2" height="15.0" fill="rgb(209,180,14)" rx="2" ry="2" />
<text x="1055.08" y="1023.5" ></text>
</g>
<g >
<title>zif_array_reverse (10,101,010 samples, 0.02%)</title><rect x="1071.5" y="1141" width="0.2" height="15.0" fill="rgb(216,105,10)" rx="2" ry="2" />
<text x="1074.46" y="1151.5" ></text>
</g>
<g >
<title>__pollwait (10,101,010 samples, 0.02%)</title><rect x="930.0" y="837" width="0.2" height="15.0" fill="rgb(243,21,0)" rx="2" ry="2" />
<text x="933.00" y="847.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="899.4" y="997" width="0.2" height="15.0" fill="rgb(211,106,49)" rx="2" ry="2" />
<text x="902.38" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_real_init_packed (10,101,010 samples, 0.02%)</title><rect x="766.0" y="1061" width="0.2" height="15.0" fill="rgb(233,127,22)" rx="2" ry="2" />
<text x="769.04" y="1071.5" ></text>
</g>
<g >
<title>execute_ex (727,272,720 samples, 1.27%)</title><rect x="851.9" y="917" width="15.0" height="15.0" fill="rgb(207,71,6)" rx="2" ry="2" />
<text x="854.88" y="927.5" ></text>
</g>
<g >
<title>get_acl (20,202,020 samples, 0.04%)</title><rect x="1122.1" y="997" width="0.4" height="15.0" fill="rgb(249,114,52)" rx="2" ry="2" />
<text x="1125.08" y="1007.5" ></text>
</g>
<g >
<title>revert_creds (10,101,010 samples, 0.02%)</title><rect x="390.0" y="869" width="0.2" height="15.0" fill="rgb(241,196,23)" rx="2" ry="2" />
<text x="393.00" y="879.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.07%)</title><rect x="1063.1" y="1109" width="0.9" height="15.0" fill="rgb(210,90,52)" rx="2" ry="2" />
<text x="1066.12" y="1119.5" ></text>
</g>
<g >
<title>tcp_in_window (10,101,010 samples, 0.02%)</title><rect x="1150.6" y="901" width="0.2" height="15.0" fill="rgb(236,126,34)" rx="2" ry="2" />
<text x="1153.62" y="911.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_CV_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="611.0" y="1125" width="0.5" height="15.0" fill="rgb(243,27,31)" rx="2" ry="2" />
<text x="614.04" y="1135.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="644.4" y="1077" width="0.2" height="15.0" fill="rgb(232,43,1)" rx="2" ry="2" />
<text x="647.38" y="1087.5" ></text>
</g>
<g >
<title>generic_permission (10,101,010 samples, 0.02%)</title><rect x="775.2" y="853" width="0.2" height="15.0" fill="rgb(212,217,37)" rx="2" ry="2" />
<text x="778.21" y="863.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="921.2" y="949" width="0.3" height="15.0" fill="rgb(245,146,14)" rx="2" ry="2" />
<text x="924.25" y="959.5" ></text>
</g>
<g >
<title>zend_call_known_function (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1029" width="0.9" height="15.0" fill="rgb(206,6,20)" rx="2" ry="2" />
<text x="756.33" y="1039.5" ></text>
</g>
<g >
<title>JIT$$leave_function (10,101,010 samples, 0.02%)</title><rect x="739.0" y="917" width="0.2" height="15.0" fill="rgb(219,91,51)" rx="2" ry="2" />
<text x="741.96" y="927.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="211.5" y="1093" width="0.2" height="15.0" fill="rgb(211,8,13)" rx="2" ry="2" />
<text x="214.46" y="1103.5" ></text>
</g>
<g >
<title>timer_delete (20,202,020 samples, 0.04%)</title><rect x="1172.3" y="1205" width="0.4" height="15.0" fill="rgb(233,126,30)" rx="2" ry="2" />
<text x="1175.29" y="1215.5" ></text>
</g>
<g >
<title>zend_parse_va_args (30,303,030 samples, 0.05%)</title><rect x="286.9" y="1093" width="0.6" height="15.0" fill="rgb(237,190,25)" rx="2" ry="2" />
<text x="289.88" y="1103.5" ></text>
</g>
<g >
<title>do_faccessat (171,717,170 samples, 0.30%)</title><rect x="910.0" y="981" width="3.5" height="15.0" fill="rgb(241,126,52)" rx="2" ry="2" />
<text x="913.00" y="991.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="460.8" y="1125" width="0.2" height="15.0" fill="rgb(225,8,42)" rx="2" ry="2" />
<text x="463.83" y="1135.5" ></text>
</g>
<g >
<title>path_lookupat (101,010,100 samples, 0.18%)</title><rect x="910.6" y="933" width="2.1" height="15.0" fill="rgb(229,219,50)" rx="2" ry="2" />
<text x="913.62" y="943.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="857.1" y="757" width="0.2" height="15.0" fill="rgb(213,128,54)" rx="2" ry="2" />
<text x="860.08" y="767.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="930.8" y="933" width="0.2" height="15.0" fill="rgb(234,22,51)" rx="2" ry="2" />
<text x="933.83" y="943.5" ></text>
</g>
<g >
<title>zif_array_map (10,101,010 samples, 0.02%)</title><rect x="499.4" y="1125" width="0.2" height="15.0" fill="rgb(246,225,44)" rx="2" ry="2" />
<text x="502.38" y="1135.5" ></text>
</g>
<g >
<title>compile_filename (141,414,140 samples, 0.25%)</title><rect x="679.6" y="997" width="2.9" height="15.0" fill="rgb(214,27,28)" rx="2" ry="2" />
<text x="682.58" y="1007.5" ></text>
</g>
<g >
<title>TRACE-160$ConfigFactory::register$108 (40,404,040 samples, 0.07%)</title><rect x="289.0" y="1141" width="0.8" height="15.0" fill="rgb(225,121,37)" rx="2" ry="2" />
<text x="291.96" y="1151.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="857.1" y="773" width="0.2" height="15.0" fill="rgb(237,151,52)" rx="2" ry="2" />
<text x="860.08" y="783.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="821" width="0.2" height="15.0" fill="rgb(206,158,5)" rx="2" ry="2" />
<text x="1056.33" y="831.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="744.0" y="645" width="0.2" height="15.0" fill="rgb(239,130,33)" rx="2" ry="2" />
<text x="746.96" y="655.5" ></text>
</g>
<g >
<title>__virt_addr_valid (20,202,020 samples, 0.04%)</title><rect x="1178.3" y="1045" width="0.5" height="15.0" fill="rgb(245,189,35)" rx="2" ry="2" />
<text x="1181.33" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="207.1" y="1125" width="0.6" height="15.0" fill="rgb(249,79,34)" rx="2" ry="2" />
<text x="210.08" y="1135.5" ></text>
</g>
<g >
<title>zif_fastcgi_finish_request (515,151,510 samples, 0.90%)</title><rect x="1023.3" y="1125" width="10.7" height="15.0" fill="rgb(221,219,2)" rx="2" ry="2" />
<text x="1026.33" y="1135.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="304.2" y="645" width="0.2" height="15.0" fill="rgb(207,121,32)" rx="2" ry="2" />
<text x="307.17" y="655.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (20,202,020 samples, 0.04%)</title><rect x="680.4" y="965" width="0.4" height="15.0" fill="rgb(242,202,49)" rx="2" ry="2" />
<text x="683.42" y="975.5" ></text>
</g>
<g >
<title>zend_jit_hash_lookup_w (10,101,010 samples, 0.02%)</title><rect x="1068.3" y="1141" width="0.2" height="15.0" fill="rgb(212,68,44)" rx="2" ry="2" />
<text x="1071.33" y="1151.5" ></text>
</g>
<g >
<title>TRACE-149$ExtensionRegistry::exportExtractedData$567 (212,121,210 samples, 0.37%)</title><rect x="267.3" y="1141" width="4.4" height="15.0" fill="rgb(225,187,39)" rx="2" ry="2" />
<text x="270.29" y="1151.5" ></text>
</g>
<g >
<title>ip_rcv_finish (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="261" width="0.4" height="15.0" fill="rgb(205,85,49)" rx="2" ry="2" />
<text x="1092.58" y="271.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="524.0" y="869" width="0.2" height="15.0" fill="rgb(216,225,30)" rx="2" ry="2" />
<text x="526.96" y="879.5" ></text>
</g>
<g >
<title>timer_create (50,505,050 samples, 0.09%)</title><rect x="1189.0" y="1221" width="1.0" height="15.0" fill="rgb(230,69,39)" rx="2" ry="2" />
<text x="1191.96" y="1231.5" ></text>
</g>
<g >
<title>getsockopt (30,303,030 samples, 0.05%)</title><rect x="942.7" y="917" width="0.6" height="15.0" fill="rgb(243,69,44)" rx="2" ry="2" />
<text x="945.71" y="927.5" ></text>
</g>
<g >
<title>dentry_free (10,101,010 samples, 0.02%)</title><rect x="1023.3" y="965" width="0.2" height="15.0" fill="rgb(248,229,1)" rx="2" ry="2" />
<text x="1026.33" y="975.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="193.8" y="853" width="0.2" height="15.0" fill="rgb(248,227,53)" rx="2" ry="2" />
<text x="196.75" y="863.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (40,404,040 samples, 0.07%)</title><rect x="863.5" y="837" width="0.9" height="15.0" fill="rgb(207,134,30)" rx="2" ry="2" />
<text x="866.54" y="847.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="308.1" y="1109" width="0.2" height="15.0" fill="rgb(209,7,12)" rx="2" ry="2" />
<text x="311.12" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (60,606,060 samples, 0.11%)</title><rect x="1107.9" y="1141" width="1.3" height="15.0" fill="rgb(234,73,46)" rx="2" ry="2" />
<text x="1110.92" y="1151.5" ></text>
</g>
<g >
<title>ip_local_out (292,929,290 samples, 0.51%)</title><rect x="1125.6" y="1013" width="6.1" height="15.0" fill="rgb(246,24,9)" rx="2" ry="2" />
<text x="1128.62" y="1023.5" ></text>
</g>
<g >
<title>ip_output (60,606,060 samples, 0.11%)</title><rect x="939.4" y="245" width="1.2" height="15.0" fill="rgb(247,212,15)" rx="2" ry="2" />
<text x="942.38" y="255.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (10,101,010 samples, 0.02%)</title><rect x="931.7" y="869" width="0.2" height="15.0" fill="rgb(245,114,15)" rx="2" ry="2" />
<text x="934.67" y="879.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="686.7" y="997" width="0.2" height="15.0" fill="rgb(217,35,18)" rx="2" ry="2" />
<text x="689.67" y="1007.5" ></text>
</g>
<g >
<title>zend_std_get_constructor (10,101,010 samples, 0.02%)</title><rect x="887.9" y="1109" width="0.2" height="15.0" fill="rgb(247,229,43)" rx="2" ry="2" />
<text x="890.92" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="341" width="0.4" height="15.0" fill="rgb(251,49,1)" rx="2" ry="2" />
<text x="1092.58" y="351.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="823.3" y="965" width="0.2" height="15.0" fill="rgb(237,73,44)" rx="2" ry="2" />
<text x="826.33" y="975.5" ></text>
</g>
<g >
<title>zend_objects_destroy_object (10,101,010 samples, 0.02%)</title><rect x="1087.7" y="1045" width="0.2" height="15.0" fill="rgb(246,151,33)" rx="2" ry="2" />
<text x="1090.71" y="1055.5" ></text>
</g>
<g >
<title>path_lookupat (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="805" width="0.2" height="15.0" fill="rgb(247,40,51)" rx="2" ry="2" />
<text x="1021.96" y="815.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="661" width="0.2" height="15.0" fill="rgb(221,174,17)" rx="2" ry="2" />
<text x="1085.08" y="671.5" ></text>
</g>
<g >
<title>__lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="407.5" y="901" width="0.2" height="15.0" fill="rgb(239,51,23)" rx="2" ry="2" />
<text x="410.50" y="911.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (20,202,020 samples, 0.04%)</title><rect x="1130.4" y="725" width="0.4" height="15.0" fill="rgb(210,53,30)" rx="2" ry="2" />
<text x="1133.42" y="735.5" ></text>
</g>
<g >
<title>strncpy_from_user (10,101,010 samples, 0.02%)</title><rect x="913.3" y="933" width="0.2" height="15.0" fill="rgb(218,206,30)" rx="2" ry="2" />
<text x="916.33" y="943.5" ></text>
</g>
<g >
<title>swake_up_one (10,101,010 samples, 0.02%)</title><rect x="371.9" y="869" width="0.2" height="15.0" fill="rgb(219,23,49)" rx="2" ry="2" />
<text x="374.88" y="879.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1077" width="0.2" height="15.0" fill="rgb(247,47,35)" rx="2" ry="2" />
<text x="479.88" y="1087.5" ></text>
</g>
<g >
<title>init_func_run_time_cache (10,101,010 samples, 0.02%)</title><rect x="920.2" y="1125" width="0.2" height="15.0" fill="rgb(215,199,34)" rx="2" ry="2" />
<text x="923.21" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="881.2" y="469" width="0.3" height="15.0" fill="rgb(207,193,33)" rx="2" ry="2" />
<text x="884.25" y="479.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="443.3" y="949" width="0.2" height="15.0" fill="rgb(234,170,7)" rx="2" ry="2" />
<text x="446.33" y="959.5" ></text>
</g>
<g >
<title>conntrack_mt (10,101,010 samples, 0.02%)</title><rect x="925.4" y="437" width="0.2" height="15.0" fill="rgb(236,208,35)" rx="2" ry="2" />
<text x="928.42" y="447.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_CONST_HANDLER (151,515,150 samples, 0.26%)</title><rect x="611.5" y="1125" width="3.1" height="15.0" fill="rgb(212,162,6)" rx="2" ry="2" />
<text x="614.46" y="1135.5" ></text>
</g>
<g >
<title>virtqueue_notify (212,121,210 samples, 0.37%)</title><rect x="1153.5" y="357" width="4.4" height="15.0" fill="rgb(252,35,15)" rx="2" ry="2" />
<text x="1156.54" y="367.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="718.3" y="1029" width="0.2" height="15.0" fill="rgb(213,191,52)" rx="2" ry="2" />
<text x="721.33" y="1039.5" ></text>
</g>
<g >
<title>memset (10,101,010 samples, 0.02%)</title><rect x="725.6" y="917" width="0.2" height="15.0" fill="rgb(243,167,32)" rx="2" ry="2" />
<text x="728.62" y="927.5" ></text>
</g>
<g >
<title>zend_jit_find_method_tmp_helper (10,101,010 samples, 0.02%)</title><rect x="355.4" y="1125" width="0.2" height="15.0" fill="rgb(231,210,28)" rx="2" ry="2" />
<text x="358.42" y="1135.5" ></text>
</g>
<g >
<title>tcp_data_queue (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="853" width="0.2" height="15.0" fill="rgb(247,149,22)" rx="2" ry="2" />
<text x="1095.08" y="863.5" ></text>
</g>
<g >
<title>vfs_write (131,313,130 samples, 0.23%)</title><rect x="1035.0" y="997" width="2.7" height="15.0" fill="rgb(212,204,18)" rx="2" ry="2" />
<text x="1038.00" y="1007.5" ></text>
</g>
<g >
<title>php_apc_unserializer (10,101,010 samples, 0.02%)</title><rect x="1136.2" y="1205" width="0.3" height="15.0" fill="rgb(212,48,15)" rx="2" ry="2" />
<text x="1139.25" y="1215.5" ></text>
</g>
<g >
<title>nf_hook_slow (111,111,110 samples, 0.19%)</title><rect x="1185.0" y="613" width="2.3" height="15.0" fill="rgb(207,15,40)" rx="2" ry="2" />
<text x="1188.00" y="623.5" ></text>
</g>
<g >
<title>zend_hash_del (10,101,010 samples, 0.02%)</title><rect x="720.0" y="1093" width="0.2" height="15.0" fill="rgb(247,180,0)" rx="2" ry="2" />
<text x="723.00" y="1103.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="427.1" y="773" width="0.2" height="15.0" fill="rgb(232,48,11)" rx="2" ry="2" />
<text x="430.08" y="783.5" ></text>
</g>
<g >
<title>zend_closure_new (10,101,010 samples, 0.02%)</title><rect x="464.6" y="1077" width="0.2" height="15.0" fill="rgb(220,54,21)" rx="2" ry="2" />
<text x="467.58" y="1087.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="684.6" y="853" width="0.2" height="15.0" fill="rgb(225,27,32)" rx="2" ry="2" />
<text x="687.58" y="863.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1093" width="0.2" height="15.0" fill="rgb(206,109,22)" rx="2" ry="2" />
<text x="521.96" y="1103.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1061" width="0.9" height="15.0" fill="rgb(237,228,11)" rx="2" ry="2" />
<text x="756.33" y="1071.5" ></text>
</g>
<g >
<title>do_bind_class (30,303,030 samples, 0.05%)</title><rect x="799.4" y="789" width="0.6" height="15.0" fill="rgb(227,193,0)" rx="2" ry="2" />
<text x="802.38" y="799.5" ></text>
</g>
<g >
<title>getcwd (20,202,020 samples, 0.04%)</title><rect x="1132.7" y="1205" width="0.4" height="15.0" fill="rgb(238,97,25)" rx="2" ry="2" />
<text x="1135.71" y="1215.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (10,101,010 samples, 0.02%)</title><rect x="742.7" y="789" width="0.2" height="15.0" fill="rgb(220,14,2)" rx="2" ry="2" />
<text x="745.71" y="799.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="672.5" y="773" width="0.2" height="15.0" fill="rgb(235,8,19)" rx="2" ry="2" />
<text x="675.50" y="783.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="333.3" y="1077" width="0.2" height="15.0" fill="rgb(219,36,28)" rx="2" ry="2" />
<text x="336.33" y="1087.5" ></text>
</g>
<g >
<title>filename_lookup (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="821" width="0.2" height="15.0" fill="rgb(215,128,40)" rx="2" ry="2" />
<text x="1021.96" y="831.5" ></text>
</g>
<g >
<title>TRACE-144$ExtensionRegistry::exportExtractedData$525 (10,101,010 samples, 0.02%)</title><rect x="250.8" y="1141" width="0.2" height="15.0" fill="rgb(213,4,0)" rx="2" ry="2" />
<text x="253.83" y="1151.5" ></text>
</g>
<g >
<title>zend_do_link_class (60,606,060 samples, 0.11%)</title><rect x="921.5" y="917" width="1.2" height="15.0" fill="rgb(220,115,16)" rx="2" ry="2" />
<text x="924.46" y="927.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1093" width="0.2" height="15.0" fill="rgb(210,190,24)" rx="2" ry="2" />
<text x="691.96" y="1103.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1024.0" y="837" width="0.2" height="15.0" fill="rgb(244,150,10)" rx="2" ry="2" />
<text x="1026.96" y="847.5" ></text>
</g>
<g >
<title>zend_insert_sort (50,505,050 samples, 0.09%)</title><rect x="514.4" y="1045" width="1.0" height="15.0" fill="rgb(246,174,42)" rx="2" ry="2" />
<text x="517.38" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="789" width="0.2" height="15.0" fill="rgb(207,160,24)" rx="2" ry="2" />
<text x="1085.08" y="799.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="334.2" y="1077" width="0.2" height="15.0" fill="rgb(213,182,18)" rx="2" ry="2" />
<text x="337.17" y="1087.5" ></text>
</g>
<g >
<title>filemap_map_pages (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1013" width="0.2" height="15.0" fill="rgb(215,79,14)" rx="2" ry="2" />
<text x="1106.96" y="1023.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1013" width="0.2" height="15.0" fill="rgb(229,229,28)" rx="2" ry="2" />
<text x="906.96" y="1023.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="925.4" y="629" width="0.2" height="15.0" fill="rgb(214,90,12)" rx="2" ry="2" />
<text x="928.42" y="639.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="283.1" y="997" width="0.2" height="15.0" fill="rgb(239,130,53)" rx="2" ry="2" />
<text x="286.12" y="1007.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1045" width="0.3" height="15.0" fill="rgb(218,153,3)" rx="2" ry="2" />
<text x="446.54" y="1055.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="981" width="0.2" height="15.0" fill="rgb(209,12,11)" rx="2" ry="2" />
<text x="1099.04" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="789" width="0.2" height="15.0" fill="rgb(210,96,11)" rx="2" ry="2" />
<text x="1056.33" y="799.5" ></text>
</g>
<g >
<title>__xstat64 (111,111,110 samples, 0.19%)</title><rect x="956.2" y="1109" width="2.3" height="15.0" fill="rgb(242,110,27)" rx="2" ry="2" />
<text x="959.25" y="1119.5" ></text>
</g>
<g >
<title>TRACE-10$AutoLoader::find$49 (10,101,010 samples, 0.02%)</title><rect x="796.9" y="933" width="0.2" height="15.0" fill="rgb(247,210,31)" rx="2" ry="2" />
<text x="799.88" y="943.5" ></text>
</g>
<g >
<title>rcu_core (10,101,010 samples, 0.02%)</title><rect x="371.9" y="917" width="0.2" height="15.0" fill="rgb(209,113,13)" rx="2" ry="2" />
<text x="374.88" y="927.5" ></text>
</g>
<g >
<title>TRACE-193$Wikimedia\Services\ServiceContainer::createService$435 (191,919,190 samples, 0.34%)</title><rect x="336.2" y="1141" width="4.0" height="15.0" fill="rgb(225,101,36)" rx="2" ry="2" />
<text x="339.25" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="756.2" y="1109" width="0.3" height="15.0" fill="rgb(234,172,19)" rx="2" ry="2" />
<text x="759.25" y="1119.5" ></text>
</g>
<g >
<title>TRACE-358$Wikimedia\Rdbms\LoadBalancer::closeAll$1661 (30,303,030 samples, 0.05%)</title><rect x="1085.0" y="1077" width="0.6" height="15.0" fill="rgb(225,64,13)" rx="2" ry="2" />
<text x="1088.00" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="493.5" y="1093" width="0.3" height="15.0" fill="rgb(244,181,21)" rx="2" ry="2" />
<text x="496.54" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (20,202,020 samples, 0.04%)</title><rect x="846.0" y="837" width="0.5" height="15.0" fill="rgb(251,204,29)" rx="2" ry="2" />
<text x="849.04" y="847.5" ></text>
</g>
<g >
<title>user_path_at_empty (70,707,070 samples, 0.12%)</title><rect x="533.5" y="949" width="1.5" height="15.0" fill="rgb(252,139,28)" rx="2" ry="2" />
<text x="536.54" y="959.5" ></text>
</g>
<g >
<title>aa_sock_msg_perm (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1109" width="0.2" height="15.0" fill="rgb(232,174,21)" rx="2" ry="2" />
<text x="1171.12" y="1119.5" ></text>
</g>
<g >
<title>vfs_lock_file (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1029" width="0.2" height="15.0" fill="rgb(207,64,31)" rx="2" ry="2" />
<text x="1105.08" y="1039.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read (10,101,010 samples, 0.02%)</title><rect x="1179.0" y="1029" width="0.2" height="15.0" fill="rgb(218,57,23)" rx="2" ry="2" />
<text x="1181.96" y="1039.5" ></text>
</g>
<g >
<title>php_stream_url_wrap_php (10,101,010 samples, 0.02%)</title><rect x="950.4" y="1077" width="0.2" height="15.0" fill="rgb(232,171,45)" rx="2" ry="2" />
<text x="953.42" y="1087.5" ></text>
</g>
<g >
<title>TRACE-280$Wikimedia\Rdbms\LoadBalancer::finalizePrimaryChanges$1720 (70,707,070 samples, 0.12%)</title><rect x="474.0" y="1141" width="1.4" height="15.0" fill="rgb(226,32,2)" rx="2" ry="2" />
<text x="476.96" y="1151.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (30,303,030 samples, 0.05%)</title><rect x="931.9" y="885" width="0.6" height="15.0" fill="rgb(206,88,41)" rx="2" ry="2" />
<text x="934.88" y="895.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="443.3" y="901" width="0.2" height="15.0" fill="rgb(212,148,14)" rx="2" ry="2" />
<text x="446.33" y="911.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="1013" width="0.2" height="15.0" fill="rgb(225,72,16)" rx="2" ry="2" />
<text x="1099.04" y="1023.5" ></text>
</g>
<g >
<title>__x64_sys_fcntl (10,101,010 samples, 0.02%)</title><rect x="933.1" y="885" width="0.2" height="15.0" fill="rgb(224,138,43)" rx="2" ry="2" />
<text x="936.12" y="895.5" ></text>
</g>
<g >
<title>zend_str_tolower (10,101,010 samples, 0.02%)</title><rect x="654.4" y="1109" width="0.2" height="15.0" fill="rgb(240,128,41)" rx="2" ry="2" />
<text x="657.38" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="300.8" y="1029" width="0.2" height="15.0" fill="rgb(236,110,46)" rx="2" ry="2" />
<text x="303.83" y="1039.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (50,505,050 samples, 0.09%)</title><rect x="213.5" y="949" width="1.1" height="15.0" fill="rgb(239,1,26)" rx="2" ry="2" />
<text x="216.54" y="959.5" ></text>
</g>
<g >
<title>ZEND_FE_FETCH_R_SPEC_VAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="552.3" y="1141" width="0.4" height="15.0" fill="rgb(243,204,44)" rx="2" ry="2" />
<text x="555.29" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="955.4" y="965" width="0.2" height="15.0" fill="rgb(236,48,48)" rx="2" ry="2" />
<text x="958.42" y="975.5" ></text>
</g>
<g >
<title>__ip_local_out (80,808,080 samples, 0.14%)</title><rect x="1125.6" y="997" width="1.7" height="15.0" fill="rgb(208,223,20)" rx="2" ry="2" />
<text x="1128.62" y="1007.5" ></text>
</g>
<g >
<title>php_memc_result_apply (171,717,170 samples, 0.30%)</title><rect x="1136.5" y="1205" width="3.5" height="15.0" fill="rgb(210,60,19)" rx="2" ry="2" />
<text x="1139.46" y="1215.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="1086.0" y="997" width="0.5" height="15.0" fill="rgb(222,109,11)" rx="2" ry="2" />
<text x="1089.04" y="1007.5" ></text>
</g>
<g >
<title>execute_ex (80,808,080 samples, 0.14%)</title><rect x="479.4" y="1061" width="1.6" height="15.0" fill="rgb(239,133,18)" rx="2" ry="2" />
<text x="482.38" y="1071.5" ></text>
</g>
<g >
<title>zif_call_user_func (141,414,140 samples, 0.25%)</title><rect x="1001.2" y="1125" width="3.0" height="15.0" fill="rgb(251,44,35)" rx="2" ry="2" />
<text x="1004.25" y="1135.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="933" width="3.1" height="15.0" fill="rgb(244,137,25)" rx="2" ry="2" />
<text x="1187.58" y="943.5" ></text>
</g>
<g >
<title>zend_std_read_property (10,101,010 samples, 0.02%)</title><rect x="1077.3" y="1077" width="0.2" height="15.0" fill="rgb(241,135,53)" rx="2" ry="2" />
<text x="1080.29" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="534.8" y="789" width="0.2" height="15.0" fill="rgb(238,117,31)" rx="2" ry="2" />
<text x="537.79" y="799.5" ></text>
</g>
<g >
<title>vfree_atomic (10,101,010 samples, 0.02%)</title><rect x="475.2" y="981" width="0.2" height="15.0" fill="rgb(228,41,47)" rx="2" ry="2" />
<text x="478.21" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb (80,808,080 samples, 0.14%)</title><rect x="939.4" y="373" width="1.6" height="15.0" fill="rgb(220,24,45)" rx="2" ry="2" />
<text x="942.38" y="383.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="693" width="0.2" height="15.0" fill="rgb(209,141,31)" rx="2" ry="2" />
<text x="1091.33" y="703.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="973.3" y="981" width="0.2" height="15.0" fill="rgb(246,196,8)" rx="2" ry="2" />
<text x="976.33" y="991.5" ></text>
</g>
<g >
<title>aa_sk_perm (20,202,020 samples, 0.04%)</title><rect x="1168.3" y="1077" width="0.5" height="15.0" fill="rgb(211,132,26)" rx="2" ry="2" />
<text x="1171.33" y="1087.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="887.5" y="1045" width="0.2" height="15.0" fill="rgb(217,76,25)" rx="2" ry="2" />
<text x="890.50" y="1055.5" ></text>
</g>
<g >
<title>ip_sabotage_in (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="277" width="0.4" height="15.0" fill="rgb(233,50,12)" rx="2" ry="2" />
<text x="1092.58" y="287.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="789.0" y="901" width="0.2" height="15.0" fill="rgb(218,215,54)" rx="2" ry="2" />
<text x="791.96" y="911.5" ></text>
</g>
<g >
<title>accel_new_interned_string_for_php (20,202,020 samples, 0.04%)</title><rect x="1020.6" y="1093" width="0.4" height="15.0" fill="rgb(213,179,36)" rx="2" ry="2" />
<text x="1023.62" y="1103.5" ></text>
</g>
<g >
<title>zend_traits_copy_functions (10,101,010 samples, 0.02%)</title><rect x="873.1" y="981" width="0.2" height="15.0" fill="rgb(205,74,11)" rx="2" ry="2" />
<text x="876.12" y="991.5" ></text>
</g>
<g >
<title>inet6_recvmsg (30,303,030 samples, 0.05%)</title><rect x="1176.5" y="1125" width="0.6" height="15.0" fill="rgb(248,58,22)" rx="2" ry="2" />
<text x="1179.46" y="1135.5" ></text>
</g>
<g >
<title>finish_task_switch (20,202,020 samples, 0.04%)</title><rect x="1176.7" y="1013" width="0.4" height="15.0" fill="rgb(249,93,5)" rx="2" ry="2" />
<text x="1179.67" y="1023.5" ></text>
</g>
<g >
<title>__kfree_skb (10,101,010 samples, 0.02%)</title><rect x="1176.5" y="1093" width="0.2" height="15.0" fill="rgb(223,77,36)" rx="2" ry="2" />
<text x="1179.46" y="1103.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="917" width="3.3" height="15.0" fill="rgb(218,113,50)" rx="2" ry="2" />
<text x="1130.50" y="927.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="907.5" y="1045" width="0.4" height="15.0" fill="rgb(245,199,18)" rx="2" ry="2" />
<text x="910.50" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1077" width="0.2" height="15.0" fill="rgb(217,2,17)" rx="2" ry="2" />
<text x="906.96" y="1087.5" ></text>
</g>
<g >
<title>execute_ex (30,303,030 samples, 0.05%)</title><rect x="732.9" y="933" width="0.6" height="15.0" fill="rgb(231,212,53)" rx="2" ry="2" />
<text x="735.92" y="943.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="623.8" y="1125" width="0.6" height="15.0" fill="rgb(235,76,3)" rx="2" ry="2" />
<text x="626.75" y="1135.5" ></text>
</g>
<g >
<title>zend_call_function (10,101,010 samples, 0.02%)</title><rect x="447.3" y="1093" width="0.2" height="15.0" fill="rgb(209,44,30)" rx="2" ry="2" />
<text x="450.29" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="767.9" y="1013" width="0.2" height="15.0" fill="rgb(237,128,35)" rx="2" ry="2" />
<text x="770.92" y="1023.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (414,141,410 samples, 0.72%)</title><rect x="675.0" y="1093" width="8.5" height="15.0" fill="rgb(227,204,27)" rx="2" ry="2" />
<text x="678.00" y="1103.5" ></text>
</g>
<g >
<title>ksys_write (40,404,040 samples, 0.07%)</title><rect x="1107.9" y="1109" width="0.9" height="15.0" fill="rgb(249,193,11)" rx="2" ry="2" />
<text x="1110.92" y="1119.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="211.0" y="1093" width="0.5" height="15.0" fill="rgb(231,178,40)" rx="2" ry="2" />
<text x="214.04" y="1103.5" ></text>
</g>
<g >
<title>fib_table_lookup (40,404,040 samples, 0.07%)</title><rect x="1160.8" y="469" width="0.9" height="15.0" fill="rgb(246,66,3)" rx="2" ry="2" />
<text x="1163.83" y="479.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (20,202,020 samples, 0.04%)</title><rect x="296.7" y="1125" width="0.4" height="15.0" fill="rgb(217,49,22)" rx="2" ry="2" />
<text x="299.67" y="1135.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="353.8" y="1109" width="0.2" height="15.0" fill="rgb(243,0,51)" rx="2" ry="2" />
<text x="356.75" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="821" width="0.2" height="15.0" fill="rgb(206,180,20)" rx="2" ry="2" />
<text x="1056.12" y="831.5" ></text>
</g>
<g >
<title>rcu_all_qs (10,101,010 samples, 0.02%)</title><rect x="421.2" y="965" width="0.3" height="15.0" fill="rgb(229,3,23)" rx="2" ry="2" />
<text x="424.25" y="975.5" ></text>
</g>
<g >
<title>ZEND_RETURN_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="791.9" y="1045" width="0.2" height="15.0" fill="rgb(253,180,42)" rx="2" ry="2" />
<text x="794.88" y="1055.5" ></text>
</g>
<g >
<title>spl_perform_autoload (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1077" width="3.3" height="15.0" fill="rgb(224,62,26)" rx="2" ry="2" />
<text x="304.67" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_set_auto_globals (30,303,030 samples, 0.05%)</title><rect x="709.2" y="1077" width="0.6" height="15.0" fill="rgb(223,73,30)" rx="2" ry="2" />
<text x="712.17" y="1087.5" ></text>
</g>
<g >
<title>_efree (20,202,020 samples, 0.04%)</title><rect x="459.0" y="1077" width="0.4" height="15.0" fill="rgb(221,12,30)" rx="2" ry="2" />
<text x="461.96" y="1087.5" ></text>
</g>
<g >
<title>br_pass_frame_up (505,050,500 samples, 0.88%)</title><rect x="1151.9" y="677" width="10.4" height="15.0" fill="rgb(250,128,28)" rx="2" ry="2" />
<text x="1154.88" y="687.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="782.5" y="965" width="0.4" height="15.0" fill="rgb(240,63,53)" rx="2" ry="2" />
<text x="785.50" y="975.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="676.2" y="981" width="0.3" height="15.0" fill="rgb(237,181,21)" rx="2" ry="2" />
<text x="679.25" y="991.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (121,212,120 samples, 0.21%)</title><rect x="741.0" y="901" width="2.5" height="15.0" fill="rgb(219,170,6)" rx="2" ry="2" />
<text x="744.04" y="911.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="303.1" y="805" width="0.2" height="15.0" fill="rgb(219,36,22)" rx="2" ry="2" />
<text x="306.12" y="815.5" ></text>
</g>
<g >
<title>zend_do_delayed_early_binding (60,606,060 samples, 0.11%)</title><rect x="880.6" y="949" width="1.3" height="15.0" fill="rgb(215,81,28)" rx="2" ry="2" />
<text x="883.62" y="959.5" ></text>
</g>
<g >
<title>__x64_sys_openat (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1157" width="0.8" height="15.0" fill="rgb(236,100,36)" rx="2" ry="2" />
<text x="1138.42" y="1167.5" ></text>
</g>
<g >
<title>__fget_light (30,303,030 samples, 0.05%)</title><rect x="1111.2" y="1109" width="0.7" height="15.0" fill="rgb(247,102,29)" rx="2" ry="2" />
<text x="1114.25" y="1119.5" ></text>
</g>
<g >
<title>memcached_add (10,101,010 samples, 0.02%)</title><rect x="1174.0" y="1221" width="0.2" height="15.0" fill="rgb(205,179,28)" rx="2" ry="2" />
<text x="1176.96" y="1231.5" ></text>
</g>
<g >
<title>audit_copy_inode (30,303,030 samples, 0.05%)</title><rect x="956.9" y="965" width="0.6" height="15.0" fill="rgb(246,202,11)" rx="2" ry="2" />
<text x="959.88" y="975.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="934.0" y="837" width="0.4" height="15.0" fill="rgb(225,108,23)" rx="2" ry="2" />
<text x="936.96" y="847.5" ></text>
</g>
<g >
<title>class_exists_impl (737,373,730 samples, 1.29%)</title><rect x="904.4" y="1125" width="15.2" height="15.0" fill="rgb(234,69,25)" rx="2" ry="2" />
<text x="907.38" y="1135.5" ></text>
</g>
<g >
<title>do_signal (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1173" width="0.2" height="15.0" fill="rgb(246,191,0)" rx="2" ry="2" />
<text x="1175.08" y="1183.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="528.1" y="1077" width="0.2" height="15.0" fill="rgb(210,187,24)" rx="2" ry="2" />
<text x="531.12" y="1087.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="881.2" y="741" width="0.3" height="15.0" fill="rgb(205,184,32)" rx="2" ry="2" />
<text x="884.25" y="751.5" ></text>
</g>
<g >
<title>destroy_op_array (10,101,010 samples, 0.02%)</title><rect x="219.6" y="1077" width="0.2" height="15.0" fill="rgb(227,160,47)" rx="2" ry="2" />
<text x="222.58" y="1087.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.02%)</title><rect x="890.0" y="853" width="0.2" height="15.0" fill="rgb(227,156,26)" rx="2" ry="2" />
<text x="893.00" y="863.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="511.7" y="869" width="0.2" height="15.0" fill="rgb(235,203,52)" rx="2" ry="2" />
<text x="514.67" y="879.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (50,505,050 samples, 0.09%)</title><rect x="767.1" y="1029" width="1.0" height="15.0" fill="rgb(248,162,38)" rx="2" ry="2" />
<text x="770.08" y="1039.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="342.3" y="1109" width="0.2" height="15.0" fill="rgb(240,106,48)" rx="2" ry="2" />
<text x="345.29" y="1119.5" ></text>
</g>
<g >
<title>PHP_SHA256Update (10,101,010 samples, 0.02%)</title><rect x="928.8" y="949" width="0.2" height="15.0" fill="rgb(249,68,10)" rx="2" ry="2" />
<text x="931.75" y="959.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_OP_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="528.8" y="1125" width="0.2" height="15.0" fill="rgb(219,38,1)" rx="2" ry="2" />
<text x="531.75" y="1135.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="201.9" y="1109" width="0.2" height="15.0" fill="rgb(235,120,54)" rx="2" ry="2" />
<text x="204.88" y="1119.5" ></text>
</g>
<g >
<title>__fdget (20,202,020 samples, 0.04%)</title><rect x="1180.0" y="1125" width="0.4" height="15.0" fill="rgb(249,213,40)" rx="2" ry="2" />
<text x="1183.00" y="1135.5" ></text>
</g>
<g >
<title>zend_array_count (10,101,010 samples, 0.02%)</title><rect x="347.5" y="1125" width="0.2" height="15.0" fill="rgb(254,203,39)" rx="2" ry="2" />
<text x="350.50" y="1135.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="1089.6" y="85" width="0.2" height="15.0" fill="rgb(221,91,40)" rx="2" ry="2" />
<text x="1092.58" y="95.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="965" width="0.2" height="15.0" fill="rgb(217,219,50)" rx="2" ry="2" />
<text x="1170.08" y="975.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="465.6" y="1109" width="0.2" height="15.0" fill="rgb(217,206,25)" rx="2" ry="2" />
<text x="468.62" y="1119.5" ></text>
</g>
<g >
<title>user_path_at_empty (111,111,110 samples, 0.19%)</title><rect x="774.4" y="949" width="2.3" height="15.0" fill="rgb(205,59,25)" rx="2" ry="2" />
<text x="777.38" y="959.5" ></text>
</g>
<g >
<title>zend_hash_destroy (10,101,010 samples, 0.02%)</title><rect x="1101.7" y="1125" width="0.2" height="15.0" fill="rgb(212,154,9)" rx="2" ry="2" />
<text x="1104.67" y="1135.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (7,989,898,910 samples, 13.97%)</title><rect x="37.3" y="1141" width="164.8" height="15.0" fill="rgb(243,188,49)" rx="2" ry="2" />
<text x="40.29" y="1151.5" >php_var_unserialize_i..</text>
</g>
<g >
<title>zend_execute_scripts (41,575,757,160 samples, 72.67%)</title><rect x="219.0" y="1157" width="857.5" height="15.0" fill="rgb(244,90,44)" rx="2" ry="2" />
<text x="221.96" y="1167.5" >zend_execute_scripts</text>
</g>
<g >
<title>ctnetlink_conntrack_event (10,101,010 samples, 0.02%)</title><rect x="941.7" y="629" width="0.2" height="15.0" fill="rgb(246,229,16)" rx="2" ry="2" />
<text x="944.67" y="639.5" ></text>
</g>
<g >
<title>rcu_all_qs (20,202,020 samples, 0.04%)</title><rect x="396.9" y="901" width="0.4" height="15.0" fill="rgb(228,142,21)" rx="2" ry="2" />
<text x="399.88" y="911.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="545.6" y="1061" width="0.2" height="15.0" fill="rgb(227,72,19)" rx="2" ry="2" />
<text x="548.62" y="1071.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="30.4" y="1061" width="0.2" height="15.0" fill="rgb(233,147,4)" rx="2" ry="2" />
<text x="33.42" y="1071.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (20,202,020 samples, 0.04%)</title><rect x="892.7" y="1093" width="0.4" height="15.0" fill="rgb(251,82,26)" rx="2" ry="2" />
<text x="895.71" y="1103.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="869" width="0.2" height="15.0" fill="rgb(211,16,19)" rx="2" ry="2" />
<text x="1010.50" y="879.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="917" width="0.2" height="15.0" fill="rgb(224,111,22)" rx="2" ry="2" />
<text x="1090.50" y="927.5" ></text>
</g>
<g >
<title>from_kuid_munged (10,101,010 samples, 0.02%)</title><rect x="372.1" y="1013" width="0.2" height="15.0" fill="rgb(224,129,53)" rx="2" ry="2" />
<text x="375.08" y="1023.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (30,303,030 samples, 0.05%)</title><rect x="331.7" y="1109" width="0.6" height="15.0" fill="rgb(227,195,51)" rx="2" ry="2" />
<text x="334.67" y="1119.5" ></text>
</g>
<g >
<title>nf_ct_seq_offset (10,101,010 samples, 0.02%)</title><rect x="890.0" y="821" width="0.2" height="15.0" fill="rgb(254,24,54)" rx="2" ry="2" />
<text x="893.00" y="831.5" ></text>
</g>
<g >
<title>virtqueue_get_buf (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1045" width="0.2" height="15.0" fill="rgb(219,171,10)" rx="2" ry="2" />
<text x="1118.62" y="1055.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="850.6" y="421" width="0.2" height="15.0" fill="rgb(238,139,35)" rx="2" ry="2" />
<text x="853.62" y="431.5" ></text>
</g>
<g >
<title>zend_init_func_run_time_cache (10,101,010 samples, 0.02%)</title><rect x="517.5" y="1109" width="0.2" height="15.0" fill="rgb(242,129,37)" rx="2" ry="2" />
<text x="520.50" y="1119.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (141,414,140 samples, 0.25%)</title><rect x="1184.8" y="773" width="2.9" height="15.0" fill="rgb(230,184,49)" rx="2" ry="2" />
<text x="1187.79" y="783.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="511.7" y="949" width="0.2" height="15.0" fill="rgb(219,148,4)" rx="2" ry="2" />
<text x="514.67" y="959.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="546.2" y="1141" width="0.3" height="15.0" fill="rgb(224,101,19)" rx="2" ry="2" />
<text x="549.25" y="1151.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_W_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="551.9" y="1141" width="0.2" height="15.0" fill="rgb(210,43,28)" rx="2" ry="2" />
<text x="554.88" y="1151.5" ></text>
</g>
<g >
<title>TRACE-238$MediumSpecificBagOStuff::getMulti$629 (30,303,030 samples, 0.05%)</title><rect x="451.7" y="1141" width="0.6" height="15.0" fill="rgb(219,94,32)" rx="2" ry="2" />
<text x="454.67" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="539.4" y="1045" width="0.2" height="15.0" fill="rgb(230,203,35)" rx="2" ry="2" />
<text x="542.38" y="1055.5" ></text>
</g>
<g >
<title>zif_array_map (10,101,010 samples, 0.02%)</title><rect x="285.0" y="1125" width="0.2" height="15.0" fill="rgb(228,221,32)" rx="2" ry="2" />
<text x="288.00" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_sort_ex (222,222,220 samples, 0.39%)</title><rect x="511.0" y="1109" width="4.6" height="15.0" fill="rgb(244,53,50)" rx="2" ry="2" />
<text x="514.04" y="1119.5" ></text>
</g>
<g >
<title>persistent_compile_file (525,252,520 samples, 0.92%)</title><rect x="835.6" y="853" width="10.9" height="15.0" fill="rgb(213,194,7)" rx="2" ry="2" />
<text x="838.62" y="863.5" ></text>
</g>
<g >
<title>TRACE-242$wfDebug$894 (10,101,010 samples, 0.02%)</title><rect x="455.4" y="1141" width="0.2" height="15.0" fill="rgb(246,148,15)" rx="2" ry="2" />
<text x="458.42" y="1151.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="789.0" y="661" width="0.2" height="15.0" fill="rgb(246,206,26)" rx="2" ry="2" />
<text x="791.96" y="671.5" ></text>
</g>
<g >
<title>rcu_gp_kthread_wake (10,101,010 samples, 0.02%)</title><rect x="791.5" y="901" width="0.2" height="15.0" fill="rgb(222,185,44)" rx="2" ry="2" />
<text x="794.46" y="911.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="958.1" y="1061" width="0.4" height="15.0" fill="rgb(206,202,33)" rx="2" ry="2" />
<text x="961.12" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="471.7" y="901" width="0.2" height="15.0" fill="rgb(239,191,12)" rx="2" ry="2" />
<text x="474.67" y="911.5" ></text>
</g>
<g >
<title>inet_ehash_nolisten (10,101,010 samples, 0.02%)</title><rect x="937.7" y="757" width="0.2" height="15.0" fill="rgb(252,146,14)" rx="2" ry="2" />
<text x="940.71" y="767.5" ></text>
</g>
<g >
<title>iptable_nat_do_chain (20,202,020 samples, 0.04%)</title><rect x="940.2" y="165" width="0.4" height="15.0" fill="rgb(223,1,5)" rx="2" ry="2" />
<text x="943.21" y="175.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="524.0" y="901" width="0.2" height="15.0" fill="rgb(232,158,19)" rx="2" ry="2" />
<text x="526.96" y="911.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="245.8" y="1109" width="0.2" height="15.0" fill="rgb(220,78,36)" rx="2" ry="2" />
<text x="248.83" y="1119.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="543.8" y="1093" width="0.2" height="15.0" fill="rgb(228,72,29)" rx="2" ry="2" />
<text x="546.75" y="1103.5" ></text>
</g>
<g >
<title>zif_ignore_user_abort (20,202,020 samples, 0.04%)</title><rect x="1040.0" y="1125" width="0.4" height="15.0" fill="rgb(214,46,46)" rx="2" ry="2" />
<text x="1043.00" y="1135.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="881.2" y="453" width="0.3" height="15.0" fill="rgb(208,4,0)" rx="2" ry="2" />
<text x="884.25" y="463.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1114.0" y="1029" width="0.2" height="15.0" fill="rgb(222,85,20)" rx="2" ry="2" />
<text x="1116.96" y="1039.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="741" width="0.2" height="15.0" fill="rgb(212,63,53)" rx="2" ry="2" />
<text x="1056.12" y="751.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1045" width="0.2" height="15.0" fill="rgb(226,155,8)" rx="2" ry="2" />
<text x="347.79" y="1055.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (101,010,100 samples, 0.18%)</title><rect x="939.4" y="485" width="2.1" height="15.0" fill="rgb(217,152,0)" rx="2" ry="2" />
<text x="942.38" y="495.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="925.4" y="469" width="0.2" height="15.0" fill="rgb(220,139,8)" rx="2" ry="2" />
<text x="928.42" y="479.5" ></text>
</g>
<g >
<title>ip_output (40,404,040 samples, 0.07%)</title><rect x="1089.4" y="677" width="0.8" height="15.0" fill="rgb(233,2,36)" rx="2" ry="2" />
<text x="1092.38" y="687.5" ></text>
</g>
<g >
<title>evict (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="789" width="0.3" height="15.0" fill="rgb(238,208,46)" rx="2" ry="2" />
<text x="1091.54" y="799.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="269.6" y="933" width="0.2" height="15.0" fill="rgb(253,139,45)" rx="2" ry="2" />
<text x="272.58" y="943.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="547.7" y="965" width="0.2" height="15.0" fill="rgb(250,17,5)" rx="2" ry="2" />
<text x="550.71" y="975.5" ></text>
</g>
<g >
<title>lookup_fast (20,202,020 samples, 0.04%)</title><rect x="901.7" y="965" width="0.4" height="15.0" fill="rgb(211,35,26)" rx="2" ry="2" />
<text x="904.67" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="661" width="2.9" height="15.0" fill="rgb(232,197,43)" rx="2" ry="2" />
<text x="1130.50" y="671.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="861.2" y="821" width="0.3" height="15.0" fill="rgb(254,90,20)" rx="2" ry="2" />
<text x="864.25" y="831.5" ></text>
</g>
<g >
<title>php_stat (30,303,030 samples, 0.05%)</title><rect x="295.4" y="1109" width="0.6" height="15.0" fill="rgb(241,6,40)" rx="2" ry="2" />
<text x="298.42" y="1119.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1109" width="0.3" height="15.0" fill="rgb(250,17,42)" rx="2" ry="2" />
<text x="699.25" y="1119.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="533.3" y="901" width="0.2" height="15.0" fill="rgb(213,17,53)" rx="2" ry="2" />
<text x="536.33" y="911.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="1024.0" y="869" width="0.2" height="15.0" fill="rgb(212,111,31)" rx="2" ry="2" />
<text x="1026.96" y="879.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1045" width="0.2" height="15.0" fill="rgb(219,178,18)" rx="2" ry="2" />
<text x="549.46" y="1055.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="30.2" y="1013" width="0.2" height="15.0" fill="rgb(238,76,33)" rx="2" ry="2" />
<text x="33.21" y="1023.5" ></text>
</g>
<g >
<title>zif_reset (10,101,010 samples, 0.02%)</title><rect x="1075.2" y="1141" width="0.2" height="15.0" fill="rgb(226,136,29)" rx="2" ry="2" />
<text x="1078.21" y="1151.5" ></text>
</g>
<g >
<title>inet_dev_addr_type (10,101,010 samples, 0.02%)</title><rect x="1130.6" y="645" width="0.2" height="15.0" fill="rgb(253,228,50)" rx="2" ry="2" />
<text x="1133.62" y="655.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="689.0" y="949" width="0.2" height="15.0" fill="rgb(243,63,17)" rx="2" ry="2" />
<text x="691.96" y="959.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="686.5" y="1029" width="0.4" height="15.0" fill="rgb(234,28,26)" rx="2" ry="2" />
<text x="689.46" y="1039.5" ></text>
</g>
<g >
<title>php_str_to_str_ex (20,202,020 samples, 0.04%)</title><rect x="959.2" y="1093" width="0.4" height="15.0" fill="rgb(222,131,28)" rx="2" ry="2" />
<text x="962.17" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1027.7" y="1029" width="0.2" height="15.0" fill="rgb(247,17,35)" rx="2" ry="2" />
<text x="1030.71" y="1039.5" ></text>
</g>
<g >
<title>__fxstat64 (10,101,010 samples, 0.02%)</title><rect x="950.4" y="1045" width="0.2" height="15.0" fill="rgb(243,167,45)" rx="2" ry="2" />
<text x="953.42" y="1055.5" ></text>
</g>
<g >
<title>zend_include_or_eval (272,727,270 samples, 0.48%)</title><rect x="698.8" y="1109" width="5.6" height="15.0" fill="rgb(226,40,31)" rx="2" ry="2" />
<text x="701.75" y="1119.5" ></text>
</g>
<g >
<title>zend_alter_ini_entry_ex (30,303,030 samples, 0.05%)</title><rect x="1040.8" y="1109" width="0.7" height="15.0" fill="rgb(210,52,16)" rx="2" ry="2" />
<text x="1043.83" y="1119.5" ></text>
</g>
<g >
<title>nf_ct_seq_offset (20,202,020 samples, 0.04%)</title><rect x="1163.3" y="645" width="0.5" height="15.0" fill="rgb(246,81,47)" rx="2" ry="2" />
<text x="1166.33" y="655.5" ></text>
</g>
<g >
<title>xattr_resolve_name (20,202,020 samples, 0.04%)</title><rect x="378.3" y="933" width="0.5" height="15.0" fill="rgb(229,211,26)" rx="2" ry="2" />
<text x="381.33" y="943.5" ></text>
</g>
<g >
<title>shutdown (50,505,050 samples, 0.09%)</title><rect x="1032.9" y="1109" width="1.1" height="15.0" fill="rgb(247,73,17)" rx="2" ry="2" />
<text x="1035.92" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (80,808,080 samples, 0.14%)</title><rect x="795.0" y="981" width="1.7" height="15.0" fill="rgb(221,126,40)" rx="2" ry="2" />
<text x="798.00" y="991.5" ></text>
</g>
<g >
<title>zend_duplicate_internal_function.isra.0 (50,505,050 samples, 0.09%)</title><rect x="1017.3" y="981" width="1.0" height="15.0" fill="rgb(220,100,33)" rx="2" ry="2" />
<text x="1020.29" y="991.5" ></text>
</g>
<g >
<title>zend_str_tolower_copy (20,202,020 samples, 0.04%)</title><rect x="350.4" y="1061" width="0.4" height="15.0" fill="rgb(216,206,30)" rx="2" ry="2" />
<text x="353.42" y="1071.5" ></text>
</g>
<g >
<title>spl_perform_autoload (101,010,100 samples, 0.18%)</title><rect x="677.1" y="949" width="2.1" height="15.0" fill="rgb(211,190,15)" rx="2" ry="2" />
<text x="680.08" y="959.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (30,303,030 samples, 0.05%)</title><rect x="214.8" y="1045" width="0.6" height="15.0" fill="rgb(236,139,27)" rx="2" ry="2" />
<text x="217.79" y="1055.5" ></text>
</g>
<g >
<title>_emalloc_32 (10,101,010 samples, 0.02%)</title><rect x="316.0" y="1125" width="0.2" height="15.0" fill="rgb(238,3,15)" rx="2" ry="2" />
<text x="319.04" y="1135.5" ></text>
</g>
<g >
<title>zend_objects_destroy_object (505,050,500 samples, 0.88%)</title><rect x="1081.0" y="1109" width="10.5" height="15.0" fill="rgb(228,135,13)" rx="2" ry="2" />
<text x="1084.04" y="1119.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="947.7" y="981" width="0.2" height="15.0" fill="rgb(227,131,7)" rx="2" ry="2" />
<text x="950.71" y="991.5" ></text>
</g>
<g >
<title>clear_page_rep (10,101,010 samples, 0.02%)</title><rect x="946.9" y="757" width="0.2" height="15.0" fill="rgb(225,147,15)" rx="2" ry="2" />
<text x="949.88" y="767.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_command_handshake_pub (313,131,310 samples, 0.55%)</title><rect x="924.0" y="1045" width="6.4" height="15.0" fill="rgb(253,8,28)" rx="2" ry="2" />
<text x="926.96" y="1055.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (30,303,030 samples, 0.05%)</title><rect x="938.5" y="677" width="0.7" height="15.0" fill="rgb(241,100,53)" rx="2" ry="2" />
<text x="941.54" y="687.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="183.8" y="821" width="0.2" height="15.0" fill="rgb(225,185,25)" rx="2" ry="2" />
<text x="186.75" y="831.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="789" width="0.2" height="15.0" fill="rgb(244,57,16)" rx="2" ry="2" />
<text x="1086.33" y="799.5" ></text>
</g>
<g >
<title>_raw_spin_lock (50,505,050 samples, 0.09%)</title><rect x="406.0" y="901" width="1.1" height="15.0" fill="rgb(209,210,49)" rx="2" ry="2" />
<text x="409.04" y="911.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="732.7" y="1029" width="0.8" height="15.0" fill="rgb(208,204,45)" rx="2" ry="2" />
<text x="735.71" y="1039.5" ></text>
</g>
<g >
<title>zif_explode (10,101,010 samples, 0.02%)</title><rect x="1023.1" y="1125" width="0.2" height="15.0" fill="rgb(206,83,18)" rx="2" ry="2" />
<text x="1026.12" y="1135.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="377.9" y="853" width="0.2" height="15.0" fill="rgb(212,20,35)" rx="2" ry="2" />
<text x="380.92" y="863.5" ></text>
</g>
<g >
<title>TRACE-150$MediaWiki\MediaWikiServices::getInstance$253 (30,303,030 samples, 0.05%)</title><rect x="272.7" y="1141" width="0.6" height="15.0" fill="rgb(210,102,31)" rx="2" ry="2" />
<text x="275.71" y="1151.5" ></text>
</g>
<g >
<title>__x64_sys_newstat (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1157" width="0.8" height="15.0" fill="rgb(252,129,11)" rx="2" ry="2" />
<text x="1124.67" y="1167.5" ></text>
</g>
<g >
<title>vfs_getattr (101,010,100 samples, 0.18%)</title><rect x="425.2" y="1013" width="2.1" height="15.0" fill="rgb(240,222,38)" rx="2" ry="2" />
<text x="428.21" y="1023.5" ></text>
</g>
<g >
<title>zend_is_true (30,303,030 samples, 0.05%)</title><rect x="850.8" y="901" width="0.7" height="15.0" fill="rgb(246,87,28)" rx="2" ry="2" />
<text x="853.83" y="911.5" ></text>
</g>
<g >
<title>dev_queue_xmit (60,606,060 samples, 0.11%)</title><rect x="1164.6" y="901" width="1.2" height="15.0" fill="rgb(208,149,37)" rx="2" ry="2" />
<text x="1167.58" y="911.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1149.6" y="917" width="0.2" height="15.0" fill="rgb(220,95,17)" rx="2" ry="2" />
<text x="1152.58" y="927.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="523.8" y="885" width="0.2" height="15.0" fill="rgb(251,210,16)" rx="2" ry="2" />
<text x="526.75" y="895.5" ></text>
</g>
<g >
<title>php_json_escape_string (40,404,040 samples, 0.07%)</title><rect x="1047.7" y="1077" width="0.8" height="15.0" fill="rgb(241,158,18)" rx="2" ry="2" />
<text x="1050.71" y="1087.5" ></text>
</g>
<g >
<title>ovl_other_xattr_get (20,202,020 samples, 0.04%)</title><rect x="956.9" y="917" width="0.4" height="15.0" fill="rgb(207,147,36)" rx="2" ry="2" />
<text x="959.88" y="927.5" ></text>
</g>
<g >
<title>check_stack_object (10,101,010 samples, 0.02%)</title><rect x="1146.7" y="1077" width="0.2" height="15.0" fill="rgb(209,127,13)" rx="2" ry="2" />
<text x="1149.67" y="1087.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="725" width="0.2" height="15.0" fill="rgb(224,74,39)" rx="2" ry="2" />
<text x="1150.29" y="735.5" ></text>
</g>
<g >
<title>aa_sock_opt_perm (10,101,010 samples, 0.02%)</title><rect x="1141.2" y="1093" width="0.3" height="15.0" fill="rgb(225,155,45)" rx="2" ry="2" />
<text x="1144.25" y="1103.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="882.5" y="997" width="0.2" height="15.0" fill="rgb(231,224,46)" rx="2" ry="2" />
<text x="885.50" y="1007.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="997.5" y="1109" width="0.2" height="15.0" fill="rgb(211,138,25)" rx="2" ry="2" />
<text x="1000.50" y="1119.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="856.9" y="757" width="0.2" height="15.0" fill="rgb(230,134,50)" rx="2" ry="2" />
<text x="859.88" y="767.5" ></text>
</g>
<g >
<title>_emalloc_256 (10,101,010 samples, 0.02%)</title><rect x="274.4" y="1061" width="0.2" height="15.0" fill="rgb(214,17,40)" rx="2" ry="2" />
<text x="277.38" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (343,434,340 samples, 0.60%)</title><rect x="1175.4" y="1189" width="7.1" height="15.0" fill="rgb(215,166,36)" rx="2" ry="2" />
<text x="1178.42" y="1199.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1109" width="0.2" height="15.0" fill="rgb(227,165,4)" rx="2" ry="2" />
<text x="1118.21" y="1119.5" ></text>
</g>
<g >
<title>audit_filter_inodes (30,303,030 samples, 0.05%)</title><rect x="427.3" y="1029" width="0.6" height="15.0" fill="rgb(235,40,39)" rx="2" ry="2" />
<text x="430.29" y="1039.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="684.6" y="997" width="0.4" height="15.0" fill="rgb(212,63,42)" rx="2" ry="2" />
<text x="687.58" y="1007.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="499.4" y="1109" width="0.2" height="15.0" fill="rgb(251,150,21)" rx="2" ry="2" />
<text x="502.38" y="1119.5" ></text>
</g>
<g >
<title>lookup_fast (242,424,240 samples, 0.42%)</title><rect x="412.1" y="949" width="5.0" height="15.0" fill="rgb(231,51,27)" rx="2" ry="2" />
<text x="415.08" y="959.5" ></text>
</g>
<g >
<title>_php_stream_read (80,808,080 samples, 0.14%)</title><rect x="926.2" y="917" width="1.7" height="15.0" fill="rgb(212,79,37)" rx="2" ry="2" />
<text x="929.25" y="927.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="742.9" y="773" width="0.2" height="15.0" fill="rgb(205,198,28)" rx="2" ry="2" />
<text x="745.92" y="783.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="857.1" y="805" width="0.2" height="15.0" fill="rgb(240,184,27)" rx="2" ry="2" />
<text x="860.08" y="815.5" ></text>
</g>
<g >
<title>__x64_sys_close (10,101,010 samples, 0.02%)</title><rect x="1144.2" y="1173" width="0.2" height="15.0" fill="rgb(209,142,4)" rx="2" ry="2" />
<text x="1147.17" y="1183.5" ></text>
</g>
<g >
<title>_emalloc_48 (10,101,010 samples, 0.02%)</title><rect x="895.0" y="1125" width="0.2" height="15.0" fill="rgb(251,150,16)" rx="2" ry="2" />
<text x="898.00" y="1135.5" ></text>
</g>
<g >
<title>execute_ex (191,919,190 samples, 0.34%)</title><rect x="1015.4" y="1061" width="4.0" height="15.0" fill="rgb(220,11,8)" rx="2" ry="2" />
<text x="1018.42" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (252,525,250 samples, 0.44%)</title><rect x="937.5" y="885" width="5.2" height="15.0" fill="rgb(207,43,34)" rx="2" ry="2" />
<text x="940.50" y="895.5" ></text>
</g>
<g >
<title>__slab_alloc (10,101,010 samples, 0.02%)</title><rect x="1183.8" y="1045" width="0.2" height="15.0" fill="rgb(206,104,25)" rx="2" ry="2" />
<text x="1186.75" y="1055.5" ></text>
</g>
<g >
<title>zend_array_dup (30,303,030 samples, 0.05%)</title><rect x="709.2" y="1013" width="0.6" height="15.0" fill="rgb(229,39,42)" rx="2" ry="2" />
<text x="712.17" y="1023.5" ></text>
</g>
<g >
<title>pipe_write (20,202,020 samples, 0.04%)</title><rect x="1108.1" y="1045" width="0.4" height="15.0" fill="rgb(220,53,21)" rx="2" ry="2" />
<text x="1111.12" y="1055.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="834.0" y="869" width="0.4" height="15.0" fill="rgb(245,181,42)" rx="2" ry="2" />
<text x="836.96" y="879.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="672.5" y="885" width="0.2" height="15.0" fill="rgb(226,203,7)" rx="2" ry="2" />
<text x="675.50" y="895.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="644.6" y="1093" width="0.2" height="15.0" fill="rgb(212,142,24)" rx="2" ry="2" />
<text x="647.58" y="1103.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="981" width="0.3" height="15.0" fill="rgb(211,41,52)" rx="2" ry="2" />
<text x="1044.25" y="991.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1013" width="0.3" height="15.0" fill="rgb(227,95,45)" rx="2" ry="2" />
<text x="446.54" y="1023.5" ></text>
</g>
<g >
<title>ext4_xattr_ibody_get (20,202,020 samples, 0.04%)</title><rect x="956.9" y="789" width="0.4" height="15.0" fill="rgb(231,115,40)" rx="2" ry="2" />
<text x="959.88" y="799.5" ></text>
</g>
<g >
<title>php_stream_locate_url_wrapper (10,101,010 samples, 0.02%)</title><rect x="958.5" y="1109" width="0.3" height="15.0" fill="rgb(221,141,19)" rx="2" ry="2" />
<text x="961.54" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1083.5" y="1013" width="0.3" height="15.0" fill="rgb(239,225,43)" rx="2" ry="2" />
<text x="1086.54" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1061" width="0.2" height="15.0" fill="rgb(226,36,37)" rx="2" ry="2" />
<text x="550.71" y="1071.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="805" width="0.2" height="15.0" fill="rgb(232,68,41)" rx="2" ry="2" />
<text x="1150.29" y="815.5" ></text>
</g>
<g >
<title>persistent_compile_file (90,909,090 samples, 0.16%)</title><rect x="729.6" y="981" width="1.9" height="15.0" fill="rgb(246,42,0)" rx="2" ry="2" />
<text x="732.58" y="991.5" ></text>
</g>
<g >
<title>ovl_getattr (10,101,010 samples, 0.02%)</title><rect x="957.9" y="981" width="0.2" height="15.0" fill="rgb(215,1,54)" rx="2" ry="2" />
<text x="960.92" y="991.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1109" width="0.2" height="15.0" fill="rgb(226,138,35)" rx="2" ry="2" />
<text x="347.79" y="1119.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="687.5" y="949" width="0.4" height="15.0" fill="rgb(241,220,47)" rx="2" ry="2" />
<text x="690.50" y="959.5" ></text>
</g>
<g >
<title>path_put (10,101,010 samples, 0.02%)</title><rect x="433.1" y="1029" width="0.2" height="15.0" fill="rgb(242,156,38)" rx="2" ry="2" />
<text x="436.12" y="1039.5" ></text>
</g>
<g >
<title>zend_compare (10,101,010 samples, 0.02%)</title><rect x="334.2" y="1109" width="0.2" height="15.0" fill="rgb(219,141,20)" rx="2" ry="2" />
<text x="337.17" y="1119.5" ></text>
</g>
<g >
<title>php_mysqlnd_net_field_length (10,101,010 samples, 0.02%)</title><rect x="1052.3" y="1077" width="0.2" height="15.0" fill="rgb(243,220,52)" rx="2" ry="2" />
<text x="1055.29" y="1087.5" ></text>
</g>
<g >
<title>php_auto_globals_create_get (10,101,010 samples, 0.02%)</title><rect x="1103.8" y="1125" width="0.2" height="15.0" fill="rgb(254,210,24)" rx="2" ry="2" />
<text x="1106.75" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_rehash (20,202,020 samples, 0.04%)</title><rect x="698.3" y="1077" width="0.5" height="15.0" fill="rgb(237,130,13)" rx="2" ry="2" />
<text x="701.33" y="1087.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="684.8" y="885" width="0.2" height="15.0" fill="rgb(240,158,6)" rx="2" ry="2" />
<text x="687.79" y="895.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="443.5" y="997" width="0.3" height="15.0" fill="rgb(213,94,37)" rx="2" ry="2" />
<text x="446.54" y="1007.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="1032.7" y="997" width="0.2" height="15.0" fill="rgb(229,216,4)" rx="2" ry="2" />
<text x="1035.71" y="1007.5" ></text>
</g>
<g >
<title>filename_lookup (101,010,100 samples, 0.18%)</title><rect x="910.6" y="949" width="2.1" height="15.0" fill="rgb(222,36,29)" rx="2" ry="2" />
<text x="913.62" y="959.5" ></text>
</g>
<g >
<title>zif_mysqli_options (20,202,020 samples, 0.04%)</title><rect x="1051.0" y="1125" width="0.5" height="15.0" fill="rgb(245,186,0)" rx="2" ry="2" />
<text x="1054.04" y="1135.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (161,616,160 samples, 0.28%)</title><rect x="734.4" y="949" width="3.3" height="15.0" fill="rgb(226,140,37)" rx="2" ry="2" />
<text x="737.38" y="959.5" ></text>
</g>
<g >
<title>tcp_send_ack (10,101,010 samples, 0.02%)</title><rect x="856.9" y="533" width="0.2" height="15.0" fill="rgb(244,45,19)" rx="2" ry="2" />
<text x="859.88" y="543.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1004.8" y="1045" width="0.2" height="15.0" fill="rgb(231,9,3)" rx="2" ry="2" />
<text x="1007.79" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="1103.1" y="1125" width="0.2" height="15.0" fill="rgb(247,94,35)" rx="2" ry="2" />
<text x="1106.12" y="1135.5" ></text>
</g>
<g >
<title>_efree (20,202,020 samples, 0.04%)</title><rect x="458.3" y="1109" width="0.5" height="15.0" fill="rgb(218,165,6)" rx="2" ry="2" />
<text x="461.33" y="1119.5" ></text>
</g>
<g >
<title>vfs_getxattr (20,202,020 samples, 0.04%)</title><rect x="956.9" y="885" width="0.4" height="15.0" fill="rgb(241,37,1)" rx="2" ry="2" />
<text x="959.88" y="895.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1037.3" y="917" width="0.2" height="15.0" fill="rgb(241,31,45)" rx="2" ry="2" />
<text x="1040.29" y="927.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="183.8" y="693" width="0.2" height="15.0" fill="rgb(246,167,26)" rx="2" ry="2" />
<text x="186.75" y="703.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="821" width="0.4" height="15.0" fill="rgb(223,178,38)" rx="2" ry="2" />
<text x="1035.92" y="831.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1061" width="0.2" height="15.0" fill="rgb(214,20,27)" rx="2" ry="2" />
<text x="621.96" y="1071.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (20,202,020 samples, 0.04%)</title><rect x="806.5" y="805" width="0.4" height="15.0" fill="rgb(233,210,24)" rx="2" ry="2" />
<text x="809.46" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (111,111,110 samples, 0.19%)</title><rect x="935.0" y="885" width="2.3" height="15.0" fill="rgb(234,225,10)" rx="2" ry="2" />
<text x="938.00" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="998.8" y="933" width="0.2" height="15.0" fill="rgb(238,107,13)" rx="2" ry="2" />
<text x="1001.75" y="943.5" ></text>
</g>
<g >
<title>ZEND_SEND_UNPACK_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="449.2" y="1125" width="0.2" height="15.0" fill="rgb(232,221,20)" rx="2" ry="2" />
<text x="452.17" y="1135.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="613" width="0.4" height="15.0" fill="rgb(237,33,28)" rx="2" ry="2" />
<text x="1035.92" y="623.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="678.8" y="869" width="0.2" height="15.0" fill="rgb(212,160,13)" rx="2" ry="2" />
<text x="681.75" y="879.5" ></text>
</g>
<g >
<title>add_function (212,121,210 samples, 0.37%)</title><rect x="962.9" y="1109" width="4.4" height="15.0" fill="rgb(225,167,2)" rx="2" ry="2" />
<text x="965.92" y="1119.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="973.3" y="885" width="0.2" height="15.0" fill="rgb(208,73,7)" rx="2" ry="2" />
<text x="976.33" y="895.5" ></text>
</g>
<g >
<title>zend_release_fcall_info_cache (10,101,010 samples, 0.02%)</title><rect x="510.2" y="1093" width="0.2" height="15.0" fill="rgb(254,40,23)" rx="2" ry="2" />
<text x="513.21" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ROPE_ADD_SPEC_TMP_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="555.6" y="1141" width="0.2" height="15.0" fill="rgb(250,81,27)" rx="2" ry="2" />
<text x="558.62" y="1151.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="930.8" y="885" width="0.2" height="15.0" fill="rgb(253,69,29)" rx="2" ry="2" />
<text x="933.83" y="895.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="302.7" y="853" width="0.2" height="15.0" fill="rgb(244,83,42)" rx="2" ry="2" />
<text x="305.71" y="863.5" ></text>
</g>
<g >
<title>ovl_permission (353,535,350 samples, 0.62%)</title><rect x="385.8" y="933" width="7.3" height="15.0" fill="rgb(214,137,11)" rx="2" ry="2" />
<text x="388.83" y="943.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1109" width="0.3" height="15.0" fill="rgb(221,118,20)" rx="2" ry="2" />
<text x="1174.25" y="1119.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="629" width="0.2" height="15.0" fill="rgb(218,169,49)" rx="2" ry="2" />
<text x="1170.08" y="639.5" ></text>
</g>
<g >
<title>_zend_new_array (111,111,110 samples, 0.19%)</title><rect x="134.6" y="1077" width="2.3" height="15.0" fill="rgb(244,201,45)" rx="2" ry="2" />
<text x="137.58" y="1087.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="837" width="0.2" height="15.0" fill="rgb(221,63,15)" rx="2" ry="2" />
<text x="1150.29" y="847.5" ></text>
</g>
<g >
<title>zend_rebuild_symbol_table (10,101,010 samples, 0.02%)</title><rect x="676.0" y="1013" width="0.2" height="15.0" fill="rgb(240,229,40)" rx="2" ry="2" />
<text x="679.04" y="1023.5" ></text>
</g>
<g >
<title>zend_detach_symbol_table (10,101,010 samples, 0.02%)</title><rect x="867.9" y="917" width="0.2" height="15.0" fill="rgb(219,55,25)" rx="2" ry="2" />
<text x="870.92" y="927.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (70,707,070 samples, 0.12%)</title><rect x="1169.4" y="1157" width="1.4" height="15.0" fill="rgb(225,17,17)" rx="2" ry="2" />
<text x="1172.38" y="1167.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (20,202,020 samples, 0.04%)</title><rect x="289.0" y="1093" width="0.4" height="15.0" fill="rgb(221,144,50)" rx="2" ry="2" />
<text x="291.96" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (232,323,230 samples, 0.41%)</title><rect x="1005.6" y="1029" width="4.8" height="15.0" fill="rgb(211,224,27)" rx="2" ry="2" />
<text x="1008.62" y="1039.5" ></text>
</g>
<g >
<title>s_get_multi_apply_fn (10,101,010 samples, 0.02%)</title><rect x="1140.2" y="1205" width="0.2" height="15.0" fill="rgb(233,93,34)" rx="2" ry="2" />
<text x="1143.21" y="1215.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1045" width="0.2" height="15.0" fill="rgb(235,12,42)" rx="2" ry="2" />
<text x="205.50" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="919.2" y="1077" width="0.2" height="15.0" fill="rgb(228,221,1)" rx="2" ry="2" />
<text x="922.17" y="1087.5" ></text>
</g>
<g >
<title>__do_sys_newstat (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1141" width="0.8" height="15.0" fill="rgb(209,60,42)" rx="2" ry="2" />
<text x="1124.67" y="1151.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="725" width="0.2" height="15.0" fill="rgb(216,102,33)" rx="2" ry="2" />
<text x="1056.12" y="735.5" ></text>
</g>
<g >
<title>do_faccessat (131,313,130 samples, 0.23%)</title><rect x="774.0" y="965" width="2.7" height="15.0" fill="rgb(238,36,20)" rx="2" ry="2" />
<text x="776.96" y="975.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (90,909,090 samples, 0.16%)</title><rect x="770.4" y="1045" width="1.9" height="15.0" fill="rgb(224,92,34)" rx="2" ry="2" />
<text x="773.42" y="1055.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="344.8" y="981" width="0.2" height="15.0" fill="rgb(224,90,28)" rx="2" ry="2" />
<text x="347.79" y="991.5" ></text>
</g>
<g >
<title>php_spn_common_handler (30,303,030 samples, 0.05%)</title><rect x="322.3" y="1125" width="0.6" height="15.0" fill="rgb(216,197,30)" rx="2" ry="2" />
<text x="325.29" y="1135.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="492.1" y="1125" width="0.2" height="15.0" fill="rgb(232,227,12)" rx="2" ry="2" />
<text x="495.08" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1189" width="0.2" height="15.0" fill="rgb(219,122,14)" rx="2" ry="2" />
<text x="1175.50" y="1199.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="465.4" y="1109" width="0.2" height="15.0" fill="rgb(237,185,53)" rx="2" ry="2" />
<text x="468.42" y="1119.5" ></text>
</g>
<g >
<title>get_vfs_caps_from_disk (10,101,010 samples, 0.02%)</title><rect x="1135.6" y="1061" width="0.2" height="15.0" fill="rgb(237,136,17)" rx="2" ry="2" />
<text x="1138.62" y="1071.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="922.3" y="869" width="0.4" height="15.0" fill="rgb(245,20,33)" rx="2" ry="2" />
<text x="925.29" y="879.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (50,505,050 samples, 0.09%)</title><rect x="213.5" y="933" width="1.1" height="15.0" fill="rgb(234,227,29)" rx="2" ry="2" />
<text x="216.54" y="943.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (20,202,020 samples, 0.04%)</title><rect x="489.2" y="1125" width="0.4" height="15.0" fill="rgb(214,204,43)" rx="2" ry="2" />
<text x="492.17" y="1135.5" ></text>
</g>
<g >
<title>schedule (30,303,030 samples, 0.05%)</title><rect x="935.6" y="789" width="0.6" height="15.0" fill="rgb(247,143,30)" rx="2" ry="2" />
<text x="938.62" y="799.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1109" width="0.9" height="15.0" fill="rgb(254,229,22)" rx="2" ry="2" />
<text x="756.33" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (171,717,170 samples, 0.30%)</title><rect x="803.5" y="917" width="3.6" height="15.0" fill="rgb(238,32,34)" rx="2" ry="2" />
<text x="806.54" y="927.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1132.1" y="1141" width="0.2" height="15.0" fill="rgb(227,129,34)" rx="2" ry="2" />
<text x="1135.08" y="1151.5" ></text>
</g>
<g >
<title>_emalloc_256 (10,101,010 samples, 0.02%)</title><rect x="857.3" y="837" width="0.2" height="15.0" fill="rgb(212,169,5)" rx="2" ry="2" />
<text x="860.29" y="847.5" ></text>
</g>
<g >
<title>php_array_key_compare (30,303,030 samples, 0.05%)</title><rect x="511.9" y="1061" width="0.6" height="15.0" fill="rgb(218,127,7)" rx="2" ry="2" />
<text x="514.88" y="1071.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_VAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="618.3" y="1125" width="0.5" height="15.0" fill="rgb(238,124,9)" rx="2" ry="2" />
<text x="621.33" y="1135.5" ></text>
</g>
<g >
<title>persistent_compile_file (303,030,300 samples, 0.53%)</title><rect x="274.0" y="1077" width="6.2" height="15.0" fill="rgb(228,115,24)" rx="2" ry="2" />
<text x="276.96" y="1087.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (525,252,520 samples, 0.92%)</title><rect x="1151.7" y="693" width="10.8" height="15.0" fill="rgb(213,11,23)" rx="2" ry="2" />
<text x="1154.67" y="703.5" ></text>
</g>
<g >
<title>zend_jit_find_ns_func_helper (10,101,010 samples, 0.02%)</title><rect x="449.8" y="1125" width="0.2" height="15.0" fill="rgb(248,129,8)" rx="2" ry="2" />
<text x="452.79" y="1135.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (10,101,010 samples, 0.02%)</title><rect x="744.0" y="597" width="0.2" height="15.0" fill="rgb(231,167,15)" rx="2" ry="2" />
<text x="746.96" y="607.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (10,101,010 samples, 0.02%)</title><rect x="942.9" y="837" width="0.2" height="15.0" fill="rgb(234,72,11)" rx="2" ry="2" />
<text x="945.92" y="847.5" ></text>
</g>
<g >
<title>__sys_connect (252,525,250 samples, 0.44%)</title><rect x="937.5" y="853" width="5.2" height="15.0" fill="rgb(245,179,2)" rx="2" ry="2" />
<text x="940.50" y="863.5" ></text>
</g>
<g >
<title>php_string_tolower (10,101,010 samples, 0.02%)</title><rect x="282.1" y="1109" width="0.2" height="15.0" fill="rgb(214,62,29)" rx="2" ry="2" />
<text x="285.08" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="30.2" y="837" width="0.2" height="15.0" fill="rgb(231,93,29)" rx="2" ry="2" />
<text x="33.21" y="847.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="869" width="0.3" height="15.0" fill="rgb(249,201,50)" rx="2" ry="2" />
<text x="1036.54" y="879.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.07%)</title><rect x="1144.0" y="1189" width="0.8" height="15.0" fill="rgb(253,39,32)" rx="2" ry="2" />
<text x="1146.96" y="1199.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1013" width="0.2" height="15.0" fill="rgb(232,1,48)" rx="2" ry="2" />
<text x="35.29" y="1023.5" ></text>
</g>
<g >
<title>do_bind_class (10,101,010 samples, 0.02%)</title><rect x="773.3" y="1013" width="0.2" height="15.0" fill="rgb(225,64,4)" rx="2" ry="2" />
<text x="776.33" y="1023.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="913.1" y="789" width="0.2" height="15.0" fill="rgb(221,165,49)" rx="2" ry="2" />
<text x="916.12" y="799.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="856.9" y="693" width="0.2" height="15.0" fill="rgb(231,120,11)" rx="2" ry="2" />
<text x="859.88" y="703.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (121,212,120 samples, 0.21%)</title><rect x="1011.0" y="1045" width="2.5" height="15.0" fill="rgb(238,179,2)" rx="2" ry="2" />
<text x="1014.04" y="1055.5" ></text>
</g>
<g >
<title>zend_is_valid_class_name (10,101,010 samples, 0.02%)</title><rect x="712.3" y="1077" width="0.2" height="15.0" fill="rgb(213,199,19)" rx="2" ry="2" />
<text x="715.29" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1045" width="0.2" height="15.0" fill="rgb(218,196,24)" rx="2" ry="2" />
<text x="1118.21" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (10,101,010 samples, 0.02%)</title><rect x="714.0" y="949" width="0.2" height="15.0" fill="rgb(251,68,54)" rx="2" ry="2" />
<text x="716.96" y="959.5" ></text>
</g>
<g >
<title>inet6_release (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="965" width="0.3" height="15.0" fill="rgb(228,118,5)" rx="2" ry="2" />
<text x="1026.54" y="975.5" ></text>
</g>
<g >
<title>__alloc_skb (10,101,010 samples, 0.02%)</title><rect x="244.0" y="821" width="0.2" height="15.0" fill="rgb(229,151,37)" rx="2" ry="2" />
<text x="246.96" y="831.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1013" width="0.3" height="15.0" fill="rgb(233,138,12)" rx="2" ry="2" />
<text x="1174.25" y="1023.5" ></text>
</g>
<g >
<title>zend_do_delayed_early_binding (40,404,040 samples, 0.07%)</title><rect x="789.2" y="949" width="0.8" height="15.0" fill="rgb(253,140,51)" rx="2" ry="2" />
<text x="792.17" y="959.5" ></text>
</g>
<g >
<title>copy_user_generic_string (10,101,010 samples, 0.02%)</title><rect x="949.4" y="981" width="0.2" height="15.0" fill="rgb(219,195,0)" rx="2" ry="2" />
<text x="952.38" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="906.2" y="1029" width="0.3" height="15.0" fill="rgb(205,8,31)" rx="2" ry="2" />
<text x="909.25" y="1039.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="545.6" y="1093" width="0.2" height="15.0" fill="rgb(243,114,22)" rx="2" ry="2" />
<text x="548.62" y="1103.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (10,101,010 samples, 0.02%)</title><rect x="503.1" y="1125" width="0.2" height="15.0" fill="rgb(245,147,11)" rx="2" ry="2" />
<text x="506.12" y="1135.5" ></text>
</g>
<g >
<title>br_handle_frame (616,161,610 samples, 1.08%)</title><rect x="1151.5" y="757" width="12.7" height="15.0" fill="rgb(253,46,15)" rx="2" ry="2" />
<text x="1154.46" y="767.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (101,010,100 samples, 0.18%)</title><rect x="920.8" y="1045" width="2.1" height="15.0" fill="rgb(224,20,24)" rx="2" ry="2" />
<text x="923.83" y="1055.5" ></text>
</g>
<g >
<title>timelib_do_normalize (10,101,010 samples, 0.02%)</title><rect x="491.2" y="1077" width="0.3" height="15.0" fill="rgb(231,136,49)" rx="2" ry="2" />
<text x="494.25" y="1087.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_SPEC_CV_VAR_RETVAL_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="548.3" y="1141" width="0.2" height="15.0" fill="rgb(254,134,25)" rx="2" ry="2" />
<text x="551.33" y="1151.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="471.0" y="1093" width="0.2" height="15.0" fill="rgb(206,212,35)" rx="2" ry="2" />
<text x="474.04" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="888.5" y="1077" width="0.3" height="15.0" fill="rgb(214,7,37)" rx="2" ry="2" />
<text x="891.54" y="1087.5" ></text>
</g>
<g >
<title>tcp_shutdown (242,424,240 samples, 0.42%)</title><rect x="1183.3" y="1125" width="5.0" height="15.0" fill="rgb(209,26,48)" rx="2" ry="2" />
<text x="1186.33" y="1135.5" ></text>
</g>
<g >
<title>copy_page_from_iter (10,101,010 samples, 0.02%)</title><rect x="214.6" y="949" width="0.2" height="15.0" fill="rgb(246,17,35)" rx="2" ry="2" />
<text x="217.58" y="959.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (20,202,020 samples, 0.04%)</title><rect x="107.1" y="1061" width="0.4" height="15.0" fill="rgb(239,110,0)" rx="2" ry="2" />
<text x="110.08" y="1071.5" ></text>
</g>
<g >
<title>zend_register_constant (20,202,020 samples, 0.04%)</title><rect x="1022.1" y="1109" width="0.4" height="15.0" fill="rgb(242,142,29)" rx="2" ry="2" />
<text x="1025.08" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="304.4" y="597" width="0.4" height="15.0" fill="rgb(238,139,11)" rx="2" ry="2" />
<text x="307.38" y="607.5" ></text>
</g>
<g >
<title>php_json_parser_init (20,202,020 samples, 0.04%)</title><rect x="1042.7" y="1093" width="0.4" height="15.0" fill="rgb(242,7,41)" rx="2" ry="2" />
<text x="1045.71" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (40,404,040 samples, 0.07%)</title><rect x="743.5" y="901" width="0.9" height="15.0" fill="rgb(253,128,1)" rx="2" ry="2" />
<text x="746.54" y="911.5" ></text>
</g>
<g >
<title>__alloc_skb (20,202,020 samples, 0.04%)</title><rect x="942.1" y="757" width="0.4" height="15.0" fill="rgb(233,13,8)" rx="2" ry="2" />
<text x="945.08" y="767.5" ></text>
</g>
<g >
<title>__alloc_fd (10,101,010 samples, 0.02%)</title><rect x="950.0" y="981" width="0.2" height="15.0" fill="rgb(232,81,22)" rx="2" ry="2" />
<text x="953.00" y="991.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1045" width="0.2" height="15.0" fill="rgb(232,35,39)" rx="2" ry="2" />
<text x="560.29" y="1055.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="1087.3" y="1061" width="0.2" height="15.0" fill="rgb(215,225,39)" rx="2" ry="2" />
<text x="1090.29" y="1071.5" ></text>
</g>
<g >
<title>ovl_permission (20,202,020 samples, 0.04%)</title><rect x="1122.1" y="1029" width="0.4" height="15.0" fill="rgb(205,72,51)" rx="2" ry="2" />
<text x="1125.08" y="1039.5" ></text>
</g>
<g >
<title>make_subpats_table (30,303,030 samples, 0.05%)</title><rect x="306.2" y="1093" width="0.7" height="15.0" fill="rgb(222,85,27)" rx="2" ry="2" />
<text x="309.25" y="1103.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1169.2" y="1125" width="0.2" height="15.0" fill="rgb(217,170,8)" rx="2" ry="2" />
<text x="1172.17" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1045" width="0.2" height="15.0" fill="rgb(230,133,12)" rx="2" ry="2" />
<text x="893.00" y="1055.5" ></text>
</g>
<g >
<title>tcp_fin (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="837" width="0.2" height="15.0" fill="rgb(211,108,43)" rx="2" ry="2" />
<text x="1083.83" y="847.5" ></text>
</g>
<g >
<title>kmem_cache_free (20,202,020 samples, 0.04%)</title><rect x="1177.5" y="1061" width="0.4" height="15.0" fill="rgb(236,23,10)" rx="2" ry="2" />
<text x="1180.50" y="1071.5" ></text>
</g>
<g >
<title>tcp_data_queue (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="853" width="0.2" height="15.0" fill="rgb(245,130,5)" rx="2" ry="2" />
<text x="1083.83" y="863.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (20,202,020 samples, 0.04%)</title><rect x="462.3" y="1093" width="0.4" height="15.0" fill="rgb(220,197,47)" rx="2" ry="2" />
<text x="465.29" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="940.2" y="229" width="0.4" height="15.0" fill="rgb(213,24,37)" rx="2" ry="2" />
<text x="943.21" y="239.5" ></text>
</g>
<g >
<title>__lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="1008.8" y="837" width="0.2" height="15.0" fill="rgb(211,221,9)" rx="2" ry="2" />
<text x="1011.75" y="847.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="535.4" y="1029" width="0.2" height="15.0" fill="rgb(241,170,15)" rx="2" ry="2" />
<text x="538.42" y="1039.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="654.2" y="837" width="0.2" height="15.0" fill="rgb(206,17,0)" rx="2" ry="2" />
<text x="657.17" y="847.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="779.0" y="949" width="0.2" height="15.0" fill="rgb(205,206,26)" rx="2" ry="2" />
<text x="781.96" y="959.5" ></text>
</g>
<g >
<title>_erealloc (10,101,010 samples, 0.02%)</title><rect x="349.6" y="1077" width="0.2" height="15.0" fill="rgb(236,166,19)" rx="2" ry="2" />
<text x="352.58" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="427.1" y="901" width="0.2" height="15.0" fill="rgb(246,120,48)" rx="2" ry="2" />
<text x="430.08" y="911.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="284.2" y="1029" width="0.2" height="15.0" fill="rgb(236,17,52)" rx="2" ry="2" />
<text x="287.17" y="1039.5" ></text>
</g>
<g >
<title>filename_lookup (80,808,080 samples, 0.14%)</title><rect x="1007.3" y="949" width="1.7" height="15.0" fill="rgb(231,229,44)" rx="2" ry="2" />
<text x="1010.29" y="959.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="955.4" y="981" width="0.2" height="15.0" fill="rgb(251,139,5)" rx="2" ry="2" />
<text x="958.42" y="991.5" ></text>
</g>
<g >
<title>TRACE-222$Wikimedia\Services\ServiceContainer::createService$445 (111,111,110 samples, 0.19%)</title><rect x="446.5" y="1141" width="2.3" height="15.0" fill="rgb(217,58,5)" rx="2" ry="2" />
<text x="449.46" y="1151.5" ></text>
</g>
<g >
<title>walk_component (60,606,060 samples, 0.11%)</title><rect x="911.5" y="901" width="1.2" height="15.0" fill="rgb(227,30,0)" rx="2" ry="2" />
<text x="914.46" y="911.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="32.3" y="725" width="0.2" height="15.0" fill="rgb(218,172,53)" rx="2" ry="2" />
<text x="35.29" y="735.5" ></text>
</g>
<g >
<title>security_inode_getsecurity (20,202,020 samples, 0.04%)</title><rect x="956.9" y="869" width="0.4" height="15.0" fill="rgb(230,69,34)" rx="2" ry="2" />
<text x="959.88" y="879.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="913.1" y="805" width="0.2" height="15.0" fill="rgb(244,124,7)" rx="2" ry="2" />
<text x="916.12" y="815.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (10,101,010 samples, 0.02%)</title><rect x="343.8" y="1125" width="0.2" height="15.0" fill="rgb(215,197,15)" rx="2" ry="2" />
<text x="346.75" y="1135.5" ></text>
</g>
<g >
<title>try_fill_recv (10,101,010 samples, 0.02%)</title><rect x="946.9" y="853" width="0.2" height="15.0" fill="rgb(236,106,12)" rx="2" ry="2" />
<text x="949.88" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1125" width="0.2" height="15.0" fill="rgb(235,26,17)" rx="2" ry="2" />
<text x="1105.08" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="437" width="0.3" height="15.0" fill="rgb(214,186,10)" rx="2" ry="2" />
<text x="1134.25" y="447.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="963.3" y="1077" width="0.2" height="15.0" fill="rgb(250,124,38)" rx="2" ry="2" />
<text x="966.33" y="1087.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="805.4" y="821" width="0.2" height="15.0" fill="rgb(215,31,23)" rx="2" ry="2" />
<text x="808.42" y="831.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="973.3" y="805" width="0.2" height="15.0" fill="rgb(238,196,8)" rx="2" ry="2" />
<text x="976.33" y="815.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (4,131,313,090 samples, 7.22%)</title><rect x="108.3" y="1093" width="85.2" height="15.0" fill="rgb(235,206,10)" rx="2" ry="2" />
<text x="111.33" y="1103.5" >php_var_un..</text>
</g>
<g >
<title>TRACE-286$MWCallableUpdate::getOrigin$53 (10,101,010 samples, 0.02%)</title><rect x="477.3" y="1141" width="0.2" height="15.0" fill="rgb(238,73,30)" rx="2" ry="2" />
<text x="480.29" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="805" width="0.2" height="15.0" fill="rgb(220,65,38)" rx="2" ry="2" />
<text x="1056.33" y="815.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="744.4" y="885" width="0.2" height="15.0" fill="rgb(251,6,8)" rx="2" ry="2" />
<text x="747.38" y="895.5" ></text>
</g>
<g >
<title>spl_perform_autoload (40,404,040 samples, 0.07%)</title><rect x="1018.3" y="965" width="0.9" height="15.0" fill="rgb(225,216,54)" rx="2" ry="2" />
<text x="1021.33" y="975.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (10,101,010 samples, 0.02%)</title><rect x="886.7" y="1045" width="0.2" height="15.0" fill="rgb(231,82,42)" rx="2" ry="2" />
<text x="889.67" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="906.7" y="1045" width="0.6" height="15.0" fill="rgb(230,9,9)" rx="2" ry="2" />
<text x="909.67" y="1055.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="894.6" y="1125" width="0.2" height="15.0" fill="rgb(223,221,18)" rx="2" ry="2" />
<text x="897.58" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="967.1" y="965" width="0.2" height="15.0" fill="rgb(227,4,13)" rx="2" ry="2" />
<text x="970.08" y="975.5" ></text>
</g>
<g >
<title>virtqueue_get_buf_ctx (10,101,010 samples, 0.02%)</title><rect x="193.5" y="997" width="0.3" height="15.0" fill="rgb(210,135,34)" rx="2" ry="2" />
<text x="196.54" y="1007.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="503.5" y="1109" width="0.3" height="15.0" fill="rgb(233,164,37)" rx="2" ry="2" />
<text x="506.54" y="1119.5" ></text>
</g>
<g >
<title>php_array_key_compare (30,303,030 samples, 0.05%)</title><rect x="513.8" y="1045" width="0.6" height="15.0" fill="rgb(254,31,13)" rx="2" ry="2" />
<text x="516.75" y="1055.5" ></text>
</g>
<g >
<title>TRACE-257$Wikimedia\Rdbms\LoadBalancer::forEachOpenPrimaryConnection$2338 (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1141" width="0.2" height="15.0" fill="rgb(210,101,30)" rx="2" ry="2" />
<text x="468.83" y="1151.5" ></text>
</g>
<g >
<title>TRACE-198$Wikimedia\Services\ServiceContainer::getService$416 (10,101,010 samples, 0.02%)</title><rect x="341.9" y="1141" width="0.2" height="15.0" fill="rgb(244,125,5)" rx="2" ry="2" />
<text x="344.88" y="1151.5" ></text>
</g>
<g >
<title>ip_forward (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="245" width="0.4" height="15.0" fill="rgb(245,18,17)" rx="2" ry="2" />
<text x="1092.58" y="255.5" ></text>
</g>
<g >
<title>_cond_resched (20,202,020 samples, 0.04%)</title><rect x="420.8" y="965" width="0.4" height="15.0" fill="rgb(239,17,40)" rx="2" ry="2" />
<text x="423.83" y="975.5" ></text>
</g>
<g >
<title>inflateBack (10,101,010 samples, 0.02%)</title><rect x="1133.8" y="1205" width="0.2" height="15.0" fill="rgb(217,7,35)" rx="2" ry="2" />
<text x="1136.75" y="1215.5" ></text>
</g>
<g >
<title>legitimize_path.isra.30 (20,202,020 samples, 0.04%)</title><rect x="775.4" y="869" width="0.4" height="15.0" fill="rgb(238,156,18)" rx="2" ry="2" />
<text x="778.42" y="879.5" ></text>
</g>
<g >
<title>__vdso_time (10,101,010 samples, 0.02%)</title><rect x="1107.5" y="1141" width="0.2" height="15.0" fill="rgb(233,49,46)" rx="2" ry="2" />
<text x="1110.50" y="1151.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="524.4" y="933" width="0.2" height="15.0" fill="rgb(219,52,38)" rx="2" ry="2" />
<text x="527.38" y="943.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="649.2" y="1061" width="0.2" height="15.0" fill="rgb(249,100,31)" rx="2" ry="2" />
<text x="652.17" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="837" width="0.2" height="15.0" fill="rgb(246,104,8)" rx="2" ry="2" />
<text x="1127.17" y="847.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="915.4" y="1045" width="0.2" height="15.0" fill="rgb(217,164,14)" rx="2" ry="2" />
<text x="918.42" y="1055.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="523.8" y="981" width="0.2" height="15.0" fill="rgb(205,136,54)" rx="2" ry="2" />
<text x="526.75" y="991.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="881.2" y="421" width="0.3" height="15.0" fill="rgb(237,12,51)" rx="2" ry="2" />
<text x="884.25" y="431.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="300.4" y="1013" width="0.4" height="15.0" fill="rgb(218,127,45)" rx="2" ry="2" />
<text x="303.42" y="1023.5" ></text>
</g>
<g >
<title>php_stat (141,414,140 samples, 0.25%)</title><rect x="955.8" y="1125" width="3.0" height="15.0" fill="rgb(233,38,40)" rx="2" ry="2" />
<text x="958.83" y="1135.5" ></text>
</g>
<g >
<title>apparmor_socket_setsockopt (10,101,010 samples, 0.02%)</title><rect x="1141.2" y="1109" width="0.3" height="15.0" fill="rgb(227,187,23)" rx="2" ry="2" />
<text x="1144.25" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1109" width="0.2" height="15.0" fill="rgb(249,73,23)" rx="2" ry="2" />
<text x="26.96" y="1119.5" ></text>
</g>
<g >
<title>zif_header (10,101,010 samples, 0.02%)</title><rect x="1032.1" y="981" width="0.2" height="15.0" fill="rgb(221,55,9)" rx="2" ry="2" />
<text x="1035.08" y="991.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="452.1" y="1125" width="0.2" height="15.0" fill="rgb(220,199,48)" rx="2" ry="2" />
<text x="455.08" y="1135.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="1186.9" y="549" width="0.2" height="15.0" fill="rgb(206,38,21)" rx="2" ry="2" />
<text x="1189.88" y="559.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="1089.6" y="69" width="0.2" height="15.0" fill="rgb(238,168,31)" rx="2" ry="2" />
<text x="1092.58" y="79.5" ></text>
</g>
<g >
<title>try_fill_recv (10,101,010 samples, 0.02%)</title><rect x="919.2" y="965" width="0.2" height="15.0" fill="rgb(234,142,17)" rx="2" ry="2" />
<text x="922.17" y="975.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="887.7" y="1061" width="0.2" height="15.0" fill="rgb(244,9,24)" rx="2" ry="2" />
<text x="890.71" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (111,111,110 samples, 0.19%)</title><rect x="208.8" y="1093" width="2.2" height="15.0" fill="rgb(243,86,31)" rx="2" ry="2" />
<text x="211.75" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (484,848,480 samples, 0.85%)</title><rect x="1152.3" y="581" width="10.0" height="15.0" fill="rgb(244,7,40)" rx="2" ry="2" />
<text x="1155.29" y="591.5" ></text>
</g>
<g >
<title>gc_remove_from_buffer (10,101,010 samples, 0.02%)</title><rect x="920.0" y="1125" width="0.2" height="15.0" fill="rgb(240,164,44)" rx="2" ry="2" />
<text x="923.00" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FE_RESET_R_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="552.7" y="1141" width="0.2" height="15.0" fill="rgb(248,30,47)" rx="2" ry="2" />
<text x="555.71" y="1151.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="730.0" y="965" width="0.2" height="15.0" fill="rgb(219,202,25)" rx="2" ry="2" />
<text x="733.00" y="975.5" ></text>
</g>
<g >
<title>do_bind_class (20,202,020 samples, 0.04%)</title><rect x="684.6" y="981" width="0.4" height="15.0" fill="rgb(218,61,43)" rx="2" ry="2" />
<text x="687.58" y="991.5" ></text>
</g>
<g >
<title>zif_sprintf (10,101,010 samples, 0.02%)</title><rect x="1032.5" y="981" width="0.2" height="15.0" fill="rgb(248,41,9)" rx="2" ry="2" />
<text x="1035.50" y="991.5" ></text>
</g>
<g >
<title>_emalloc (30,303,030 samples, 0.05%)</title><rect x="38.1" y="1125" width="0.7" height="15.0" fill="rgb(222,100,34)" rx="2" ry="2" />
<text x="41.12" y="1135.5" ></text>
</g>
<g >
<title>zm_deactivate_pcntl (10,101,010 samples, 0.02%)</title><rect x="1101.2" y="1141" width="0.3" height="15.0" fill="rgb(254,199,11)" rx="2" ry="2" />
<text x="1104.25" y="1151.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="511.7" y="1029" width="0.2" height="15.0" fill="rgb(228,37,27)" rx="2" ry="2" />
<text x="514.67" y="1039.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="647.7" y="1045" width="0.2" height="15.0" fill="rgb(251,108,54)" rx="2" ry="2" />
<text x="650.71" y="1055.5" ></text>
</g>
<g >
<title>__x64_sys_poll (60,606,060 samples, 0.11%)</title><rect x="1052.7" y="933" width="1.3" height="15.0" fill="rgb(238,138,26)" rx="2" ry="2" />
<text x="1055.71" y="943.5" ></text>
</g>
<g >
<title>legitimize_path.isra.30 (30,303,030 samples, 0.05%)</title><rect x="395.0" y="917" width="0.6" height="15.0" fill="rgb(223,160,17)" rx="2" ry="2" />
<text x="398.00" y="927.5" ></text>
</g>
<g >
<title>ExcimerTimer_free_object (10,101,010 samples, 0.02%)</title><rect x="10.0" y="1221" width="0.2" height="15.0" fill="rgb(211,39,5)" rx="2" ry="2" />
<text x="13.00" y="1231.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (262,626,260 samples, 0.46%)</title><rect x="136.9" y="1077" width="5.4" height="15.0" fill="rgb(241,220,41)" rx="2" ry="2" />
<text x="139.88" y="1087.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (70,707,070 samples, 0.12%)</title><rect x="916.5" y="997" width="1.4" height="15.0" fill="rgb(220,1,42)" rx="2" ry="2" />
<text x="919.46" y="1007.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (949,494,940 samples, 1.66%)</title><rect x="1147.9" y="1061" width="19.6" height="15.0" fill="rgb(241,113,42)" rx="2" ry="2" />
<text x="1150.92" y="1071.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="917" width="0.2" height="15.0" fill="rgb(238,218,45)" rx="2" ry="2" />
<text x="1022.79" y="927.5" ></text>
</g>
<g >
<title>zend_hash_apply (60,606,060 samples, 0.11%)</title><rect x="1076.9" y="1141" width="1.2" height="15.0" fill="rgb(214,94,38)" rx="2" ry="2" />
<text x="1079.88" y="1151.5" ></text>
</g>
<g >
<title>__inet_lookup_established (10,101,010 samples, 0.02%)</title><rect x="913.1" y="677" width="0.2" height="15.0" fill="rgb(209,50,7)" rx="2" ry="2" />
<text x="916.12" y="687.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="291.7" y="1125" width="0.2" height="15.0" fill="rgb(242,91,49)" rx="2" ry="2" />
<text x="294.67" y="1135.5" ></text>
</g>
<g >
<title>zif_reset (10,101,010 samples, 0.02%)</title><rect x="1057.3" y="1125" width="0.2" height="15.0" fill="rgb(247,218,11)" rx="2" ry="2" />
<text x="1060.29" y="1135.5" ></text>
</g>
<g >
<title>inode_permission (50,505,050 samples, 0.09%)</title><rect x="1007.3" y="901" width="1.0" height="15.0" fill="rgb(233,27,35)" rx="2" ry="2" />
<text x="1010.29" y="911.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (181,818,180 samples, 0.32%)</title><rect x="938.3" y="773" width="3.8" height="15.0" fill="rgb(253,8,18)" rx="2" ry="2" />
<text x="941.33" y="783.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="517.7" y="1077" width="0.2" height="15.0" fill="rgb(215,109,3)" rx="2" ry="2" />
<text x="520.71" y="1087.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="466.2" y="1109" width="0.3" height="15.0" fill="rgb(227,107,33)" rx="2" ry="2" />
<text x="469.25" y="1119.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="723.8" y="901" width="0.2" height="15.0" fill="rgb(224,22,26)" rx="2" ry="2" />
<text x="726.75" y="911.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (616,161,610 samples, 1.08%)</title><rect x="1151.5" y="773" width="12.7" height="15.0" fill="rgb(251,6,14)" rx="2" ry="2" />
<text x="1154.46" y="783.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="1047.5" y="981" width="0.2" height="15.0" fill="rgb(214,45,9)" rx="2" ry="2" />
<text x="1050.50" y="991.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_command_handshake_pub (10,101,010 samples, 0.02%)</title><rect x="923.8" y="1061" width="0.2" height="15.0" fill="rgb(237,18,1)" rx="2" ry="2" />
<text x="926.75" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="293" width="0.4" height="15.0" fill="rgb(245,158,37)" rx="2" ry="2" />
<text x="1092.58" y="303.5" ></text>
</g>
<g >
<title>zend_do_link_class (60,606,060 samples, 0.11%)</title><rect x="303.5" y="757" width="1.3" height="15.0" fill="rgb(224,170,7)" rx="2" ry="2" />
<text x="306.54" y="767.5" ></text>
</g>
<g >
<title>zend_mm_free_pages (10,101,010 samples, 0.02%)</title><rect x="873.3" y="997" width="0.2" height="15.0" fill="rgb(248,16,47)" rx="2" ry="2" />
<text x="876.33" y="1007.5" ></text>
</g>
<g >
<title>zif_get_class (10,101,010 samples, 0.02%)</title><rect x="1072.1" y="1141" width="0.2" height="15.0" fill="rgb(244,16,10)" rx="2" ry="2" />
<text x="1075.08" y="1151.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="924.4" y="981" width="0.4" height="15.0" fill="rgb(254,145,32)" rx="2" ry="2" />
<text x="927.38" y="991.5" ></text>
</g>
<g >
<title>ovl_inode_upper (10,101,010 samples, 0.02%)</title><rect x="775.0" y="869" width="0.2" height="15.0" fill="rgb(246,98,20)" rx="2" ry="2" />
<text x="778.00" y="879.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1084.8" y="1029" width="0.2" height="15.0" fill="rgb(241,137,30)" rx="2" ry="2" />
<text x="1087.79" y="1039.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="684.6" y="933" width="0.4" height="15.0" fill="rgb(244,199,41)" rx="2" ry="2" />
<text x="687.58" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="881.2" y="757" width="0.3" height="15.0" fill="rgb(218,123,26)" rx="2" ry="2" />
<text x="884.25" y="767.5" ></text>
</g>
<g >
<title>zend_hash_find (121,212,120 samples, 0.21%)</title><rect x="848.3" y="901" width="2.5" height="15.0" fill="rgb(217,151,15)" rx="2" ry="2" />
<text x="851.33" y="911.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="939.2" y="661" width="0.2" height="15.0" fill="rgb(216,106,11)" rx="2" ry="2" />
<text x="942.17" y="671.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="914.6" y="917" width="0.2" height="15.0" fill="rgb(251,125,46)" rx="2" ry="2" />
<text x="917.58" y="927.5" ></text>
</g>
<g >
<title>php_string_tolower (10,101,010 samples, 0.02%)</title><rect x="510.4" y="1109" width="0.2" height="15.0" fill="rgb(225,202,15)" rx="2" ry="2" />
<text x="513.42" y="1119.5" ></text>
</g>
<g >
<title>zend_do_link_class (20,202,020 samples, 0.04%)</title><rect x="649.2" y="1109" width="0.4" height="15.0" fill="rgb(213,116,10)" rx="2" ry="2" />
<text x="652.17" y="1119.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1013" width="0.2" height="15.0" fill="rgb(235,101,35)" rx="2" ry="2" />
<text x="693.62" y="1023.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="970.6" y="981" width="0.2" height="15.0" fill="rgb(211,2,18)" rx="2" ry="2" />
<text x="973.62" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="243.8" y="1093" width="0.2" height="15.0" fill="rgb(241,120,6)" rx="2" ry="2" />
<text x="246.75" y="1103.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="917" width="0.2" height="15.0" fill="rgb(206,144,36)" rx="2" ry="2" />
<text x="1095.08" y="927.5" ></text>
</g>
<g >
<title>zend_rebuild_symbol_table (10,101,010 samples, 0.02%)</title><rect x="728.8" y="1013" width="0.2" height="15.0" fill="rgb(211,218,12)" rx="2" ry="2" />
<text x="731.75" y="1023.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="511.7" y="933" width="0.2" height="15.0" fill="rgb(240,95,22)" rx="2" ry="2" />
<text x="514.67" y="943.5" ></text>
</g>
<g >
<title>idr_find (10,101,010 samples, 0.02%)</title><rect x="1189.4" y="1125" width="0.2" height="15.0" fill="rgb(244,36,23)" rx="2" ry="2" />
<text x="1192.38" y="1135.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="873.5" y="1013" width="0.3" height="15.0" fill="rgb(252,13,4)" rx="2" ry="2" />
<text x="876.54" y="1023.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="742.9" y="709" width="0.2" height="15.0" fill="rgb(210,214,49)" rx="2" ry="2" />
<text x="745.92" y="719.5" ></text>
</g>
<g >
<title>php_pcre2_jit_match (10,101,010 samples, 0.02%)</title><rect x="529.6" y="1077" width="0.2" height="15.0" fill="rgb(240,32,27)" rx="2" ry="2" />
<text x="532.58" y="1087.5" ></text>
</g>
<g >
<title>zend_is_reserved_class_name (10,101,010 samples, 0.02%)</title><rect x="807.1" y="885" width="0.2" height="15.0" fill="rgb(209,141,10)" rx="2" ry="2" />
<text x="810.08" y="895.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="545.0" y="1077" width="0.2" height="15.0" fill="rgb(232,178,54)" rx="2" ry="2" />
<text x="548.00" y="1087.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="217.3" y="949" width="0.2" height="15.0" fill="rgb(210,164,21)" rx="2" ry="2" />
<text x="220.29" y="959.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="654.2" y="933" width="0.2" height="15.0" fill="rgb(237,77,15)" rx="2" ry="2" />
<text x="657.17" y="943.5" ></text>
</g>
<g >
<title>zend_sort (10,101,010 samples, 0.02%)</title><rect x="515.4" y="1045" width="0.2" height="15.0" fill="rgb(212,139,1)" rx="2" ry="2" />
<text x="518.42" y="1055.5" ></text>
</g>
<g >
<title>ep_scan_ready_list.constprop.20 (10,101,010 samples, 0.02%)</title><rect x="209.2" y="1045" width="0.2" height="15.0" fill="rgb(233,115,45)" rx="2" ry="2" />
<text x="212.17" y="1055.5" ></text>
</g>
<g >
<title>zend_parse_parameters (30,303,030 samples, 0.05%)</title><rect x="1020.0" y="1109" width="0.6" height="15.0" fill="rgb(233,43,17)" rx="2" ry="2" />
<text x="1023.00" y="1119.5" ></text>
</g>
<g >
<title>radix_tree_lookup (10,101,010 samples, 0.02%)</title><rect x="1189.4" y="1109" width="0.2" height="15.0" fill="rgb(249,41,40)" rx="2" ry="2" />
<text x="1192.38" y="1119.5" ></text>
</g>
<g >
<title>zend_parse_parameters (40,404,040 samples, 0.07%)</title><rect x="1057.7" y="1109" width="0.8" height="15.0" fill="rgb(216,13,44)" rx="2" ry="2" />
<text x="1060.71" y="1119.5" ></text>
</g>
<g >
<title>zend_accel_load_script (20,202,020 samples, 0.04%)</title><rect x="728.3" y="965" width="0.5" height="15.0" fill="rgb(206,179,19)" rx="2" ry="2" />
<text x="731.33" y="975.5" ></text>
</g>
<g >
<title>ZEND_FE_FETCH_R_SPEC_VAR_HANDLER (50,505,050 samples, 0.09%)</title><rect x="695.4" y="1125" width="1.1" height="15.0" fill="rgb(217,175,53)" rx="2" ry="2" />
<text x="698.42" y="1135.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (252,525,250 samples, 0.44%)</title><rect x="427.9" y="1029" width="5.2" height="15.0" fill="rgb(242,208,51)" rx="2" ry="2" />
<text x="430.92" y="1039.5" ></text>
</g>
<g >
<title>do_interface_implementation (151,515,150 samples, 0.26%)</title><rect x="800.4" y="869" width="3.1" height="15.0" fill="rgb(253,128,51)" rx="2" ry="2" />
<text x="803.42" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1141" width="0.2" height="15.0" fill="rgb(208,41,11)" rx="2" ry="2" />
<text x="1081.33" y="1151.5" ></text>
</g>
<g >
<title>sapi_cgi_activate (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1141" width="0.2" height="15.0" fill="rgb(226,40,0)" rx="2" ry="2" />
<text x="1106.96" y="1151.5" ></text>
</g>
<g >
<title>zend_add_helper_SPEC (20,202,020 samples, 0.04%)</title><rect x="522.9" y="1093" width="0.4" height="15.0" fill="rgb(209,166,29)" rx="2" ry="2" />
<text x="525.92" y="1103.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1029" width="0.2" height="15.0" fill="rgb(224,220,7)" rx="2" ry="2" />
<text x="1142.17" y="1039.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (10,101,010 samples, 0.02%)</title><rect x="887.3" y="1093" width="0.2" height="15.0" fill="rgb(233,55,15)" rx="2" ry="2" />
<text x="890.29" y="1103.5" ></text>
</g>
<g >
<title>pskb_expand_head (10,101,010 samples, 0.02%)</title><rect x="940.6" y="261" width="0.2" height="15.0" fill="rgb(207,175,51)" rx="2" ry="2" />
<text x="943.62" y="271.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="193.8" y="821" width="0.2" height="15.0" fill="rgb(249,134,30)" rx="2" ry="2" />
<text x="196.75" y="831.5" ></text>
</g>
<g >
<title>zend_array_destroy (20,202,020 samples, 0.04%)</title><rect x="351.2" y="1125" width="0.5" height="15.0" fill="rgb(253,84,10)" rx="2" ry="2" />
<text x="354.25" y="1135.5" ></text>
</g>
<g >
<title>swake_up_one (10,101,010 samples, 0.02%)</title><rect x="791.5" y="885" width="0.2" height="15.0" fill="rgb(247,178,27)" rx="2" ry="2" />
<text x="794.46" y="895.5" ></text>
</g>
<g >
<title>zend_array_destroy (40,404,040 samples, 0.07%)</title><rect x="647.7" y="1061" width="0.8" height="15.0" fill="rgb(238,30,11)" rx="2" ry="2" />
<text x="650.71" y="1071.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="204.6" y="1125" width="0.2" height="15.0" fill="rgb(252,145,40)" rx="2" ry="2" />
<text x="207.58" y="1135.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_connect_pub (1,020,202,010 samples, 1.78%)</title><rect x="923.8" y="1077" width="21.0" height="15.0" fill="rgb(205,186,20)" rx="2" ry="2" />
<text x="926.75" y="1087.5" ></text>
</g>
<g >
<title>_emalloc_256 (20,202,020 samples, 0.04%)</title><rect x="838.1" y="837" width="0.4" height="15.0" fill="rgb(240,125,6)" rx="2" ry="2" />
<text x="841.12" y="847.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="500.2" y="1045" width="0.2" height="15.0" fill="rgb(211,102,29)" rx="2" ry="2" />
<text x="503.21" y="1055.5" ></text>
</g>
<g >
<title>audit_tree_lookup (20,202,020 samples, 0.04%)</title><rect x="378.8" y="981" width="0.4" height="15.0" fill="rgb(250,57,7)" rx="2" ry="2" />
<text x="381.75" y="991.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1077" width="0.3" height="15.0" fill="rgb(205,36,2)" rx="2" ry="2" />
<text x="446.54" y="1087.5" ></text>
</g>
<g >
<title>__x64_sys_access (90,909,090 samples, 0.16%)</title><rect x="533.1" y="981" width="1.9" height="15.0" fill="rgb(222,122,27)" rx="2" ry="2" />
<text x="536.12" y="991.5" ></text>
</g>
<g >
<title>zend_is_callable (10,101,010 samples, 0.02%)</title><rect x="606.7" y="1125" width="0.2" height="15.0" fill="rgb(206,50,25)" rx="2" ry="2" />
<text x="609.67" y="1135.5" ></text>
</g>
<g >
<title>__fdget (10,101,010 samples, 0.02%)</title><rect x="935.2" y="837" width="0.2" height="15.0" fill="rgb(237,108,48)" rx="2" ry="2" />
<text x="938.21" y="847.5" ></text>
</g>
<g >
<title>zend_hash_del (10,101,010 samples, 0.02%)</title><rect x="883.8" y="1077" width="0.2" height="15.0" fill="rgb(253,145,14)" rx="2" ry="2" />
<text x="886.75" y="1087.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="1014.8" y="1029" width="0.2" height="15.0" fill="rgb(229,217,31)" rx="2" ry="2" />
<text x="1017.79" y="1039.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (20,202,020 samples, 0.04%)</title><rect x="940.2" y="181" width="0.4" height="15.0" fill="rgb(221,146,1)" rx="2" ry="2" />
<text x="943.21" y="191.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="700.0" y="917" width="0.2" height="15.0" fill="rgb(221,88,11)" rx="2" ry="2" />
<text x="703.00" y="927.5" ></text>
</g>
<g >
<title>__errno_location (10,101,010 samples, 0.02%)</title><rect x="934.6" y="917" width="0.2" height="15.0" fill="rgb(250,19,21)" rx="2" ry="2" />
<text x="937.58" y="927.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="511.7" y="981" width="0.2" height="15.0" fill="rgb(215,217,6)" rx="2" ry="2" />
<text x="514.67" y="991.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.19%)</title><rect x="532.9" y="1013" width="2.3" height="15.0" fill="rgb(213,218,3)" rx="2" ry="2" />
<text x="535.92" y="1023.5" ></text>
</g>
<g >
<title>ip_forward_finish (90,909,090 samples, 0.16%)</title><rect x="1185.0" y="549" width="1.9" height="15.0" fill="rgb(226,150,12)" rx="2" ry="2" />
<text x="1188.00" y="559.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="718.3" y="821" width="0.2" height="15.0" fill="rgb(212,138,51)" rx="2" ry="2" />
<text x="721.33" y="831.5" ></text>
</g>
<g >
<title>zend_call_known_function (505,050,500 samples, 0.88%)</title><rect x="1081.0" y="1093" width="10.5" height="15.0" fill="rgb(211,144,32)" rx="2" ry="2" />
<text x="1084.04" y="1103.5" ></text>
</g>
<g >
<title>php_pcre2_jit_match (10,101,010 samples, 0.02%)</title><rect x="305.8" y="1109" width="0.2" height="15.0" fill="rgb(226,115,14)" rx="2" ry="2" />
<text x="308.83" y="1119.5" ></text>
</g>
<g >
<title>TRACE-10$AutoLoader::find$49 (10,101,010 samples, 0.02%)</title><rect x="739.2" y="917" width="0.2" height="15.0" fill="rgb(219,205,35)" rx="2" ry="2" />
<text x="742.17" y="927.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="472.1" y="1109" width="0.2" height="15.0" fill="rgb(239,121,35)" rx="2" ry="2" />
<text x="475.08" y="1119.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="1033.1" y="517" width="0.2" height="15.0" fill="rgb(250,40,4)" rx="2" ry="2" />
<text x="1036.12" y="527.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="773" width="0.2" height="15.0" fill="rgb(205,209,41)" rx="2" ry="2" />
<text x="1056.12" y="783.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="1121.5" y="1125" width="0.2" height="15.0" fill="rgb(246,171,13)" rx="2" ry="2" />
<text x="1124.46" y="1135.5" ></text>
</g>
<g >
<title>nf_xfrm_me_harder (10,101,010 samples, 0.02%)</title><rect x="1130.0" y="501" width="0.2" height="15.0" fill="rgb(252,13,54)" rx="2" ry="2" />
<text x="1133.00" y="511.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (101,010,100 samples, 0.18%)</title><rect x="910.6" y="917" width="2.1" height="15.0" fill="rgb(209,179,27)" rx="2" ry="2" />
<text x="913.62" y="927.5" ></text>
</g>
<g >
<title>write (141,414,140 samples, 0.25%)</title><rect x="1023.8" y="1093" width="2.9" height="15.0" fill="rgb(238,74,41)" rx="2" ry="2" />
<text x="1026.75" y="1103.5" ></text>
</g>
<g >
<title>ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="346.9" y="1125" width="0.2" height="15.0" fill="rgb(237,44,1)" rx="2" ry="2" />
<text x="349.88" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="35.0" y="1157" width="0.2" height="15.0" fill="rgb(230,178,38)" rx="2" ry="2" />
<text x="38.00" y="1167.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_inner_W_CONST (80,808,080 samples, 0.14%)</title><rect x="620.2" y="1109" width="1.7" height="15.0" fill="rgb(216,41,38)" rx="2" ry="2" />
<text x="623.21" y="1119.5" ></text>
</g>
<g >
<title>sock_close (80,808,080 samples, 0.14%)</title><rect x="1089.0" y="853" width="1.6" height="15.0" fill="rgb(242,144,0)" rx="2" ry="2" />
<text x="1091.96" y="863.5" ></text>
</g>
<g >
<title>br_handle_frame (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="469" width="0.4" height="15.0" fill="rgb(247,170,35)" rx="2" ry="2" />
<text x="1092.58" y="479.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1093" width="0.2" height="15.0" fill="rgb(247,229,39)" rx="2" ry="2" />
<text x="554.67" y="1103.5" ></text>
</g>
<g >
<title>_php_stream_free (20,202,020 samples, 0.04%)</title><rect x="1086.0" y="1045" width="0.5" height="15.0" fill="rgb(215,58,53)" rx="2" ry="2" />
<text x="1089.04" y="1055.5" ></text>
</g>
<g >
<title>ovl_get_acl (10,101,010 samples, 0.02%)</title><rect x="775.2" y="821" width="0.2" height="15.0" fill="rgb(246,21,38)" rx="2" ry="2" />
<text x="778.21" y="831.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (30,303,030 samples, 0.05%)</title><rect x="970.2" y="1077" width="0.6" height="15.0" fill="rgb(227,107,51)" rx="2" ry="2" />
<text x="973.21" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="682.1" y="853" width="0.2" height="15.0" fill="rgb(205,142,47)" rx="2" ry="2" />
<text x="685.08" y="863.5" ></text>
</g>
<g >
<title>sock_common_setsockopt (10,101,010 samples, 0.02%)</title><rect x="944.2" y="949" width="0.2" height="15.0" fill="rgb(221,175,52)" rx="2" ry="2" />
<text x="947.17" y="959.5" ></text>
</g>
<g >
<title>get_unique_tuple (20,202,020 samples, 0.04%)</title><rect x="940.2" y="85" width="0.4" height="15.0" fill="rgb(229,174,19)" rx="2" ry="2" />
<text x="943.21" y="95.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="861.0" y="661" width="0.2" height="15.0" fill="rgb(229,16,24)" rx="2" ry="2" />
<text x="864.04" y="671.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="682.9" y="1077" width="0.4" height="15.0" fill="rgb(252,226,47)" rx="2" ry="2" />
<text x="685.92" y="1087.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (20,202,020 samples, 0.04%)</title><rect x="194.0" y="1093" width="0.4" height="15.0" fill="rgb(223,93,8)" rx="2" ry="2" />
<text x="196.96" y="1103.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="776.7" y="981" width="0.4" height="15.0" fill="rgb(224,117,38)" rx="2" ry="2" />
<text x="779.67" y="991.5" ></text>
</g>
<g >
<title>syscall_trace_enter (60,606,060 samples, 0.11%)</title><rect x="1181.2" y="1173" width="1.3" height="15.0" fill="rgb(227,179,3)" rx="2" ry="2" />
<text x="1184.25" y="1183.5" ></text>
</g>
<g >
<title>zend_hash_move_forward_ex (10,101,010 samples, 0.02%)</title><rect x="885.6" y="1077" width="0.2" height="15.0" fill="rgb(219,25,16)" rx="2" ry="2" />
<text x="888.62" y="1087.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="539.4" y="677" width="0.2" height="15.0" fill="rgb(246,35,37)" rx="2" ry="2" />
<text x="542.38" y="687.5" ></text>
</g>
<g >
<title>mysqlnd_read_header (101,010,100 samples, 0.18%)</title><rect x="1052.5" y="1045" width="2.1" height="15.0" fill="rgb(234,131,5)" rx="2" ry="2" />
<text x="1055.50" y="1055.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="422.7" y="965" width="0.2" height="15.0" fill="rgb(209,117,0)" rx="2" ry="2" />
<text x="425.71" y="975.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="904.6" y="1029" width="0.2" height="15.0" fill="rgb(245,165,21)" rx="2" ry="2" />
<text x="907.58" y="1039.5" ></text>
</g>
<g >
<title>tcp_time_wait (10,101,010 samples, 0.02%)</title><rect x="799.0" y="565" width="0.2" height="15.0" fill="rgb(236,228,14)" rx="2" ry="2" />
<text x="801.96" y="575.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="641.7" y="949" width="0.2" height="15.0" fill="rgb(254,31,9)" rx="2" ry="2" />
<text x="644.67" y="959.5" ></text>
</g>
<g >
<title>zend_dirname (10,101,010 samples, 0.02%)</title><rect x="975.4" y="1125" width="0.2" height="15.0" fill="rgb(253,34,8)" rx="2" ry="2" />
<text x="978.42" y="1135.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1077" width="0.4" height="15.0" fill="rgb(210,180,47)" rx="2" ry="2" />
<text x="1001.75" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="30.2" y="885" width="0.2" height="15.0" fill="rgb(221,168,48)" rx="2" ry="2" />
<text x="33.21" y="895.5" ></text>
</g>
<g >
<title>blk_mq_end_request (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1013" width="0.3" height="15.0" fill="rgb(239,129,49)" rx="2" ry="2" />
<text x="699.25" y="1023.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (90,909,090 samples, 0.16%)</title><rect x="774.6" y="901" width="1.9" height="15.0" fill="rgb(229,66,20)" rx="2" ry="2" />
<text x="777.58" y="911.5" ></text>
</g>
<g >
<title>destroy_op_array (70,707,070 samples, 0.12%)</title><rect x="458.8" y="1093" width="1.4" height="15.0" fill="rgb(233,37,41)" rx="2" ry="2" />
<text x="461.75" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (40,404,040 samples, 0.07%)</title><rect x="200.6" y="1109" width="0.9" height="15.0" fill="rgb(244,138,8)" rx="2" ry="2" />
<text x="203.62" y="1119.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="885" width="0.2" height="15.0" fill="rgb(250,101,51)" rx="2" ry="2" />
<text x="1090.50" y="895.5" ></text>
</g>
<g >
<title>zend_call_known_function (161,616,160 samples, 0.28%)</title><rect x="532.3" y="1061" width="3.3" height="15.0" fill="rgb(211,169,0)" rx="2" ry="2" />
<text x="535.29" y="1071.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="1008.5" y="869" width="0.3" height="15.0" fill="rgb(239,59,41)" rx="2" ry="2" />
<text x="1011.54" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (141,414,140 samples, 0.25%)</title><rect x="1184.8" y="805" width="2.9" height="15.0" fill="rgb(251,120,14)" rx="2" ry="2" />
<text x="1187.79" y="815.5" ></text>
</g>
<g >
<title>lookup_fast (10,101,010 samples, 0.02%)</title><rect x="902.1" y="981" width="0.2" height="15.0" fill="rgb(219,16,12)" rx="2" ry="2" />
<text x="905.08" y="991.5" ></text>
</g>
<g >
<title>down_read (70,707,070 samples, 0.12%)</title><rect x="376.7" y="885" width="1.4" height="15.0" fill="rgb(234,88,42)" rx="2" ry="2" />
<text x="379.67" y="895.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="906.2" y="981" width="0.3" height="15.0" fill="rgb(246,77,44)" rx="2" ry="2" />
<text x="909.25" y="991.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="684.4" y="917" width="0.2" height="15.0" fill="rgb(235,35,31)" rx="2" ry="2" />
<text x="687.38" y="927.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="791.7" y="1045" width="0.2" height="15.0" fill="rgb(213,214,52)" rx="2" ry="2" />
<text x="794.67" y="1055.5" ></text>
</g>
<g >
<title>zend_parse_parameters (30,303,030 samples, 0.05%)</title><rect x="286.9" y="1109" width="0.6" height="15.0" fill="rgb(215,185,52)" rx="2" ry="2" />
<text x="289.88" y="1119.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="957.1" y="757" width="0.2" height="15.0" fill="rgb(233,43,50)" rx="2" ry="2" />
<text x="960.08" y="767.5" ></text>
</g>
<g >
<title>__vfs_write (121,212,120 samples, 0.21%)</title><rect x="1035.0" y="981" width="2.5" height="15.0" fill="rgb(244,173,46)" rx="2" ry="2" />
<text x="1038.00" y="991.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="914.6" y="885" width="0.2" height="15.0" fill="rgb(210,57,54)" rx="2" ry="2" />
<text x="917.58" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="204.2" y="1157" width="0.6" height="15.0" fill="rgb(254,50,48)" rx="2" ry="2" />
<text x="207.17" y="1167.5" ></text>
</g>
<g >
<title>zend_hash_str_find (20,202,020 samples, 0.04%)</title><rect x="301.0" y="933" width="0.5" height="15.0" fill="rgb(220,147,40)" rx="2" ry="2" />
<text x="304.04" y="943.5" ></text>
</g>
<g >
<title>zif_array_filter (40,404,040 samples, 0.07%)</title><rect x="997.5" y="1125" width="0.8" height="15.0" fill="rgb(212,52,48)" rx="2" ry="2" />
<text x="1000.50" y="1135.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="1001.7" y="1109" width="0.4" height="15.0" fill="rgb(209,1,35)" rx="2" ry="2" />
<text x="1004.67" y="1119.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="901" width="0.2" height="15.0" fill="rgb(236,113,15)" rx="2" ry="2" />
<text x="1095.08" y="911.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="32.3" y="821" width="0.2" height="15.0" fill="rgb(226,20,22)" rx="2" ry="2" />
<text x="35.29" y="831.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1077" width="0.2" height="15.0" fill="rgb(231,130,18)" rx="2" ry="2" />
<text x="902.38" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1077" width="0.2" height="15.0" fill="rgb(248,32,3)" rx="2" ry="2" />
<text x="621.96" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_extend (10,101,010 samples, 0.02%)</title><rect x="881.7" y="917" width="0.2" height="15.0" fill="rgb(240,218,46)" rx="2" ry="2" />
<text x="884.67" y="927.5" ></text>
</g>
<g >
<title>zend_call_known_function (60,606,060 samples, 0.11%)</title><rect x="447.5" y="1093" width="1.3" height="15.0" fill="rgb(227,139,34)" rx="2" ry="2" />
<text x="450.50" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="756.0" y="1125" width="0.5" height="15.0" fill="rgb(254,191,15)" rx="2" ry="2" />
<text x="759.04" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="378.5" y="805" width="0.3" height="15.0" fill="rgb(249,20,13)" rx="2" ry="2" />
<text x="381.54" y="815.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="997" width="0.2" height="15.0" fill="rgb(208,213,34)" rx="2" ry="2" />
<text x="1117.17" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="1041.5" y="1093" width="0.4" height="15.0" fill="rgb(224,102,12)" rx="2" ry="2" />
<text x="1044.46" y="1103.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (80,808,080 samples, 0.14%)</title><rect x="1007.3" y="917" width="1.7" height="15.0" fill="rgb(218,54,3)" rx="2" ry="2" />
<text x="1010.29" y="927.5" ></text>
</g>
<g >
<title>zend_do_delayed_early_binding (60,606,060 samples, 0.11%)</title><rect x="1002.7" y="789" width="1.3" height="15.0" fill="rgb(227,115,32)" rx="2" ry="2" />
<text x="1005.71" y="799.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (10,101,010 samples, 0.02%)</title><rect x="683.5" y="1093" width="0.3" height="15.0" fill="rgb(223,187,54)" rx="2" ry="2" />
<text x="686.54" y="1103.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1001.7" y="1093" width="0.2" height="15.0" fill="rgb(223,142,40)" rx="2" ry="2" />
<text x="1004.67" y="1103.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="779.6" y="1045" width="0.2" height="15.0" fill="rgb(205,224,12)" rx="2" ry="2" />
<text x="782.58" y="1055.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="284.2" y="1061" width="0.2" height="15.0" fill="rgb(231,110,44)" rx="2" ry="2" />
<text x="287.17" y="1071.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="949" width="0.2" height="15.0" fill="rgb(247,1,31)" rx="2" ry="2" />
<text x="1095.08" y="959.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="806.2" y="821" width="0.3" height="15.0" fill="rgb(232,49,54)" rx="2" ry="2" />
<text x="809.25" y="831.5" ></text>
</g>
<g >
<title>inet_release (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1077" width="0.4" height="15.0" fill="rgb(222,179,5)" rx="2" ry="2" />
<text x="1147.38" y="1087.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1142.9" y="1125" width="0.2" height="15.0" fill="rgb(208,208,10)" rx="2" ry="2" />
<text x="1145.92" y="1135.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="283.1" y="965" width="0.2" height="15.0" fill="rgb(232,63,21)" rx="2" ry="2" />
<text x="286.12" y="975.5" ></text>
</g>
<g >
<title>php_call_shutdown_functions (60,606,060 samples, 0.11%)</title><rect x="1076.9" y="1157" width="1.2" height="15.0" fill="rgb(234,58,49)" rx="2" ry="2" />
<text x="1079.88" y="1167.5" ></text>
</g>
<g >
<title>accel_new_interned_string_for_php (10,101,010 samples, 0.02%)</title><rect x="749.4" y="997" width="0.2" height="15.0" fill="rgb(214,16,20)" rx="2" ry="2" />
<text x="752.38" y="1007.5" ></text>
</g>
<g >
<title>ip_queue_xmit (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="933" width="0.9" height="15.0" fill="rgb(210,162,26)" rx="2" ry="2" />
<text x="1035.92" y="943.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="645" width="0.4" height="15.0" fill="rgb(214,153,43)" rx="2" ry="2" />
<text x="1035.92" y="655.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="534.8" y="725" width="0.2" height="15.0" fill="rgb(254,101,41)" rx="2" ry="2" />
<text x="537.79" y="735.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="30.2" y="933" width="0.2" height="15.0" fill="rgb(209,177,16)" rx="2" ry="2" />
<text x="33.21" y="943.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="347.9" y="1125" width="0.2" height="15.0" fill="rgb(209,225,3)" rx="2" ry="2" />
<text x="350.92" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="313.5" y="1109" width="0.3" height="15.0" fill="rgb(230,49,14)" rx="2" ry="2" />
<text x="316.54" y="1119.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="496.0" y="1109" width="0.2" height="15.0" fill="rgb(209,82,47)" rx="2" ry="2" />
<text x="499.04" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="24.0" y="901" width="0.2" height="15.0" fill="rgb(248,132,43)" rx="2" ry="2" />
<text x="26.96" y="911.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="270.8" y="997" width="0.2" height="15.0" fill="rgb(205,107,39)" rx="2" ry="2" />
<text x="273.83" y="1007.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="1096.2" y="1061" width="0.3" height="15.0" fill="rgb(248,121,4)" rx="2" ry="2" />
<text x="1099.25" y="1071.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (151,515,150 samples, 0.26%)</title><rect x="800.4" y="917" width="3.1" height="15.0" fill="rgb(243,104,15)" rx="2" ry="2" />
<text x="803.42" y="927.5" ></text>
</g>
<g >
<title>__x64_sys_shutdown (50,505,050 samples, 0.09%)</title><rect x="1032.9" y="1061" width="1.1" height="15.0" fill="rgb(211,104,9)" rx="2" ry="2" />
<text x="1035.92" y="1071.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (30,303,030 samples, 0.05%)</title><rect x="136.2" y="1061" width="0.7" height="15.0" fill="rgb(229,210,26)" rx="2" ry="2" />
<text x="139.25" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_access (30,303,030 samples, 0.05%)</title><rect x="739.6" y="853" width="0.6" height="15.0" fill="rgb(227,143,28)" rx="2" ry="2" />
<text x="742.58" y="863.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="677.7" y="629" width="0.2" height="15.0" fill="rgb(236,24,36)" rx="2" ry="2" />
<text x="680.71" y="639.5" ></text>
</g>
<g >
<title>ip_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="856.9" y="485" width="0.2" height="15.0" fill="rgb(243,163,18)" rx="2" ry="2" />
<text x="859.88" y="495.5" ></text>
</g>
<g >
<title>__secure_computing (80,808,080 samples, 0.14%)</title><rect x="434.4" y="1045" width="1.6" height="15.0" fill="rgb(207,16,54)" rx="2" ry="2" />
<text x="437.38" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (20,202,020 samples, 0.04%)</title><rect x="868.8" y="949" width="0.4" height="15.0" fill="rgb(249,115,35)" rx="2" ry="2" />
<text x="871.75" y="959.5" ></text>
</g>
<g >
<title>zval_get_string_func (30,303,030 samples, 0.05%)</title><rect x="454.2" y="1109" width="0.6" height="15.0" fill="rgb(253,155,48)" rx="2" ry="2" />
<text x="457.17" y="1119.5" ></text>
</g>
<g >
<title>zend_objects_store_call_destructors (595,959,590 samples, 1.04%)</title><rect x="1079.2" y="1125" width="12.3" height="15.0" fill="rgb(234,167,45)" rx="2" ry="2" />
<text x="1082.17" y="1135.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="950.2" y="981" width="0.2" height="15.0" fill="rgb(232,41,22)" rx="2" ry="2" />
<text x="953.21" y="991.5" ></text>
</g>
<g >
<title>ksys_chdir (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1093" width="0.2" height="15.0" fill="rgb(229,74,10)" rx="2" ry="2" />
<text x="221.75" y="1103.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="1137.1" y="1141" width="0.2" height="15.0" fill="rgb(241,141,32)" rx="2" ry="2" />
<text x="1140.08" y="1151.5" ></text>
</g>
<g >
<title>php_header (101,010,100 samples, 0.18%)</title><rect x="1030.8" y="1029" width="2.1" height="15.0" fill="rgb(229,7,28)" rx="2" ry="2" />
<text x="1033.83" y="1039.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="309.0" y="1077" width="0.4" height="15.0" fill="rgb(232,226,8)" rx="2" ry="2" />
<text x="311.96" y="1087.5" ></text>
</g>
<g >
<title>JIT$$hybrid_loop_trace_counter (50,505,050 samples, 0.09%)</title><rect x="244.6" y="1141" width="1.0" height="15.0" fill="rgb(235,29,39)" rx="2" ry="2" />
<text x="247.58" y="1151.5" ></text>
</g>
<g >
<title>__ip_finish_output (272,727,270 samples, 0.48%)</title><rect x="1152.7" y="469" width="5.6" height="15.0" fill="rgb(232,152,21)" rx="2" ry="2" />
<text x="1155.71" y="479.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="917" width="0.2" height="15.0" fill="rgb(228,157,30)" rx="2" ry="2" />
<text x="1150.29" y="927.5" ></text>
</g>
<g >
<title>_copy_to_user (10,101,010 samples, 0.02%)</title><rect x="948.3" y="965" width="0.2" height="15.0" fill="rgb(216,29,25)" rx="2" ry="2" />
<text x="951.33" y="975.5" ></text>
</g>
<g >
<title>zif_ini_get (20,202,020 samples, 0.04%)</title><rect x="309.8" y="1125" width="0.4" height="15.0" fill="rgb(218,71,24)" rx="2" ry="2" />
<text x="312.79" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="493.8" y="1125" width="0.2" height="15.0" fill="rgb(225,187,0)" rx="2" ry="2" />
<text x="496.75" y="1135.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1045.6" y="1077" width="0.2" height="15.0" fill="rgb(252,193,1)" rx="2" ry="2" />
<text x="1048.62" y="1087.5" ></text>
</g>
<g >
<title>zif_strtr (20,202,020 samples, 0.04%)</title><rect x="311.5" y="1125" width="0.4" height="15.0" fill="rgb(225,89,46)" rx="2" ry="2" />
<text x="314.46" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="489.8" y="1109" width="0.2" height="15.0" fill="rgb(251,82,11)" rx="2" ry="2" />
<text x="492.79" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="629.0" y="1093" width="0.2" height="15.0" fill="rgb(210,141,48)" rx="2" ry="2" />
<text x="631.96" y="1103.5" ></text>
</g>
<g >
<title>ZEND_SEND_UNPACK_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1085.6" y="1061" width="0.2" height="15.0" fill="rgb(247,114,27)" rx="2" ry="2" />
<text x="1088.62" y="1071.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="998.8" y="757" width="0.2" height="15.0" fill="rgb(253,65,7)" rx="2" ry="2" />
<text x="1001.75" y="767.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="183.8" y="1045" width="0.2" height="15.0" fill="rgb(246,166,0)" rx="2" ry="2" />
<text x="186.75" y="1055.5" ></text>
</g>
<g >
<title>spl_perform_autoload (515,151,510 samples, 0.90%)</title><rect x="796.7" y="965" width="10.6" height="15.0" fill="rgb(211,119,36)" rx="2" ry="2" />
<text x="799.67" y="975.5" ></text>
</g>
<g >
<title>zif_array_map (30,303,030 samples, 0.05%)</title><rect x="1070.8" y="1141" width="0.7" height="15.0" fill="rgb(219,15,3)" rx="2" ry="2" />
<text x="1073.83" y="1151.5" ></text>
</g>
<g >
<title>TRACE-268$Monolog\Logger::warning$611 (10,101,010 samples, 0.02%)</title><rect x="471.9" y="1141" width="0.2" height="15.0" fill="rgb(240,174,28)" rx="2" ry="2" />
<text x="474.88" y="1151.5" ></text>
</g>
<g >
<title>ovl_inode_upper (20,202,020 samples, 0.04%)</title><rect x="1007.3" y="885" width="0.4" height="15.0" fill="rgb(248,202,33)" rx="2" ry="2" />
<text x="1010.29" y="895.5" ></text>
</g>
<g >
<title>iptable_nat_do_chain (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="453" width="0.4" height="15.0" fill="rgb(218,11,9)" rx="2" ry="2" />
<text x="1132.58" y="463.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="302.1" y="885" width="0.2" height="15.0" fill="rgb(231,53,15)" rx="2" ry="2" />
<text x="305.08" y="895.5" ></text>
</g>
<g >
<title>cfree (10,101,010 samples, 0.02%)</title><rect x="1123.8" y="1205" width="0.2" height="15.0" fill="rgb(218,113,16)" rx="2" ry="2" />
<text x="1126.75" y="1215.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (10,101,010 samples, 0.02%)</title><rect x="302.5" y="853" width="0.2" height="15.0" fill="rgb(205,165,15)" rx="2" ry="2" />
<text x="305.50" y="863.5" ></text>
</g>
<g >
<title>lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="1008.8" y="853" width="0.2" height="15.0" fill="rgb(205,149,20)" rx="2" ry="2" />
<text x="1011.75" y="863.5" ></text>
</g>
<g >
<title>zend_accel_set_auto_globals (10,101,010 samples, 0.02%)</title><rect x="845.8" y="837" width="0.2" height="15.0" fill="rgb(213,3,43)" rx="2" ry="2" />
<text x="848.83" y="847.5" ></text>
</g>
<g >
<title>zend_do_link_class (141,414,140 samples, 0.25%)</title><rect x="676.7" y="997" width="2.9" height="15.0" fill="rgb(231,55,17)" rx="2" ry="2" />
<text x="679.67" y="1007.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="196.2" y="1029" width="0.3" height="15.0" fill="rgb(242,36,21)" rx="2" ry="2" />
<text x="199.25" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="917" width="0.2" height="15.0" fill="rgb(229,197,27)" rx="2" ry="2" />
<text x="1086.33" y="927.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="905.0" y="853" width="0.2" height="15.0" fill="rgb(220,227,30)" rx="2" ry="2" />
<text x="908.00" y="863.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="267.7" y="1077" width="0.2" height="15.0" fill="rgb(234,110,45)" rx="2" ry="2" />
<text x="270.71" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_load_script (252,525,250 samples, 0.44%)</title><rect x="876.7" y="965" width="5.2" height="15.0" fill="rgb(226,10,14)" rx="2" ry="2" />
<text x="879.67" y="975.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (191,919,190 samples, 0.34%)</title><rect x="267.7" y="1109" width="4.0" height="15.0" fill="rgb(225,213,9)" rx="2" ry="2" />
<text x="270.71" y="1119.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="24.0" y="965" width="0.2" height="15.0" fill="rgb(239,212,12)" rx="2" ry="2" />
<text x="26.96" y="975.5" ></text>
</g>
<g >
<title>path_lookupat (1,838,383,820 samples, 3.21%)</title><rect x="379.2" y="981" width="37.9" height="15.0" fill="rgb(216,26,19)" rx="2" ry="2" />
<text x="382.17" y="991.5" >pat..</text>
</g>
<g >
<title>ZEND_INIT_METHOD_CALL_SPEC_CV_CV_HANDLER (40,404,040 samples, 0.07%)</title><rect x="461.0" y="1125" width="0.9" height="15.0" fill="rgb(245,210,7)" rx="2" ry="2" />
<text x="464.04" y="1135.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="925.4" y="661" width="0.2" height="15.0" fill="rgb(228,104,29)" rx="2" ry="2" />
<text x="928.42" y="671.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="952.7" y="1109" width="0.2" height="15.0" fill="rgb(215,44,21)" rx="2" ry="2" />
<text x="955.71" y="1119.5" ></text>
</g>
<g >
<title>__legitimize_mnt (20,202,020 samples, 0.04%)</title><rect x="775.4" y="853" width="0.4" height="15.0" fill="rgb(239,59,19)" rx="2" ry="2" />
<text x="778.42" y="863.5" ></text>
</g>
<g >
<title>mntput (10,101,010 samples, 0.02%)</title><rect x="1117.7" y="1125" width="0.2" height="15.0" fill="rgb(210,146,11)" rx="2" ry="2" />
<text x="1120.71" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="645" width="0.2" height="15.0" fill="rgb(217,5,42)" rx="2" ry="2" />
<text x="1091.33" y="655.5" ></text>
</g>
<g >
<title>ip_rcv (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="629" width="2.9" height="15.0" fill="rgb(232,120,36)" rx="2" ry="2" />
<text x="1130.50" y="639.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="308.5" y="1109" width="0.3" height="15.0" fill="rgb(210,191,36)" rx="2" ry="2" />
<text x="311.54" y="1119.5" ></text>
</g>
<g >
<title>validate_xmit_skb (10,101,010 samples, 0.02%)</title><rect x="940.0" y="117" width="0.2" height="15.0" fill="rgb(242,42,38)" rx="2" ry="2" />
<text x="943.00" y="127.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (10,101,010 samples, 0.02%)</title><rect x="886.7" y="1093" width="0.2" height="15.0" fill="rgb(208,28,49)" rx="2" ry="2" />
<text x="889.67" y="1103.5" ></text>
</g>
<g >
<title>zend_rebuild_symbol_table (10,101,010 samples, 0.02%)</title><rect x="501.7" y="1029" width="0.2" height="15.0" fill="rgb(247,105,12)" rx="2" ry="2" />
<text x="504.67" y="1039.5" ></text>
</g>
<g >
<title>ZEND_INIT_METHOD_CALL_SPEC_CV_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="715.2" y="1125" width="0.2" height="15.0" fill="rgb(249,150,18)" rx="2" ry="2" />
<text x="718.21" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="1152.1" y="597" width="0.2" height="15.0" fill="rgb(213,40,2)" rx="2" ry="2" />
<text x="1155.08" y="607.5" ></text>
</g>
<g >
<title>mysqlnd_read_packet_header_and_body.constprop.0 (10,101,010 samples, 0.02%)</title><rect x="1052.1" y="1029" width="0.2" height="15.0" fill="rgb(223,151,6)" rx="2" ry="2" />
<text x="1055.08" y="1039.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1013" width="0.2" height="15.0" fill="rgb(229,21,30)" rx="2" ry="2" />
<text x="1171.12" y="1023.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="283.8" y="901" width="0.2" height="15.0" fill="rgb(216,29,51)" rx="2" ry="2" />
<text x="286.75" y="911.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="850.6" y="837" width="0.2" height="15.0" fill="rgb(225,154,2)" rx="2" ry="2" />
<text x="853.62" y="847.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="244.0" y="949" width="0.2" height="15.0" fill="rgb(251,25,1)" rx="2" ry="2" />
<text x="246.96" y="959.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="648.3" y="1029" width="0.2" height="15.0" fill="rgb(224,107,13)" rx="2" ry="2" />
<text x="651.33" y="1039.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="30.2" y="693" width="0.2" height="15.0" fill="rgb(224,117,42)" rx="2" ry="2" />
<text x="33.21" y="703.5" ></text>
</g>
<g >
<title>zend_hash_find (60,606,060 samples, 0.11%)</title><rect x="445.0" y="1109" width="1.2" height="15.0" fill="rgb(254,102,38)" rx="2" ry="2" />
<text x="448.00" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="303.1" y="789" width="0.2" height="15.0" fill="rgb(223,178,20)" rx="2" ry="2" />
<text x="306.12" y="799.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="395.4" y="837" width="0.2" height="15.0" fill="rgb(253,117,13)" rx="2" ry="2" />
<text x="398.42" y="847.5" ></text>
</g>
<g >
<title>__qdisc_run (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="357" width="0.3" height="15.0" fill="rgb(206,55,40)" rx="2" ry="2" />
<text x="1134.25" y="367.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1061" width="0.2" height="15.0" fill="rgb(245,166,36)" rx="2" ry="2" />
<text x="691.96" y="1071.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="997" width="0.2" height="15.0" fill="rgb(226,75,1)" rx="2" ry="2" />
<text x="1022.79" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (10,101,010 samples, 0.02%)</title><rect x="740.2" y="837" width="0.2" height="15.0" fill="rgb(225,161,15)" rx="2" ry="2" />
<text x="743.21" y="847.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (20,202,020 samples, 0.04%)</title><rect x="799.6" y="757" width="0.4" height="15.0" fill="rgb(240,99,17)" rx="2" ry="2" />
<text x="802.58" y="767.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="535.0" y="949" width="0.2" height="15.0" fill="rgb(213,199,46)" rx="2" ry="2" />
<text x="538.00" y="959.5" ></text>
</g>
<g >
<title>br_handle_frame (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="789" width="3.3" height="15.0" fill="rgb(244,28,24)" rx="2" ry="2" />
<text x="1130.50" y="799.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="710.8" y="1093" width="0.2" height="15.0" fill="rgb(212,163,53)" rx="2" ry="2" />
<text x="713.83" y="1103.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1029" width="0.3" height="15.0" fill="rgb(213,191,48)" rx="2" ry="2" />
<text x="489.25" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="933" width="0.2" height="15.0" fill="rgb(221,34,27)" rx="2" ry="2" />
<text x="1171.12" y="943.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="353.8" y="1093" width="0.2" height="15.0" fill="rgb(248,215,41)" rx="2" ry="2" />
<text x="356.75" y="1103.5" ></text>
</g>
<g >
<title>ZEND_CAST_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="298.5" y="1125" width="0.5" height="15.0" fill="rgb(241,87,44)" rx="2" ry="2" />
<text x="301.54" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output (80,808,080 samples, 0.14%)</title><rect x="1185.0" y="517" width="1.7" height="15.0" fill="rgb(247,134,20)" rx="2" ry="2" />
<text x="1188.00" y="527.5" ></text>
</g>
<g >
<title>ZEND_FETCH_STATIC_PROP_R_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="552.1" y="1141" width="0.2" height="15.0" fill="rgb(222,207,8)" rx="2" ry="2" />
<text x="555.08" y="1151.5" ></text>
</g>
<g >
<title>ZEND_IS_IDENTICAL_SPEC_CV_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="554.0" y="1141" width="0.2" height="15.0" fill="rgb(228,94,34)" rx="2" ry="2" />
<text x="556.96" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="856.9" y="741" width="0.2" height="15.0" fill="rgb(244,153,46)" rx="2" ry="2" />
<text x="859.88" y="751.5" ></text>
</g>
<g >
<title>sch_direct_xmit (70,707,070 samples, 0.12%)</title><rect x="1127.9" y="437" width="1.5" height="15.0" fill="rgb(249,28,47)" rx="2" ry="2" />
<text x="1130.92" y="447.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="411.9" y="917" width="0.2" height="15.0" fill="rgb(216,188,41)" rx="2" ry="2" />
<text x="414.88" y="927.5" ></text>
</g>
<g >
<title>ZEND_ROPE_INIT_SPEC_UNUSED_CV_HANDLER (30,303,030 samples, 0.05%)</title><rect x="454.2" y="1125" width="0.6" height="15.0" fill="rgb(233,78,3)" rx="2" ry="2" />
<text x="457.17" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="492.3" y="1125" width="0.2" height="15.0" fill="rgb(215,58,52)" rx="2" ry="2" />
<text x="495.29" y="1135.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="853" width="0.2" height="15.0" fill="rgb(236,215,15)" rx="2" ry="2" />
<text x="1170.08" y="863.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="283.8" y="837" width="0.2" height="15.0" fill="rgb(217,146,3)" rx="2" ry="2" />
<text x="286.75" y="847.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1027.9" y="1029" width="0.2" height="15.0" fill="rgb(236,55,29)" rx="2" ry="2" />
<text x="1030.92" y="1039.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="881.2" y="389" width="0.3" height="15.0" fill="rgb(213,144,30)" rx="2" ry="2" />
<text x="884.25" y="399.5" ></text>
</g>
<g >
<title>ip_finish_output (272,727,270 samples, 0.48%)</title><rect x="1152.7" y="485" width="5.6" height="15.0" fill="rgb(237,152,50)" rx="2" ry="2" />
<text x="1155.71" y="495.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (202,020,200 samples, 0.35%)</title><rect x="1184.0" y="1029" width="4.1" height="15.0" fill="rgb(219,219,2)" rx="2" ry="2" />
<text x="1186.96" y="1039.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="743.3" y="789" width="0.2" height="15.0" fill="rgb(248,95,18)" rx="2" ry="2" />
<text x="746.33" y="799.5" ></text>
</g>
<g >
<title>ovl_permission (30,303,030 samples, 0.05%)</title><rect x="900.6" y="965" width="0.6" height="15.0" fill="rgb(234,8,9)" rx="2" ry="2" />
<text x="903.62" y="975.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (101,010,100 samples, 0.18%)</title><rect x="836.0" y="837" width="2.1" height="15.0" fill="rgb(223,64,47)" rx="2" ry="2" />
<text x="839.04" y="847.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="672.7" y="1093" width="0.2" height="15.0" fill="rgb(219,93,8)" rx="2" ry="2" />
<text x="675.71" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1158.5" y="485" width="0.3" height="15.0" fill="rgb(213,164,42)" rx="2" ry="2" />
<text x="1161.54" y="495.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (30,303,030 samples, 0.05%)</title><rect x="803.8" y="853" width="0.6" height="15.0" fill="rgb(242,170,37)" rx="2" ry="2" />
<text x="806.75" y="863.5" ></text>
</g>
<g >
<title>run_rebalance_domains (10,101,010 samples, 0.02%)</title><rect x="932.3" y="757" width="0.2" height="15.0" fill="rgb(254,167,0)" rx="2" ry="2" />
<text x="935.29" y="767.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="678.5" y="901" width="0.5" height="15.0" fill="rgb(234,40,4)" rx="2" ry="2" />
<text x="681.54" y="911.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="885" width="0.2" height="15.0" fill="rgb(240,20,25)" rx="2" ry="2" />
<text x="1091.33" y="895.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="822.7" y="853" width="0.2" height="15.0" fill="rgb(251,27,12)" rx="2" ry="2" />
<text x="825.71" y="863.5" ></text>
</g>
<g >
<title>zif_setlocale (10,101,010 samples, 0.02%)</title><rect x="1075.4" y="1141" width="0.2" height="15.0" fill="rgb(225,179,30)" rx="2" ry="2" />
<text x="1078.42" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="247.5" y="1093" width="0.4" height="15.0" fill="rgb(238,8,1)" rx="2" ry="2" />
<text x="250.50" y="1103.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="649.4" y="1013" width="0.2" height="15.0" fill="rgb(227,168,25)" rx="2" ry="2" />
<text x="652.38" y="1023.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="416.7" y="917" width="0.2" height="15.0" fill="rgb(210,103,21)" rx="2" ry="2" />
<text x="419.67" y="927.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="370.0" y="1061" width="0.2" height="15.0" fill="rgb(245,108,28)" rx="2" ry="2" />
<text x="373.00" y="1071.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="245.8" y="1077" width="0.2" height="15.0" fill="rgb(252,78,49)" rx="2" ry="2" />
<text x="248.83" y="1087.5" ></text>
</g>
<g >
<title>main (43,929,292,490 samples, 76.78%)</title><rect x="203.3" y="1189" width="906.1" height="15.0" fill="rgb(219,111,50)" rx="2" ry="2" />
<text x="206.33" y="1199.5" >main</text>
</g>
<g >
<title>JIT$$leave_function (10,101,010 samples, 0.02%)</title><rect x="905.2" y="1061" width="0.2" height="15.0" fill="rgb(228,50,23)" rx="2" ry="2" />
<text x="908.21" y="1071.5" ></text>
</g>
<g >
<title>ip_forward_finish (60,606,060 samples, 0.11%)</title><rect x="939.4" y="261" width="1.2" height="15.0" fill="rgb(232,24,8)" rx="2" ry="2" />
<text x="942.38" y="271.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (101,010,100 samples, 0.18%)</title><rect x="939.4" y="613" width="2.1" height="15.0" fill="rgb(226,28,4)" rx="2" ry="2" />
<text x="942.38" y="623.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="822.3" y="933" width="0.2" height="15.0" fill="rgb(211,121,30)" rx="2" ry="2" />
<text x="825.29" y="943.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (60,606,060 samples, 0.11%)</title><rect x="683.8" y="1061" width="1.2" height="15.0" fill="rgb(236,50,34)" rx="2" ry="2" />
<text x="686.75" y="1071.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="202.5" y="997" width="0.2" height="15.0" fill="rgb(249,20,2)" rx="2" ry="2" />
<text x="205.50" y="1007.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="1045" width="0.2" height="15.0" fill="rgb(222,117,0)" rx="2" ry="2" />
<text x="1085.08" y="1055.5" ></text>
</g>
<g >
<title>TRACE-276$Wikimedia\Rdbms\LoadBalancer::commitPrimaryChanges$1834 (10,101,010 samples, 0.02%)</title><rect x="472.7" y="1141" width="0.2" height="15.0" fill="rgb(244,37,42)" rx="2" ry="2" />
<text x="475.71" y="1151.5" ></text>
</g>
<g >
<title>zend_closure_new (10,101,010 samples, 0.02%)</title><rect x="474.6" y="1077" width="0.2" height="15.0" fill="rgb(241,17,51)" rx="2" ry="2" />
<text x="477.58" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1045" width="0.2" height="15.0" fill="rgb(213,32,48)" rx="2" ry="2" />
<text x="1171.12" y="1055.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="1047.5" y="997" width="0.2" height="15.0" fill="rgb(241,155,2)" rx="2" ry="2" />
<text x="1050.50" y="1007.5" ></text>
</g>
<g >
<title>zif_getrusage (30,303,030 samples, 0.05%)</title><rect x="1038.8" y="1125" width="0.6" height="15.0" fill="rgb(206,20,22)" rx="2" ry="2" />
<text x="1041.75" y="1135.5" ></text>
</g>
<g >
<title>security_file_permission (20,202,020 samples, 0.04%)</title><rect x="217.9" y="1013" width="0.4" height="15.0" fill="rgb(206,0,42)" rx="2" ry="2" />
<text x="220.92" y="1023.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="378.5" y="613" width="0.3" height="15.0" fill="rgb(235,176,33)" rx="2" ry="2" />
<text x="381.54" y="623.5" ></text>
</g>
<g >
<title>zend_accel_load_script (212,121,210 samples, 0.37%)</title><rect x="275.4" y="1061" width="4.4" height="15.0" fill="rgb(232,173,3)" rx="2" ry="2" />
<text x="278.42" y="1071.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="395.4" y="773" width="0.2" height="15.0" fill="rgb(246,22,2)" rx="2" ry="2" />
<text x="398.42" y="783.5" ></text>
</g>
<g >
<title>__inet_stream_connect (252,525,250 samples, 0.44%)</title><rect x="937.5" y="821" width="5.2" height="15.0" fill="rgb(207,212,37)" rx="2" ry="2" />
<text x="940.50" y="831.5" ></text>
</g>
<g >
<title>zif_array_unshift (30,303,030 samples, 0.05%)</title><rect x="297.1" y="1125" width="0.6" height="15.0" fill="rgb(210,213,7)" rx="2" ry="2" />
<text x="300.08" y="1135.5" ></text>
</g>
<g >
<title>zif_count (10,101,010 samples, 0.02%)</title><rect x="1071.9" y="1141" width="0.2" height="15.0" fill="rgb(225,73,43)" rx="2" ry="2" />
<text x="1074.88" y="1151.5" ></text>
</g>
<g >
<title>zend_try_early_bind (20,202,020 samples, 0.04%)</title><rect x="806.5" y="821" width="0.4" height="15.0" fill="rgb(214,134,18)" rx="2" ry="2" />
<text x="809.46" y="831.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="675.8" y="1029" width="0.4" height="15.0" fill="rgb(219,180,21)" rx="2" ry="2" />
<text x="678.83" y="1039.5" ></text>
</g>
<g >
<title>zend_include_or_eval (90,909,090 samples, 0.16%)</title><rect x="729.6" y="1013" width="1.9" height="15.0" fill="rgb(254,176,40)" rx="2" ry="2" />
<text x="732.58" y="1023.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="919.2" y="1029" width="0.2" height="15.0" fill="rgb(211,193,0)" rx="2" ry="2" />
<text x="922.17" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="522.7" y="1077" width="0.2" height="15.0" fill="rgb(246,16,16)" rx="2" ry="2" />
<text x="525.71" y="1087.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="378.5" y="677" width="0.3" height="15.0" fill="rgb(240,178,24)" rx="2" ry="2" />
<text x="381.54" y="687.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="355.2" y="1125" width="0.2" height="15.0" fill="rgb(238,213,13)" rx="2" ry="2" />
<text x="358.21" y="1135.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="755.8" y="1093" width="0.2" height="15.0" fill="rgb(228,134,22)" rx="2" ry="2" />
<text x="758.83" y="1103.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="948.5" y="997" width="0.3" height="15.0" fill="rgb(247,199,20)" rx="2" ry="2" />
<text x="951.54" y="1007.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="352.3" y="1109" width="0.2" height="15.0" fill="rgb(207,8,16)" rx="2" ry="2" />
<text x="355.29" y="1119.5" ></text>
</g>
<g >
<title>do_bind_class (10,101,010 samples, 0.02%)</title><rect x="270.8" y="981" width="0.2" height="15.0" fill="rgb(220,5,50)" rx="2" ry="2" />
<text x="273.83" y="991.5" ></text>
</g>
<g >
<title>zend_jit_find_method_tmp_helper (30,303,030 samples, 0.05%)</title><rect x="536.0" y="1125" width="0.7" height="15.0" fill="rgb(230,86,53)" rx="2" ry="2" />
<text x="539.04" y="1135.5" ></text>
</g>
<g >
<title>zend_vstrpprintf (20,202,020 samples, 0.04%)</title><rect x="889.2" y="1093" width="0.4" height="15.0" fill="rgb(208,91,3)" rx="2" ry="2" />
<text x="892.17" y="1103.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (60,606,060 samples, 0.11%)</title><rect x="303.5" y="789" width="1.3" height="15.0" fill="rgb(215,185,54)" rx="2" ry="2" />
<text x="306.54" y="799.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="178.3" y="1045" width="0.2" height="15.0" fill="rgb(215,172,24)" rx="2" ry="2" />
<text x="181.33" y="1055.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="741" width="0.2" height="15.0" fill="rgb(237,157,37)" rx="2" ry="2" />
<text x="1150.29" y="751.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="753.8" y="933" width="0.2" height="15.0" fill="rgb(254,160,2)" rx="2" ry="2" />
<text x="756.75" y="943.5" ></text>
</g>
<g >
<title>do_bind_class (141,414,140 samples, 0.25%)</title><rect x="676.7" y="1013" width="2.9" height="15.0" fill="rgb(233,118,18)" rx="2" ry="2" />
<text x="679.67" y="1023.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="517" width="0.2" height="15.0" fill="rgb(228,116,35)" rx="2" ry="2" />
<text x="1170.08" y="527.5" ></text>
</g>
<g >
<title>zif_array_change_key_case (10,101,010 samples, 0.02%)</title><rect x="518.1" y="1125" width="0.2" height="15.0" fill="rgb(251,141,43)" rx="2" ry="2" />
<text x="521.12" y="1135.5" ></text>
</g>
<g >
<title>legitimize_root (30,303,030 samples, 0.05%)</title><rect x="395.0" y="933" width="0.6" height="15.0" fill="rgb(234,187,17)" rx="2" ry="2" />
<text x="398.00" y="943.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="390.2" y="757" width="0.2" height="15.0" fill="rgb(224,224,53)" rx="2" ry="2" />
<text x="393.21" y="767.5" ></text>
</g>
<g >
<title>sock_def_readable (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="805" width="0.2" height="15.0" fill="rgb(207,90,28)" rx="2" ry="2" />
<text x="1022.79" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1189" width="0.8" height="15.0" fill="rgb(232,174,48)" rx="2" ry="2" />
<text x="1138.42" y="1199.5" ></text>
</g>
<g >
<title>filename_lookup (80,808,080 samples, 0.14%)</title><rect x="723.8" y="933" width="1.6" height="15.0" fill="rgb(245,17,40)" rx="2" ry="2" />
<text x="726.75" y="943.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="881.2" y="805" width="0.3" height="15.0" fill="rgb(245,33,38)" rx="2" ry="2" />
<text x="884.25" y="815.5" ></text>
</g>
<g >
<title>gc_remove_from_buffer (10,101,010 samples, 0.02%)</title><rect x="219.4" y="1109" width="0.2" height="15.0" fill="rgb(209,42,32)" rx="2" ry="2" />
<text x="222.38" y="1119.5" ></text>
</g>
<g >
<title>init_func_run_time_cache (10,101,010 samples, 0.02%)</title><rect x="757.9" y="1109" width="0.2" height="15.0" fill="rgb(254,177,2)" rx="2" ry="2" />
<text x="760.92" y="1119.5" ></text>
</g>
<g >
<title>_efree_32 (20,202,020 samples, 0.04%)</title><rect x="556.9" y="1141" width="0.4" height="15.0" fill="rgb(249,126,22)" rx="2" ry="2" />
<text x="559.88" y="1151.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_post_connect_set_opt_pub (10,101,010 samples, 0.02%)</title><rect x="943.8" y="1029" width="0.2" height="15.0" fill="rgb(224,46,14)" rx="2" ry="2" />
<text x="946.75" y="1039.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="30.4" y="1029" width="0.2" height="15.0" fill="rgb(248,123,3)" rx="2" ry="2" />
<text x="33.42" y="1039.5" ></text>
</g>
<g >
<title>_is_numeric_string_ex (10,101,010 samples, 0.02%)</title><rect x="298.5" y="1109" width="0.3" height="15.0" fill="rgb(205,151,13)" rx="2" ry="2" />
<text x="301.54" y="1119.5" ></text>
</g>
<g >
<title>dev_queue_xmit (80,808,080 samples, 0.14%)</title><rect x="1185.0" y="469" width="1.7" height="15.0" fill="rgb(248,149,33)" rx="2" ry="2" />
<text x="1188.00" y="479.5" ></text>
</g>
<g >
<title>__xfrm_policy_check2.constprop.42 (10,101,010 samples, 0.02%)</title><rect x="476.9" y="885" width="0.2" height="15.0" fill="rgb(212,195,18)" rx="2" ry="2" />
<text x="479.88" y="895.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="753.8" y="917" width="0.2" height="15.0" fill="rgb(245,157,17)" rx="2" ry="2" />
<text x="756.75" y="927.5" ></text>
</g>
<g >
<title>__x64_sys_access (141,414,140 samples, 0.25%)</title><rect x="723.5" y="981" width="3.0" height="15.0" fill="rgb(205,137,44)" rx="2" ry="2" />
<text x="726.54" y="991.5" ></text>
</g>
<g >
<title>do_async_page_fault (10,101,010 samples, 0.02%)</title><rect x="190.6" y="1045" width="0.2" height="15.0" fill="rgb(209,91,8)" rx="2" ry="2" />
<text x="193.62" y="1055.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="982.9" y="805" width="0.2" height="15.0" fill="rgb(217,172,29)" rx="2" ry="2" />
<text x="985.92" y="815.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="546.5" y="981" width="0.2" height="15.0" fill="rgb(230,167,49)" rx="2" ry="2" />
<text x="549.46" y="991.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (282,828,280 samples, 0.49%)</title><rect x="1005.2" y="1061" width="5.8" height="15.0" fill="rgb(214,10,49)" rx="2" ry="2" />
<text x="1008.21" y="1071.5" ></text>
</g>
<g >
<title>ZEND_INIT_ARRAY_SPEC_CV_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="711.0" y="1125" width="0.2" height="15.0" fill="rgb(226,187,31)" rx="2" ry="2" />
<text x="714.04" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="881.2" y="885" width="0.3" height="15.0" fill="rgb(233,49,12)" rx="2" ry="2" />
<text x="884.25" y="895.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="998.8" y="821" width="0.2" height="15.0" fill="rgb(238,176,50)" rx="2" ry="2" />
<text x="1001.75" y="831.5" ></text>
</g>
<g >
<title>zend_register_class_alias_ex (10,101,010 samples, 0.02%)</title><rect x="807.1" y="901" width="0.2" height="15.0" fill="rgb(230,150,0)" rx="2" ry="2" />
<text x="810.08" y="911.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1086.2" y="949" width="0.3" height="15.0" fill="rgb(252,174,38)" rx="2" ry="2" />
<text x="1089.25" y="959.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (20,202,020 samples, 0.04%)</title><rect x="805.8" y="821" width="0.4" height="15.0" fill="rgb(232,105,24)" rx="2" ry="2" />
<text x="808.83" y="831.5" ></text>
</g>
<g >
<title>zend_alter_ini_entry_chars (10,101,010 samples, 0.02%)</title><rect x="1040.2" y="1109" width="0.2" height="15.0" fill="rgb(224,67,25)" rx="2" ry="2" />
<text x="1043.21" y="1119.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (202,020,200 samples, 0.35%)</title><rect x="1176.2" y="1173" width="4.2" height="15.0" fill="rgb(251,214,11)" rx="2" ry="2" />
<text x="1179.25" y="1183.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (40,404,040 samples, 0.07%)</title><rect x="1180.4" y="1173" width="0.8" height="15.0" fill="rgb(252,149,43)" rx="2" ry="2" />
<text x="1183.42" y="1183.5" ></text>
</g>
<g >
<title>virtqueue_get_buf_ctx (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="693" width="0.2" height="15.0" fill="rgb(247,195,17)" rx="2" ry="2" />
<text x="1056.33" y="703.5" ></text>
</g>
<g >
<title>zend_parse_parameters (10,101,010 samples, 0.02%)</title><rect x="749.2" y="1013" width="0.2" height="15.0" fill="rgb(227,104,7)" rx="2" ry="2" />
<text x="752.17" y="1023.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (40,404,040 samples, 0.07%)</title><rect x="905.4" y="1061" width="0.8" height="15.0" fill="rgb(240,210,43)" rx="2" ry="2" />
<text x="908.42" y="1071.5" ></text>
</g>
<g >
<title>__slab_free (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="677" width="0.2" height="15.0" fill="rgb(240,105,38)" rx="2" ry="2" />
<text x="1010.50" y="687.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1093" width="0.2" height="15.0" fill="rgb(211,108,13)" rx="2" ry="2" />
<text x="205.50" y="1103.5" ></text>
</g>
<g >
<title>nf_ct_deliver_cached_events (10,101,010 samples, 0.02%)</title><rect x="941.7" y="645" width="0.2" height="15.0" fill="rgb(212,105,0)" rx="2" ry="2" />
<text x="944.67" y="655.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="641.7" y="853" width="0.2" height="15.0" fill="rgb(238,147,17)" rx="2" ry="2" />
<text x="644.67" y="863.5" ></text>
</g>
<g >
<title>TRACE-253$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$123 (10,101,010 samples, 0.02%)</title><rect x="464.0" y="1141" width="0.2" height="15.0" fill="rgb(230,108,28)" rx="2" ry="2" />
<text x="466.96" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1141" width="0.2" height="15.0" fill="rgb(230,187,9)" rx="2" ry="2" />
<text x="1118.62" y="1151.5" ></text>
</g>
<g >
<title>filename_lookup (30,303,030 samples, 0.05%)</title><rect x="533.5" y="933" width="0.7" height="15.0" fill="rgb(210,24,36)" rx="2" ry="2" />
<text x="536.54" y="943.5" ></text>
</g>
<g >
<title>do_bind_class (20,202,020 samples, 0.04%)</title><rect x="304.4" y="645" width="0.4" height="15.0" fill="rgb(210,64,53)" rx="2" ry="2" />
<text x="307.38" y="655.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1109" width="0.2" height="15.0" fill="rgb(253,7,53)" rx="2" ry="2" />
<text x="1118.62" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="800.0" y="805" width="0.4" height="15.0" fill="rgb(246,156,42)" rx="2" ry="2" />
<text x="803.00" y="815.5" ></text>
</g>
<g >
<title>php_mysqlnd_auth_write (20,202,020 samples, 0.04%)</title><rect x="927.9" y="981" width="0.4" height="15.0" fill="rgb(226,175,50)" rx="2" ry="2" />
<text x="930.92" y="991.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1033.1" y="501" width="0.2" height="15.0" fill="rgb(214,147,27)" rx="2" ry="2" />
<text x="1036.12" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_chdir (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1109" width="0.2" height="15.0" fill="rgb(244,37,31)" rx="2" ry="2" />
<text x="221.75" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="517.9" y="1077" width="0.2" height="15.0" fill="rgb(244,51,21)" rx="2" ry="2" />
<text x="520.92" y="1087.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="524.0" y="837" width="0.2" height="15.0" fill="rgb(238,195,48)" rx="2" ry="2" />
<text x="526.96" y="847.5" ></text>
</g>
<g >
<title>_copy_to_iter (10,101,010 samples, 0.02%)</title><rect x="1178.8" y="1045" width="0.2" height="15.0" fill="rgb(251,164,38)" rx="2" ry="2" />
<text x="1181.75" y="1055.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1045" width="0.3" height="15.0" fill="rgb(225,38,51)" rx="2" ry="2" />
<text x="499.25" y="1055.5" ></text>
</g>
<g >
<title>__dev_forward_skb (10,101,010 samples, 0.02%)</title><rect x="1165.2" y="837" width="0.2" height="15.0" fill="rgb(230,213,22)" rx="2" ry="2" />
<text x="1168.21" y="847.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (20,202,020 samples, 0.04%)</title><rect x="727.9" y="965" width="0.4" height="15.0" fill="rgb(243,154,22)" rx="2" ry="2" />
<text x="730.92" y="975.5" ></text>
</g>
<g >
<title>zend_hash_extend (10,101,010 samples, 0.02%)</title><rect x="922.1" y="885" width="0.2" height="15.0" fill="rgb(249,207,42)" rx="2" ry="2" />
<text x="925.08" y="895.5" ></text>
</g>
<g >
<title>memcpy (20,202,020 samples, 0.04%)</title><rect x="1158.8" y="517" width="0.4" height="15.0" fill="rgb(241,13,44)" rx="2" ry="2" />
<text x="1161.75" y="527.5" ></text>
</g>
<g >
<title>task_work_run (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1045" width="0.5" height="15.0" fill="rgb(218,90,37)" rx="2" ry="2" />
<text x="1026.33" y="1055.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="718.3" y="1061" width="0.2" height="15.0" fill="rgb(216,164,4)" rx="2" ry="2" />
<text x="721.33" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (50,505,050 samples, 0.09%)</title><rect x="342.7" y="1109" width="1.1" height="15.0" fill="rgb(229,29,42)" rx="2" ry="2" />
<text x="345.71" y="1119.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="892.5" y="1093" width="0.2" height="15.0" fill="rgb(214,145,53)" rx="2" ry="2" />
<text x="895.50" y="1103.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="685.6" y="981" width="0.2" height="15.0" fill="rgb(238,58,30)" rx="2" ry="2" />
<text x="688.62" y="991.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="754.0" y="965" width="0.2" height="15.0" fill="rgb(230,126,13)" rx="2" ry="2" />
<text x="756.96" y="975.5" ></text>
</g>
<g >
<title>zend_hash_index_add_new (10,101,010 samples, 0.02%)</title><rect x="202.1" y="1141" width="0.2" height="15.0" fill="rgb(211,220,36)" rx="2" ry="2" />
<text x="205.08" y="1151.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="798.5" y="885" width="0.3" height="15.0" fill="rgb(221,107,31)" rx="2" ry="2" />
<text x="801.54" y="895.5" ></text>
</g>
<g >
<title>zif_define (10,101,010 samples, 0.02%)</title><rect x="515.8" y="1125" width="0.2" height="15.0" fill="rgb(240,40,32)" rx="2" ry="2" />
<text x="518.83" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_leave_top_func_helper (20,202,020 samples, 0.04%)</title><rect x="833.1" y="901" width="0.4" height="15.0" fill="rgb(220,88,51)" rx="2" ry="2" />
<text x="836.12" y="911.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (10,101,010 samples, 0.02%)</title><rect x="205.6" y="1045" width="0.2" height="15.0" fill="rgb(241,68,13)" rx="2" ry="2" />
<text x="208.62" y="1055.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="490.4" y="1093" width="0.2" height="15.0" fill="rgb(253,7,32)" rx="2" ry="2" />
<text x="493.42" y="1103.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1029" width="0.2" height="15.0" fill="rgb(242,203,37)" rx="2" ry="2" />
<text x="893.00" y="1039.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="511.7" y="1013" width="0.2" height="15.0" fill="rgb(224,97,51)" rx="2" ry="2" />
<text x="514.67" y="1023.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="947.9" y="1029" width="0.2" height="15.0" fill="rgb(240,56,43)" rx="2" ry="2" />
<text x="950.92" y="1039.5" ></text>
</g>
<g >
<title>_php_stream_stat_path (10,101,010 samples, 0.02%)</title><rect x="295.8" y="1093" width="0.2" height="15.0" fill="rgb(253,125,42)" rx="2" ry="2" />
<text x="298.83" y="1103.5" ></text>
</g>
<g >
<title>__pthread_once (10,101,010 samples, 0.02%)</title><rect x="13.3" y="1205" width="0.2" height="15.0" fill="rgb(209,61,9)" rx="2" ry="2" />
<text x="16.33" y="1215.5" ></text>
</g>
<g >
<title>terminate_walk (10,101,010 samples, 0.02%)</title><rect x="725.2" y="901" width="0.2" height="15.0" fill="rgb(233,182,36)" rx="2" ry="2" />
<text x="728.21" y="911.5" ></text>
</g>
<g >
<title>unlazy_walk (60,606,060 samples, 0.11%)</title><rect x="394.4" y="949" width="1.2" height="15.0" fill="rgb(222,165,42)" rx="2" ry="2" />
<text x="397.38" y="959.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="24.0" y="1141" width="0.4" height="15.0" fill="rgb(225,87,25)" rx="2" ry="2" />
<text x="26.96" y="1151.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1132.9" y="1125" width="0.2" height="15.0" fill="rgb(254,154,9)" rx="2" ry="2" />
<text x="1135.92" y="1135.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="517.7" y="965" width="0.2" height="15.0" fill="rgb(206,102,53)" rx="2" ry="2" />
<text x="520.71" y="975.5" ></text>
</g>
<g >
<title>persistent_compile_file (565,656,560 samples, 0.99%)</title><rect x="852.7" y="853" width="11.7" height="15.0" fill="rgb(215,24,45)" rx="2" ry="2" />
<text x="855.71" y="863.5" ></text>
</g>
<g >
<title>tcp_connect (212,121,210 samples, 0.37%)</title><rect x="938.1" y="789" width="4.4" height="15.0" fill="rgb(234,68,4)" rx="2" ry="2" />
<text x="941.12" y="799.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1109" width="0.2" height="15.0" fill="rgb(233,15,54)" rx="2" ry="2" />
<text x="474.67" y="1119.5" ></text>
</g>
<g >
<title>pskb_expand_head (10,101,010 samples, 0.02%)</title><rect x="1130.2" y="549" width="0.2" height="15.0" fill="rgb(218,195,28)" rx="2" ry="2" />
<text x="1133.21" y="559.5" ></text>
</g>
<g >
<title>zif_ini_get (10,101,010 samples, 0.02%)</title><rect x="1030.6" y="1029" width="0.2" height="15.0" fill="rgb(217,164,0)" rx="2" ry="2" />
<text x="1033.62" y="1039.5" ></text>
</g>
<g >
<title>__mnt_want_write_file (10,101,010 samples, 0.02%)</title><rect x="1108.1" y="1029" width="0.2" height="15.0" fill="rgb(211,63,7)" rx="2" ry="2" />
<text x="1111.12" y="1039.5" ></text>
</g>
<g >
<title>__seccomp_filter (20,202,020 samples, 0.04%)</title><rect x="1171.5" y="1141" width="0.4" height="15.0" fill="rgb(233,194,13)" rx="2" ry="2" />
<text x="1174.46" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="861.0" y="773" width="0.2" height="15.0" fill="rgb(238,201,35)" rx="2" ry="2" />
<text x="864.04" y="783.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (20,202,020 samples, 0.04%)</title><rect x="1106.7" y="1173" width="0.4" height="15.0" fill="rgb(224,67,14)" rx="2" ry="2" />
<text x="1109.67" y="1183.5" ></text>
</g>
<g >
<title>filename_lookup (2,171,717,150 samples, 3.80%)</title><rect x="372.3" y="997" width="44.8" height="15.0" fill="rgb(207,63,31)" rx="2" ry="2" />
<text x="375.29" y="1007.5" >file..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.07%)</title><rect x="1063.1" y="1125" width="0.9" height="15.0" fill="rgb(243,136,36)" rx="2" ry="2" />
<text x="1066.12" y="1135.5" ></text>
</g>
<g >
<title>chdir (50,505,050 samples, 0.09%)</title><rect x="204.8" y="1173" width="1.0" height="15.0" fill="rgb(232,72,11)" rx="2" ry="2" />
<text x="207.79" y="1183.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="776.5" y="917" width="0.2" height="15.0" fill="rgb(239,190,21)" rx="2" ry="2" />
<text x="779.46" y="927.5" ></text>
</g>
<g >
<title>TRACE-442$BagOStuff::__construct$161 (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1141" width="1.2" height="15.0" fill="rgb(231,38,21)" rx="2" ry="2" />
<text x="526.75" y="1151.5" ></text>
</g>
<g >
<title>pcre_get_compiled_regex_cache_ex (10,101,010 samples, 0.02%)</title><rect x="530.0" y="1109" width="0.2" height="15.0" fill="rgb(232,109,43)" rx="2" ry="2" />
<text x="533.00" y="1119.5" ></text>
</g>
<g >
<title>__fput (101,010,100 samples, 0.18%)</title><rect x="1088.5" y="869" width="2.1" height="15.0" fill="rgb(250,66,29)" rx="2" ry="2" />
<text x="1091.54" y="879.5" ></text>
</g>
<g >
<title>ZEND_ROPE_ADD_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="888.5" y="1125" width="0.3" height="15.0" fill="rgb(220,219,5)" rx="2" ry="2" />
<text x="891.54" y="1135.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="183.8" y="741" width="0.2" height="15.0" fill="rgb(231,83,39)" rx="2" ry="2" />
<text x="186.75" y="751.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1093" width="0.2" height="15.0" fill="rgb(232,87,20)" rx="2" ry="2" />
<text x="560.29" y="1103.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (10,101,010 samples, 0.02%)</title><rect x="950.0" y="997" width="0.2" height="15.0" fill="rgb(246,74,27)" rx="2" ry="2" />
<text x="953.00" y="1007.5" ></text>
</g>
<g >
<title>do_page_fault (10,101,010 samples, 0.02%)</title><rect x="772.1" y="997" width="0.2" height="15.0" fill="rgb(221,43,48)" rx="2" ry="2" />
<text x="775.08" y="1007.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="805" width="0.2" height="15.0" fill="rgb(231,209,22)" rx="2" ry="2" />
<text x="1091.33" y="815.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="869" width="0.2" height="15.0" fill="rgb(249,2,28)" rx="2" ry="2" />
<text x="1083.83" y="879.5" ></text>
</g>
<g >
<title>object_init_ex (292,929,290 samples, 0.51%)</title><rect x="666.5" y="1093" width="6.0" height="15.0" fill="rgb(244,216,49)" rx="2" ry="2" />
<text x="669.46" y="1103.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (90,909,090 samples, 0.16%)</title><rect x="971.7" y="1109" width="1.8" height="15.0" fill="rgb(211,133,44)" rx="2" ry="2" />
<text x="974.67" y="1119.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (10,101,010 samples, 0.02%)</title><rect x="732.9" y="853" width="0.2" height="15.0" fill="rgb(226,189,32)" rx="2" ry="2" />
<text x="735.92" y="863.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_CV_HANDLER.cold (10,101,010 samples, 0.02%)</title><rect x="486.0" y="1125" width="0.2" height="15.0" fill="rgb(228,218,54)" rx="2" ry="2" />
<text x="489.04" y="1135.5" ></text>
</g>
<g >
<title>_copy_to_user (10,101,010 samples, 0.02%)</title><rect x="370.6" y="1013" width="0.2" height="15.0" fill="rgb(220,62,44)" rx="2" ry="2" />
<text x="373.62" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="301.9" y="917" width="0.2" height="15.0" fill="rgb(240,107,0)" rx="2" ry="2" />
<text x="304.88" y="927.5" ></text>
</g>
<g >
<title>_emalloc_256 (10,101,010 samples, 0.02%)</title><rect x="875.8" y="965" width="0.2" height="15.0" fill="rgb(216,88,39)" rx="2" ry="2" />
<text x="878.83" y="975.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (30,303,030 samples, 0.05%)</title><rect x="798.8" y="885" width="0.6" height="15.0" fill="rgb(250,108,20)" rx="2" ry="2" />
<text x="801.75" y="895.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="672.5" y="949" width="0.2" height="15.0" fill="rgb(234,160,17)" rx="2" ry="2" />
<text x="675.50" y="959.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (494,949,490 samples, 0.87%)</title><rect x="1152.1" y="661" width="10.2" height="15.0" fill="rgb(247,176,43)" rx="2" ry="2" />
<text x="1155.08" y="671.5" ></text>
</g>
<g >
<title>revert_creds (10,101,010 samples, 0.02%)</title><rect x="910.8" y="869" width="0.2" height="15.0" fill="rgb(213,150,46)" rx="2" ry="2" />
<text x="913.83" y="879.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (141,414,140 samples, 0.25%)</title><rect x="679.6" y="1029" width="2.9" height="15.0" fill="rgb(223,128,40)" rx="2" ry="2" />
<text x="682.58" y="1039.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (30,303,030 samples, 0.05%)</title><rect x="1037.9" y="1013" width="0.6" height="15.0" fill="rgb(252,145,32)" rx="2" ry="2" />
<text x="1040.92" y="1023.5" ></text>
</g>
<g >
<title>virtqueue_notify (30,303,030 samples, 0.05%)</title><rect x="939.4" y="101" width="0.6" height="15.0" fill="rgb(250,186,53)" rx="2" ry="2" />
<text x="942.38" y="111.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="949" width="0.3" height="15.0" fill="rgb(221,168,51)" rx="2" ry="2" />
<text x="1044.25" y="959.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="857.1" y="821" width="0.2" height="15.0" fill="rgb(216,119,17)" rx="2" ry="2" />
<text x="860.08" y="831.5" ></text>
</g>
<g >
<title>zend_jit_fetch_obj_r_slow (10,101,010 samples, 0.02%)</title><rect x="472.3" y="1125" width="0.2" height="15.0" fill="rgb(216,119,29)" rx="2" ry="2" />
<text x="475.29" y="1135.5" ></text>
</g>
<g >
<title>do_interface_implementation (10,101,010 samples, 0.02%)</title><rect x="732.9" y="869" width="0.2" height="15.0" fill="rgb(234,108,23)" rx="2" ry="2" />
<text x="735.92" y="879.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="982.9" y="997" width="0.2" height="15.0" fill="rgb(253,185,10)" rx="2" ry="2" />
<text x="985.92" y="1007.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="535.2" y="1013" width="0.2" height="15.0" fill="rgb(252,42,54)" rx="2" ry="2" />
<text x="538.21" y="1023.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="682.1" y="933" width="0.2" height="15.0" fill="rgb(229,226,46)" rx="2" ry="2" />
<text x="685.08" y="943.5" ></text>
</g>
<g >
<title>zif_header (10,101,010 samples, 0.02%)</title><rect x="1030.4" y="1029" width="0.2" height="15.0" fill="rgb(245,65,46)" rx="2" ry="2" />
<text x="1033.42" y="1039.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (90,909,090 samples, 0.16%)</title><rect x="190.8" y="1061" width="1.9" height="15.0" fill="rgb(236,27,34)" rx="2" ry="2" />
<text x="193.83" y="1071.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="527.7" y="1077" width="0.4" height="15.0" fill="rgb(217,100,49)" rx="2" ry="2" />
<text x="530.71" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="527.7" y="1061" width="0.4" height="15.0" fill="rgb(207,88,29)" rx="2" ry="2" />
<text x="530.71" y="1071.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="958.1" y="1029" width="0.4" height="15.0" fill="rgb(241,170,16)" rx="2" ry="2" />
<text x="961.12" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="472.3" y="1109" width="0.2" height="15.0" fill="rgb(232,181,54)" rx="2" ry="2" />
<text x="475.29" y="1119.5" ></text>
</g>
<g >
<title>zif_strpos (10,101,010 samples, 0.02%)</title><rect x="310.4" y="1125" width="0.2" height="15.0" fill="rgb(221,150,27)" rx="2" ry="2" />
<text x="313.42" y="1135.5" ></text>
</g>
<g >
<title>lookup_fast (10,101,010 samples, 0.02%)</title><rect x="500.8" y="869" width="0.2" height="15.0" fill="rgb(237,178,3)" rx="2" ry="2" />
<text x="503.83" y="879.5" ></text>
</g>
<g >
<title>ip_forward (101,010,100 samples, 0.18%)</title><rect x="1185.0" y="565" width="2.1" height="15.0" fill="rgb(230,87,35)" rx="2" ry="2" />
<text x="1188.00" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1045" width="0.2" height="15.0" fill="rgb(219,178,32)" rx="2" ry="2" />
<text x="1106.96" y="1055.5" ></text>
</g>
<g >
<title>zend_do_link_class (80,808,080 samples, 0.14%)</title><rect x="916.2" y="1029" width="1.7" height="15.0" fill="rgb(234,124,11)" rx="2" ry="2" />
<text x="919.25" y="1039.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="789" width="0.2" height="15.0" fill="rgb(227,146,1)" rx="2" ry="2" />
<text x="1170.08" y="799.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="861.2" y="789" width="0.3" height="15.0" fill="rgb(208,26,8)" rx="2" ry="2" />
<text x="864.25" y="799.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (50,505,050 samples, 0.09%)</title><rect x="893.1" y="1125" width="1.1" height="15.0" fill="rgb(229,140,47)" rx="2" ry="2" />
<text x="896.12" y="1135.5" ></text>
</g>
<g >
<title>zif_apcu_fetch (20,202,020 samples, 0.04%)</title><rect x="1142.7" y="1205" width="0.4" height="15.0" fill="rgb(206,143,34)" rx="2" ry="2" />
<text x="1145.71" y="1215.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="302.3" y="869" width="0.2" height="15.0" fill="rgb(250,130,1)" rx="2" ry="2" />
<text x="305.29" y="879.5" ></text>
</g>
<g >
<title>zend_jit_fast_concat_helper (10,101,010 samples, 0.02%)</title><rect x="797.7" y="917" width="0.2" height="15.0" fill="rgb(241,79,8)" rx="2" ry="2" />
<text x="800.71" y="927.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="997" width="0.2" height="15.0" fill="rgb(235,71,28)" rx="2" ry="2" />
<text x="1118.42" y="1007.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="485" width="0.2" height="15.0" fill="rgb(206,221,30)" rx="2" ry="2" />
<text x="1170.08" y="495.5" ></text>
</g>
<g >
<title>php_stream_context_set (10,101,010 samples, 0.02%)</title><rect x="930.6" y="997" width="0.2" height="15.0" fill="rgb(242,0,7)" rx="2" ry="2" />
<text x="933.62" y="1007.5" ></text>
</g>
<g >
<title>_php_stream_set_option (626,262,620 samples, 1.09%)</title><rect x="930.8" y="981" width="13.0" height="15.0" fill="rgb(207,84,9)" rx="2" ry="2" />
<text x="933.83" y="991.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (40,404,040 samples, 0.07%)</title><rect x="1009.4" y="997" width="0.8" height="15.0" fill="rgb(226,194,19)" rx="2" ry="2" />
<text x="1012.38" y="1007.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="687.5" y="917" width="0.2" height="15.0" fill="rgb(207,202,10)" rx="2" ry="2" />
<text x="690.50" y="927.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (888,888,880 samples, 1.55%)</title><rect x="654.6" y="1125" width="18.3" height="15.0" fill="rgb(232,10,14)" rx="2" ry="2" />
<text x="657.58" y="1135.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (10,101,010 samples, 0.02%)</title><rect x="1096.2" y="1093" width="0.3" height="15.0" fill="rgb(225,95,1)" rx="2" ry="2" />
<text x="1099.25" y="1103.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="333.3" y="1061" width="0.2" height="15.0" fill="rgb(221,3,8)" rx="2" ry="2" />
<text x="336.33" y="1071.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.07%)</title><rect x="1144.0" y="1205" width="0.8" height="15.0" fill="rgb(238,194,12)" rx="2" ry="2" />
<text x="1146.96" y="1215.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="965" width="0.2" height="15.0" fill="rgb(237,12,24)" rx="2" ry="2" />
<text x="1022.79" y="975.5" ></text>
</g>
<g >
<title>zend_create_closure (20,202,020 samples, 0.04%)</title><rect x="464.4" y="1109" width="0.4" height="15.0" fill="rgb(223,120,38)" rx="2" ry="2" />
<text x="467.38" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_merge (131,313,130 samples, 0.23%)</title><rect x="964.6" y="1093" width="2.7" height="15.0" fill="rgb(226,6,20)" rx="2" ry="2" />
<text x="967.58" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="654.2" y="949" width="0.2" height="15.0" fill="rgb(214,190,51)" rx="2" ry="2" />
<text x="657.17" y="959.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="476.7" y="1109" width="0.2" height="15.0" fill="rgb(245,215,50)" rx="2" ry="2" />
<text x="479.67" y="1119.5" ></text>
</g>
<g >
<title>do_tcp_setsockopt.isra.44 (10,101,010 samples, 0.02%)</title><rect x="944.2" y="917" width="0.2" height="15.0" fill="rgb(243,96,37)" rx="2" ry="2" />
<text x="947.17" y="927.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="30.2" y="917" width="0.2" height="15.0" fill="rgb(227,54,36)" rx="2" ry="2" />
<text x="33.21" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.26%)</title><rect x="1118.5" y="1189" width="3.2" height="15.0" fill="rgb(240,57,42)" rx="2" ry="2" />
<text x="1121.54" y="1199.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="677" width="1.7" height="15.0" fill="rgb(215,160,16)" rx="2" ry="2" />
<text x="1028.00" y="687.5" ></text>
</g>
<g >
<title>path_lookupat (30,303,030 samples, 0.05%)</title><rect x="533.5" y="917" width="0.7" height="15.0" fill="rgb(233,202,47)" rx="2" ry="2" />
<text x="536.54" y="927.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="730.2" y="965" width="0.2" height="15.0" fill="rgb(243,89,48)" rx="2" ry="2" />
<text x="733.21" y="975.5" ></text>
</g>
<g >
<title>filename_lookup (20,202,020 samples, 0.04%)</title><rect x="500.6" y="933" width="0.4" height="15.0" fill="rgb(240,111,40)" rx="2" ry="2" />
<text x="503.62" y="943.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="482.7" y="1093" width="0.2" height="15.0" fill="rgb(226,187,25)" rx="2" ry="2" />
<text x="485.71" y="1103.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="821" width="0.2" height="15.0" fill="rgb(251,137,14)" rx="2" ry="2" />
<text x="1170.08" y="831.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="518.1" y="1109" width="0.2" height="15.0" fill="rgb(215,71,45)" rx="2" ry="2" />
<text x="521.12" y="1119.5" ></text>
</g>
<g >
<title>php_json_encode_zval (10,101,010 samples, 0.02%)</title><rect x="1046.5" y="1045" width="0.2" height="15.0" fill="rgb(228,182,40)" rx="2" ry="2" />
<text x="1049.46" y="1055.5" ></text>
</g>
<g >
<title>cgi_php_load_env_var (70,707,070 samples, 0.12%)</title><rect x="700.8" y="981" width="1.5" height="15.0" fill="rgb(251,22,19)" rx="2" ry="2" />
<text x="703.83" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1061" width="0.2" height="15.0" fill="rgb(246,45,30)" rx="2" ry="2" />
<text x="445.29" y="1071.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="1187.5" y="725" width="0.2" height="15.0" fill="rgb(211,39,48)" rx="2" ry="2" />
<text x="1190.50" y="735.5" ></text>
</g>
<g >
<title>zend_array_destroy (20,202,020 samples, 0.04%)</title><rect x="970.4" y="1061" width="0.4" height="15.0" fill="rgb(223,109,18)" rx="2" ry="2" />
<text x="973.42" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_LIST_r (10,101,010 samples, 0.02%)</title><rect x="693.5" y="1109" width="0.3" height="15.0" fill="rgb(206,229,51)" rx="2" ry="2" />
<text x="696.54" y="1119.5" ></text>
</g>
<g >
<title>zend_closure_new (10,101,010 samples, 0.02%)</title><rect x="478.1" y="1077" width="0.2" height="15.0" fill="rgb(238,56,25)" rx="2" ry="2" />
<text x="481.12" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_add_new (30,303,030 samples, 0.05%)</title><rect x="488.1" y="1109" width="0.7" height="15.0" fill="rgb(254,7,37)" rx="2" ry="2" />
<text x="491.12" y="1119.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="919.6" y="1109" width="0.2" height="15.0" fill="rgb(218,204,11)" rx="2" ry="2" />
<text x="922.58" y="1119.5" ></text>
</g>
<g >
<title>zend_do_link_class (50,505,050 samples, 0.09%)</title><rect x="686.9" y="997" width="1.0" height="15.0" fill="rgb(208,178,16)" rx="2" ry="2" />
<text x="689.88" y="1007.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="471.7" y="997" width="0.2" height="15.0" fill="rgb(231,36,8)" rx="2" ry="2" />
<text x="474.67" y="1007.5" ></text>
</g>
<g >
<title>TRACE-266$Wikimedia\Rdbms\{closure}$249 (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="1077" width="0.2" height="15.0" fill="rgb(213,157,13)" rx="2" ry="2" />
<text x="1085.08" y="1087.5" ></text>
</g>
<g >
<title>br_pass_frame_up (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="389" width="0.4" height="15.0" fill="rgb(237,128,45)" rx="2" ry="2" />
<text x="1092.58" y="399.5" ></text>
</g>
<g >
<title>zend_accel_load_script@plt (10,101,010 samples, 0.02%)</title><rect x="1013.1" y="997" width="0.2" height="15.0" fill="rgb(232,71,2)" rx="2" ry="2" />
<text x="1016.12" y="1007.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="861.0" y="725" width="0.2" height="15.0" fill="rgb(221,51,29)" rx="2" ry="2" />
<text x="864.04" y="735.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="684.6" y="869" width="0.2" height="15.0" fill="rgb(235,214,1)" rx="2" ry="2" />
<text x="687.58" y="879.5" ></text>
</g>
<g >
<title>apparmor_file_permission (20,202,020 samples, 0.04%)</title><rect x="217.9" y="997" width="0.4" height="15.0" fill="rgb(249,5,43)" rx="2" ry="2" />
<text x="220.92" y="1007.5" ></text>
</g>
<g >
<title>iput (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="805" width="0.3" height="15.0" fill="rgb(235,197,54)" rx="2" ry="2" />
<text x="1091.54" y="815.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1180.2" y="1045" width="0.2" height="15.0" fill="rgb(248,189,29)" rx="2" ry="2" />
<text x="1183.21" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (40,404,040 samples, 0.07%)</title><rect x="608.5" y="1093" width="0.9" height="15.0" fill="rgb(249,61,28)" rx="2" ry="2" />
<text x="611.54" y="1103.5" ></text>
</g>
<g >
<title>lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="776.2" y="837" width="0.3" height="15.0" fill="rgb(246,24,25)" rx="2" ry="2" />
<text x="779.25" y="847.5" ></text>
</g>
<g >
<title>add_function (10,101,010 samples, 0.02%)</title><rect x="493.3" y="1125" width="0.2" height="15.0" fill="rgb(246,188,18)" rx="2" ry="2" />
<text x="496.33" y="1135.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1059.2" y="1077" width="0.2" height="15.0" fill="rgb(235,83,8)" rx="2" ry="2" />
<text x="1062.17" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (50,505,050 samples, 0.09%)</title><rect x="926.2" y="853" width="1.1" height="15.0" fill="rgb(208,13,6)" rx="2" ry="2" />
<text x="929.25" y="863.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="266.0" y="1109" width="0.2" height="15.0" fill="rgb(245,229,46)" rx="2" ry="2" />
<text x="269.04" y="1119.5" ></text>
</g>
<g >
<title>TRACE-252$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$123 (20,202,020 samples, 0.04%)</title><rect x="463.5" y="1141" width="0.5" height="15.0" fill="rgb(213,51,45)" rx="2" ry="2" />
<text x="466.54" y="1151.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="416.9" y="821" width="0.2" height="15.0" fill="rgb(232,221,17)" rx="2" ry="2" />
<text x="419.88" y="831.5" ></text>
</g>
<g >
<title>mysqlnd_read_packet_header_and_body.constprop.0 (80,808,080 samples, 0.14%)</title><rect x="926.2" y="965" width="1.7" height="15.0" fill="rgb(249,62,17)" rx="2" ry="2" />
<text x="929.25" y="975.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="779.8" y="1029" width="0.2" height="15.0" fill="rgb(223,163,0)" rx="2" ry="2" />
<text x="782.79" y="1039.5" ></text>
</g>
<g >
<title>__lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="776.2" y="821" width="0.3" height="15.0" fill="rgb(243,183,41)" rx="2" ry="2" />
<text x="779.25" y="831.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1184.2" y="949" width="0.2" height="15.0" fill="rgb(209,101,12)" rx="2" ry="2" />
<text x="1187.17" y="959.5" ></text>
</g>
<g >
<title>do_bind_class (10,101,010 samples, 0.02%)</title><rect x="677.7" y="757" width="0.2" height="15.0" fill="rgb(245,28,37)" rx="2" ry="2" />
<text x="680.71" y="767.5" ></text>
</g>
<g >
<title>do_bind_class (10,101,010 samples, 0.02%)</title><rect x="754.0" y="981" width="0.2" height="15.0" fill="rgb(240,44,13)" rx="2" ry="2" />
<text x="756.96" y="991.5" ></text>
</g>
<g >
<title>zif_str_getcsv (10,101,010 samples, 0.02%)</title><rect x="1058.8" y="1125" width="0.2" height="15.0" fill="rgb(227,227,29)" rx="2" ry="2" />
<text x="1061.75" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="805.2" y="773" width="0.2" height="15.0" fill="rgb(213,221,14)" rx="2" ry="2" />
<text x="808.21" y="783.5" ></text>
</g>
<g >
<title>ZEND_FAST_CONCAT_SPEC_CONST_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="672.9" y="1125" width="0.2" height="15.0" fill="rgb(242,33,40)" rx="2" ry="2" />
<text x="675.92" y="1135.5" ></text>
</g>
<g >
<title>zm_deactivate_spl (10,101,010 samples, 0.02%)</title><rect x="1101.7" y="1141" width="0.2" height="15.0" fill="rgb(229,160,37)" rx="2" ry="2" />
<text x="1104.67" y="1151.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="842.5" y="805" width="0.2" height="15.0" fill="rgb(223,3,40)" rx="2" ry="2" />
<text x="845.50" y="815.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="492.5" y="1109" width="0.2" height="15.0" fill="rgb(224,119,23)" rx="2" ry="2" />
<text x="495.50" y="1119.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="773" width="0.2" height="15.0" fill="rgb(227,84,44)" rx="2" ry="2" />
<text x="1117.17" y="783.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="1169.2" y="1157" width="0.2" height="15.0" fill="rgb(214,65,0)" rx="2" ry="2" />
<text x="1172.17" y="1167.5" ></text>
</g>
<g >
<title>zend_fetch_function (10,101,010 samples, 0.02%)</title><rect x="1077.5" y="1077" width="0.2" height="15.0" fill="rgb(207,216,38)" rx="2" ry="2" />
<text x="1080.50" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="998.8" y="997" width="0.4" height="15.0" fill="rgb(226,76,17)" rx="2" ry="2" />
<text x="1001.75" y="1007.5" ></text>
</g>
<g >
<title>persistent_compile_file (161,616,160 samples, 0.28%)</title><rect x="803.8" y="869" width="3.3" height="15.0" fill="rgb(230,97,26)" rx="2" ry="2" />
<text x="806.75" y="879.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="524.8" y="965" width="0.2" height="15.0" fill="rgb(224,150,13)" rx="2" ry="2" />
<text x="527.79" y="975.5" ></text>
</g>
<g >
<title>do_bind_class (585,858,580 samples, 1.02%)</title><rect x="733.5" y="1013" width="12.1" height="15.0" fill="rgb(250,214,42)" rx="2" ry="2" />
<text x="736.54" y="1023.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="677" width="0.2" height="15.0" fill="rgb(234,77,1)" rx="2" ry="2" />
<text x="1170.08" y="687.5" ></text>
</g>
<g >
<title>fpm_event_epoll_wait (333,333,330 samples, 0.58%)</title><rect x="211.7" y="1141" width="6.8" height="15.0" fill="rgb(247,119,4)" rx="2" ry="2" />
<text x="214.67" y="1151.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="517.7" y="997" width="0.2" height="15.0" fill="rgb(218,120,28)" rx="2" ry="2" />
<text x="520.71" y="1007.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OP_SPEC_CV_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1031.2" y="981" width="0.3" height="15.0" fill="rgb(217,161,2)" rx="2" ry="2" />
<text x="1034.25" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="933" width="0.2" height="15.0" fill="rgb(216,180,42)" rx="2" ry="2" />
<text x="1015.92" y="943.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (20,202,020 samples, 0.04%)</title><rect x="768.3" y="1045" width="0.5" height="15.0" fill="rgb(243,131,21)" rx="2" ry="2" />
<text x="771.33" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (40,404,040 samples, 0.07%)</title><rect x="290.8" y="1093" width="0.9" height="15.0" fill="rgb(243,99,52)" rx="2" ry="2" />
<text x="293.83" y="1103.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (70,707,070 samples, 0.12%)</title><rect x="269.4" y="1013" width="1.4" height="15.0" fill="rgb(244,142,30)" rx="2" ry="2" />
<text x="272.38" y="1023.5" ></text>
</g>
<g >
<title>TRACE-485$Wikimedia\Rdbms\Database::assertQueryIsCurrentlyAllowed$1602 (10,101,010 samples, 0.02%)</title><rect x="531.0" y="1141" width="0.2" height="15.0" fill="rgb(236,168,32)" rx="2" ry="2" />
<text x="534.04" y="1151.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="676.2" y="949" width="0.3" height="15.0" fill="rgb(218,139,48)" rx="2" ry="2" />
<text x="679.25" y="959.5" ></text>
</g>
<g >
<title>zend_atoi (10,101,010 samples, 0.02%)</title><rect x="1030.4" y="949" width="0.2" height="15.0" fill="rgb(242,184,51)" rx="2" ry="2" />
<text x="1033.42" y="959.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="1029" width="0.2" height="15.0" fill="rgb(228,218,53)" rx="2" ry="2" />
<text x="1085.08" y="1039.5" ></text>
</g>
<g >
<title>common_file_perm (10,101,010 samples, 0.02%)</title><rect x="1037.5" y="949" width="0.2" height="15.0" fill="rgb(217,116,47)" rx="2" ry="2" />
<text x="1040.50" y="959.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1114.0" y="997" width="0.2" height="15.0" fill="rgb(245,29,53)" rx="2" ry="2" />
<text x="1116.96" y="1007.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="998.8" y="981" width="0.4" height="15.0" fill="rgb(218,49,27)" rx="2" ry="2" />
<text x="1001.75" y="991.5" ></text>
</g>
<g >
<title>br_nf_forward_ip (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="549" width="0.4" height="15.0" fill="rgb(243,74,47)" rx="2" ry="2" />
<text x="1035.92" y="559.5" ></text>
</g>
<g >
<title>sock_write_iter (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="965" width="2.7" height="15.0" fill="rgb(222,26,48)" rx="2" ry="2" />
<text x="1026.96" y="975.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="779.4" y="1029" width="0.2" height="15.0" fill="rgb(234,106,1)" rx="2" ry="2" />
<text x="782.38" y="1039.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="422.7" y="917" width="0.2" height="15.0" fill="rgb(236,20,48)" rx="2" ry="2" />
<text x="425.71" y="927.5" ></text>
</g>
<g >
<title>get_vfs_caps_from_disk (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="1045" width="0.2" height="15.0" fill="rgb(235,176,29)" rx="2" ry="2" />
<text x="1124.67" y="1055.5" ></text>
</g>
<g >
<title>fdb_find_rcu (10,101,010 samples, 0.02%)</title><rect x="1187.3" y="709" width="0.2" height="15.0" fill="rgb(254,56,7)" rx="2" ry="2" />
<text x="1190.29" y="719.5" ></text>
</g>
<g >
<title>receive_buf (10,101,010 samples, 0.02%)</title><rect x="782.3" y="853" width="0.2" height="15.0" fill="rgb(211,151,32)" rx="2" ry="2" />
<text x="785.29" y="863.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="309.0" y="1061" width="0.2" height="15.0" fill="rgb(221,12,35)" rx="2" ry="2" />
<text x="311.96" y="1071.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="1013" width="0.2" height="15.0" fill="rgb(210,23,41)" rx="2" ry="2" />
<text x="1022.79" y="1023.5" ></text>
</g>
<g >
<title>zend_array_destroy (50,505,050 samples, 0.09%)</title><rect x="647.5" y="1077" width="1.0" height="15.0" fill="rgb(206,116,50)" rx="2" ry="2" />
<text x="650.50" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1077" width="0.2" height="15.0" fill="rgb(235,2,21)" rx="2" ry="2" />
<text x="550.71" y="1087.5" ></text>
</g>
<g >
<title>TRACE-375$Wikimedia\Rdbms\LoadBalancer::forEachOpenConnection$2330 (10,101,010 samples, 0.02%)</title><rect x="1085.6" y="1077" width="0.2" height="15.0" fill="rgb(217,133,15)" rx="2" ry="2" />
<text x="1088.62" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="913.1" y="853" width="0.2" height="15.0" fill="rgb(229,220,40)" rx="2" ry="2" />
<text x="916.12" y="863.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1109" width="0.2" height="15.0" fill="rgb(250,174,51)" rx="2" ry="2" />
<text x="893.00" y="1119.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="887.7" y="1077" width="0.2" height="15.0" fill="rgb(233,141,11)" rx="2" ry="2" />
<text x="890.71" y="1087.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="471.7" y="885" width="0.2" height="15.0" fill="rgb(217,65,11)" rx="2" ry="2" />
<text x="474.67" y="895.5" ></text>
</g>
<g >
<title>zend_hash_add (20,202,020 samples, 0.04%)</title><rect x="279.8" y="1045" width="0.4" height="15.0" fill="rgb(253,116,24)" rx="2" ry="2" />
<text x="282.79" y="1055.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="927.3" y="869" width="0.2" height="15.0" fill="rgb(229,225,53)" rx="2" ry="2" />
<text x="930.29" y="879.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="869" width="0.2" height="15.0" fill="rgb(230,99,32)" rx="2" ry="2" />
<text x="1127.17" y="879.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="718.3" y="901" width="0.2" height="15.0" fill="rgb(248,14,33)" rx="2" ry="2" />
<text x="721.33" y="911.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (20,202,020 samples, 0.04%)</title><rect x="1001.2" y="1109" width="0.5" height="15.0" fill="rgb(226,132,16)" rx="2" ry="2" />
<text x="1004.25" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (90,909,090 samples, 0.16%)</title><rect x="196.5" y="1093" width="1.8" height="15.0" fill="rgb(237,69,11)" rx="2" ry="2" />
<text x="199.46" y="1103.5" ></text>
</g>
<g >
<title>br_fdb_find_rcu (10,101,010 samples, 0.02%)</title><rect x="982.9" y="725" width="0.2" height="15.0" fill="rgb(210,9,25)" rx="2" ry="2" />
<text x="985.92" y="735.5" ></text>
</g>
<g >
<title>TRACE-502$MWExceptionHandler::getRedactedTrace$436 (90,909,090 samples, 0.16%)</title><rect x="544.0" y="1141" width="1.8" height="15.0" fill="rgb(206,150,29)" rx="2" ry="2" />
<text x="546.96" y="1151.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="718.3" y="757" width="0.2" height="15.0" fill="rgb(215,95,24)" rx="2" ry="2" />
<text x="721.33" y="767.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="901" width="0.2" height="15.0" fill="rgb(219,188,25)" rx="2" ry="2" />
<text x="1086.33" y="911.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="998.8" y="853" width="0.2" height="15.0" fill="rgb(246,105,0)" rx="2" ry="2" />
<text x="1001.75" y="863.5" ></text>
</g>
<g >
<title>napi_consume_skb (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="757" width="0.2" height="15.0" fill="rgb(239,74,29)" rx="2" ry="2" />
<text x="1010.50" y="767.5" ></text>
</g>
<g >
<title>zend_accel_load_script (40,404,040 samples, 0.07%)</title><rect x="1012.3" y="981" width="0.8" height="15.0" fill="rgb(237,222,0)" rx="2" ry="2" />
<text x="1015.29" y="991.5" ></text>
</g>
<g >
<title>php_stream_locate_url_wrapper (10,101,010 samples, 0.02%)</title><rect x="1010.4" y="1029" width="0.2" height="15.0" fill="rgb(215,218,7)" rx="2" ry="2" />
<text x="1013.42" y="1039.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="556.7" y="1141" width="0.2" height="15.0" fill="rgb(241,148,41)" rx="2" ry="2" />
<text x="559.67" y="1151.5" ></text>
</g>
<g >
<title>zendi_smart_strcmp (30,303,030 samples, 0.05%)</title><rect x="513.8" y="1029" width="0.6" height="15.0" fill="rgb(250,155,36)" rx="2" ry="2" />
<text x="516.75" y="1039.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="1009.8" y="949" width="0.2" height="15.0" fill="rgb(222,189,54)" rx="2" ry="2" />
<text x="1012.79" y="959.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="970.6" y="997" width="0.2" height="15.0" fill="rgb(208,107,2)" rx="2" ry="2" />
<text x="973.62" y="1007.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="183.5" y="965" width="0.3" height="15.0" fill="rgb(237,43,54)" rx="2" ry="2" />
<text x="186.54" y="975.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="805.6" y="805" width="0.2" height="15.0" fill="rgb(206,73,10)" rx="2" ry="2" />
<text x="808.62" y="815.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="682.7" y="997" width="0.2" height="15.0" fill="rgb(250,122,21)" rx="2" ry="2" />
<text x="685.71" y="1007.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1045" width="0.2" height="15.0" fill="rgb(205,226,26)" rx="2" ry="2" />
<text x="693.00" y="1055.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="1131.9" y="1141" width="0.2" height="15.0" fill="rgb(223,145,33)" rx="2" ry="2" />
<text x="1134.88" y="1151.5" ></text>
</g>
<g >
<title>mntput (10,101,010 samples, 0.02%)</title><rect x="725.0" y="901" width="0.2" height="15.0" fill="rgb(246,205,5)" rx="2" ry="2" />
<text x="728.00" y="911.5" ></text>
</g>
<g >
<title>sock_alloc_file (30,303,030 samples, 0.05%)</title><rect x="1120.2" y="1125" width="0.6" height="15.0" fill="rgb(209,43,48)" rx="2" ry="2" />
<text x="1123.21" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="689.8" y="1093" width="0.2" height="15.0" fill="rgb(239,182,43)" rx="2" ry="2" />
<text x="692.79" y="1103.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="1141.9" y="1141" width="0.2" height="15.0" fill="rgb(247,143,30)" rx="2" ry="2" />
<text x="1144.88" y="1151.5" ></text>
</g>
<g >
<title>tcp_ack (10,101,010 samples, 0.02%)</title><rect x="524.4" y="677" width="0.2" height="15.0" fill="rgb(252,199,11)" rx="2" ry="2" />
<text x="527.38" y="687.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (30,303,030 samples, 0.05%)</title><rect x="935.6" y="805" width="0.6" height="15.0" fill="rgb(231,204,33)" rx="2" ry="2" />
<text x="938.62" y="815.5" ></text>
</g>
<g >
<title>__seccomp_filter (50,505,050 samples, 0.09%)</title><rect x="434.6" y="1029" width="1.0" height="15.0" fill="rgb(205,153,4)" rx="2" ry="2" />
<text x="437.58" y="1039.5" ></text>
</g>
<g >
<title>zend_accel_load_script (80,808,080 samples, 0.14%)</title><rect x="680.8" y="965" width="1.7" height="15.0" fill="rgb(235,228,19)" rx="2" ry="2" />
<text x="683.83" y="975.5" ></text>
</g>
<g >
<title>php_array_key_compare (20,202,020 samples, 0.04%)</title><rect x="513.1" y="1045" width="0.4" height="15.0" fill="rgb(236,1,11)" rx="2" ry="2" />
<text x="516.12" y="1055.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="927.1" y="805" width="0.2" height="15.0" fill="rgb(222,228,26)" rx="2" ry="2" />
<text x="930.08" y="815.5" ></text>
</g>
<g >
<title>inet_recvmsg (141,414,140 samples, 0.25%)</title><rect x="1177.1" y="1125" width="2.9" height="15.0" fill="rgb(224,62,53)" rx="2" ry="2" />
<text x="1180.08" y="1135.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (20,202,020 samples, 0.04%)</title><rect x="1157.9" y="389" width="0.4" height="15.0" fill="rgb(227,85,11)" rx="2" ry="2" />
<text x="1160.92" y="399.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="539.4" y="965" width="0.2" height="15.0" fill="rgb(248,36,33)" rx="2" ry="2" />
<text x="542.38" y="975.5" ></text>
</g>
<g >
<title>lockref_get (30,303,030 samples, 0.05%)</title><rect x="418.5" y="949" width="0.7" height="15.0" fill="rgb(228,97,48)" rx="2" ry="2" />
<text x="421.54" y="959.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1084.6" y="1061" width="0.2" height="15.0" fill="rgb(252,114,43)" rx="2" ry="2" />
<text x="1087.58" y="1071.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="753.5" y="949" width="0.5" height="15.0" fill="rgb(230,2,42)" rx="2" ry="2" />
<text x="756.54" y="959.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (101,010,100 samples, 0.18%)</title><rect x="986.5" y="1109" width="2.0" height="15.0" fill="rgb(243,197,40)" rx="2" ry="2" />
<text x="989.46" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="861.0" y="693" width="0.2" height="15.0" fill="rgb(241,90,46)" rx="2" ry="2" />
<text x="864.04" y="703.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="757" width="0.2" height="15.0" fill="rgb(233,61,17)" rx="2" ry="2" />
<text x="1170.08" y="767.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="107.3" y="1029" width="0.2" height="15.0" fill="rgb(226,171,44)" rx="2" ry="2" />
<text x="110.29" y="1039.5" ></text>
</g>
<g >
<title>ip_output (131,313,130 samples, 0.23%)</title><rect x="1127.5" y="533" width="2.7" height="15.0" fill="rgb(246,32,28)" rx="2" ry="2" />
<text x="1130.50" y="543.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="524.0" y="949" width="0.4" height="15.0" fill="rgb(252,71,49)" rx="2" ry="2" />
<text x="526.96" y="959.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="890.0" y="933" width="0.2" height="15.0" fill="rgb(252,78,26)" rx="2" ry="2" />
<text x="893.00" y="943.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="539.4" y="613" width="0.2" height="15.0" fill="rgb(227,189,2)" rx="2" ry="2" />
<text x="542.38" y="623.5" ></text>
</g>
<g >
<title>preg_replace_common (80,808,080 samples, 0.14%)</title><rect x="959.6" y="1125" width="1.6" height="15.0" fill="rgb(231,218,7)" rx="2" ry="2" />
<text x="962.58" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="395.4" y="869" width="0.2" height="15.0" fill="rgb(218,76,9)" rx="2" ry="2" />
<text x="398.42" y="879.5" ></text>
</g>
<g >
<title>skb_release_all (10,101,010 samples, 0.02%)</title><rect x="682.1" y="645" width="0.2" height="15.0" fill="rgb(229,202,22)" rx="2" ry="2" />
<text x="685.08" y="655.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="922.5" y="805" width="0.2" height="15.0" fill="rgb(213,124,30)" rx="2" ry="2" />
<text x="925.50" y="815.5" ></text>
</g>
<g >
<title>virtqueue_get_buf_ctx (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1077" width="0.2" height="15.0" fill="rgb(214,12,30)" rx="2" ry="2" />
<text x="27.17" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="949" width="0.2" height="15.0" fill="rgb(238,109,9)" rx="2" ry="2" />
<text x="1170.08" y="959.5" ></text>
</g>
<g >
<title>inet_release (80,808,080 samples, 0.14%)</title><rect x="1089.0" y="821" width="1.6" height="15.0" fill="rgb(241,149,27)" rx="2" ry="2" />
<text x="1091.96" y="831.5" ></text>
</g>
<g >
<title>zend_std_write_property (10,101,010 samples, 0.02%)</title><rect x="629.0" y="1109" width="0.2" height="15.0" fill="rgb(205,191,0)" rx="2" ry="2" />
<text x="631.96" y="1119.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="416.9" y="805" width="0.2" height="15.0" fill="rgb(208,36,30)" rx="2" ry="2" />
<text x="419.88" y="815.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1045" width="0.2" height="15.0" fill="rgb(225,40,38)" rx="2" ry="2" />
<text x="1118.42" y="1055.5" ></text>
</g>
<g >
<title>TRACE-152$Wikimedia\Services\ServiceContainer::loadWiringFiles$125 (101,010,100 samples, 0.18%)</title><rect x="280.4" y="1141" width="2.1" height="15.0" fill="rgb(245,144,22)" rx="2" ry="2" />
<text x="283.42" y="1151.5" ></text>
</g>
<g >
<title>mntget (10,101,010 samples, 0.02%)</title><rect x="912.7" y="901" width="0.2" height="15.0" fill="rgb(209,133,11)" rx="2" ry="2" />
<text x="915.71" y="911.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="933" width="0.2" height="15.0" fill="rgb(224,178,41)" rx="2" ry="2" />
<text x="1091.33" y="943.5" ></text>
</g>
<g >
<title>zif_date_default_timezone_get (20,202,020 samples, 0.04%)</title><rect x="487.1" y="1125" width="0.4" height="15.0" fill="rgb(254,205,42)" rx="2" ry="2" />
<text x="490.08" y="1135.5" ></text>
</g>
<g >
<title>ovl_permission (10,101,010 samples, 0.02%)</title><rect x="500.6" y="885" width="0.2" height="15.0" fill="rgb(213,149,54)" rx="2" ry="2" />
<text x="503.62" y="895.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1077" width="0.3" height="15.0" fill="rgb(224,3,38)" rx="2" ry="2" />
<text x="699.25" y="1087.5" ></text>
</g>
<g >
<title>__xmlParserInputBufferCreateFilenameValue@plt (10,101,010 samples, 0.02%)</title><rect x="1104.8" y="1141" width="0.2" height="15.0" fill="rgb(221,129,50)" rx="2" ry="2" />
<text x="1107.79" y="1151.5" ></text>
</g>
<g >
<title>mntput (10,101,010 samples, 0.02%)</title><rect x="725.2" y="885" width="0.2" height="15.0" fill="rgb(240,202,47)" rx="2" ry="2" />
<text x="728.21" y="895.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="1184.2" y="965" width="0.2" height="15.0" fill="rgb(215,128,28)" rx="2" ry="2" />
<text x="1187.17" y="975.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="922.5" y="773" width="0.2" height="15.0" fill="rgb(211,10,7)" rx="2" ry="2" />
<text x="925.50" y="783.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="501.2" y="933" width="0.3" height="15.0" fill="rgb(241,152,34)" rx="2" ry="2" />
<text x="504.25" y="943.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="30.2" y="821" width="0.2" height="15.0" fill="rgb(210,48,40)" rx="2" ry="2" />
<text x="33.21" y="831.5" ></text>
</g>
<g >
<title>ext4_get_inode_loc (10,101,010 samples, 0.02%)</title><rect x="957.1" y="773" width="0.2" height="15.0" fill="rgb(226,50,3)" rx="2" ry="2" />
<text x="960.08" y="783.5" ></text>
</g>
<g >
<title>virtqueue_get_buf (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1093" width="0.2" height="15.0" fill="rgb(214,183,26)" rx="2" ry="2" />
<text x="27.17" y="1103.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1189.6" y="1157" width="0.2" height="15.0" fill="rgb(205,215,53)" rx="2" ry="2" />
<text x="1192.58" y="1167.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="30.4" y="997" width="0.2" height="15.0" fill="rgb(219,156,22)" rx="2" ry="2" />
<text x="33.42" y="1007.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_IS_SPEC_CV_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="689.2" y="1125" width="0.8" height="15.0" fill="rgb(216,143,32)" rx="2" ry="2" />
<text x="692.17" y="1135.5" ></text>
</g>
<g >
<title>multadd (10,101,010 samples, 0.02%)</title><rect x="1139.6" y="1125" width="0.2" height="15.0" fill="rgb(217,114,13)" rx="2" ry="2" />
<text x="1142.58" y="1135.5" ></text>
</g>
<g >
<title>chdir (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1157" width="0.2" height="15.0" fill="rgb(234,133,25)" rx="2" ry="2" />
<text x="221.75" y="1167.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="183.8" y="933" width="0.2" height="15.0" fill="rgb(214,8,20)" rx="2" ry="2" />
<text x="186.75" y="943.5" ></text>
</g>
<g >
<title>zend_call_function (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1109" width="0.3" height="15.0" fill="rgb(230,21,21)" rx="2" ry="2" />
<text x="499.25" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="106.9" y="1029" width="0.2" height="15.0" fill="rgb(232,123,1)" rx="2" ry="2" />
<text x="109.88" y="1039.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="672.5" y="1045" width="0.2" height="15.0" fill="rgb(234,120,23)" rx="2" ry="2" />
<text x="675.50" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="709" width="0.4" height="15.0" fill="rgb(248,216,19)" rx="2" ry="2" />
<text x="1035.92" y="719.5" ></text>
</g>
<g >
<title>zend_init_func_execute_data (20,202,020 samples, 0.04%)</title><rect x="867.5" y="901" width="0.4" height="15.0" fill="rgb(252,101,36)" rx="2" ry="2" />
<text x="870.50" y="911.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="501" width="0.2" height="15.0" fill="rgb(213,30,46)" rx="2" ry="2" />
<text x="1085.08" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_access (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="869" width="0.2" height="15.0" fill="rgb(232,108,15)" rx="2" ry="2" />
<text x="1021.96" y="879.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="904.0" y="773" width="0.2" height="15.0" fill="rgb(251,99,53)" rx="2" ry="2" />
<text x="906.96" y="783.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="982.9" y="757" width="0.2" height="15.0" fill="rgb(227,39,29)" rx="2" ry="2" />
<text x="985.92" y="767.5" ></text>
</g>
<g >
<title>nf_confirm (10,101,010 samples, 0.02%)</title><rect x="1187.9" y="949" width="0.2" height="15.0" fill="rgb(240,21,28)" rx="2" ry="2" />
<text x="1190.92" y="959.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1061" width="0.2" height="15.0" fill="rgb(212,199,10)" rx="2" ry="2" />
<text x="1095.08" y="1071.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="521.0" y="1109" width="0.2" height="15.0" fill="rgb(243,223,27)" rx="2" ry="2" />
<text x="524.04" y="1119.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="245.8" y="1093" width="0.2" height="15.0" fill="rgb(230,10,18)" rx="2" ry="2" />
<text x="248.83" y="1103.5" ></text>
</g>
<g >
<title>zend_vstrpprintf (10,101,010 samples, 0.02%)</title><rect x="888.5" y="1093" width="0.3" height="15.0" fill="rgb(248,192,44)" rx="2" ry="2" />
<text x="891.54" y="1103.5" ></text>
</g>
<g >
<title>__dentry_kill (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="837" width="0.3" height="15.0" fill="rgb(228,136,14)" rx="2" ry="2" />
<text x="1091.54" y="847.5" ></text>
</g>
<g >
<title>zendi_smart_strcmp (40,404,040 samples, 0.07%)</title><rect x="514.4" y="1013" width="0.8" height="15.0" fill="rgb(226,177,9)" rx="2" ry="2" />
<text x="517.38" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1093" width="0.2" height="15.0" fill="rgb(220,136,17)" rx="2" ry="2" />
<text x="1118.62" y="1103.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="1061.9" y="1061" width="0.2" height="15.0" fill="rgb(208,96,2)" rx="2" ry="2" />
<text x="1064.88" y="1071.5" ></text>
</g>
<g >
<title>ZEND_END_SILENCE_SPEC_TMP_HANDLER (40,404,040 samples, 0.07%)</title><rect x="550.4" y="1141" width="0.8" height="15.0" fill="rgb(238,99,48)" rx="2" ry="2" />
<text x="553.42" y="1151.5" ></text>
</g>
<g >
<title>realloc (10,101,010 samples, 0.02%)</title><rect x="1174.6" y="1221" width="0.2" height="15.0" fill="rgb(229,180,42)" rx="2" ry="2" />
<text x="1177.58" y="1231.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="967.1" y="949" width="0.2" height="15.0" fill="rgb(235,190,6)" rx="2" ry="2" />
<text x="970.08" y="959.5" ></text>
</g>
<g >
<title>zend_reference_destroy (10,101,010 samples, 0.02%)</title><rect x="990.0" y="1093" width="0.2" height="15.0" fill="rgb(244,29,33)" rx="2" ry="2" />
<text x="993.00" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="676.2" y="1029" width="0.3" height="15.0" fill="rgb(235,205,0)" rx="2" ry="2" />
<text x="679.25" y="1039.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="837" width="0.2" height="15.0" fill="rgb(212,192,47)" rx="2" ry="2" />
<text x="1090.50" y="847.5" ></text>
</g>
<g >
<title>security_prepare_creds (10,101,010 samples, 0.02%)</title><rect x="900.2" y="1029" width="0.2" height="15.0" fill="rgb(218,172,7)" rx="2" ry="2" />
<text x="903.21" y="1039.5" ></text>
</g>
<g >
<title>phar_filemtime (10,101,010 samples, 0.02%)</title><rect x="360.2" y="1125" width="0.2" height="15.0" fill="rgb(231,72,39)" rx="2" ry="2" />
<text x="363.21" y="1135.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (80,808,080 samples, 0.14%)</title><rect x="1035.2" y="933" width="1.7" height="15.0" fill="rgb(252,83,9)" rx="2" ry="2" />
<text x="1038.21" y="943.5" ></text>
</g>
<g >
<title>ext4_getattr (70,707,070 samples, 0.12%)</title><rect x="425.8" y="965" width="1.5" height="15.0" fill="rgb(235,111,20)" rx="2" ry="2" />
<text x="428.83" y="975.5" ></text>
</g>
<g >
<title>compile_filename (161,616,160 samples, 0.28%)</title><rect x="803.8" y="885" width="3.3" height="15.0" fill="rgb(215,95,18)" rx="2" ry="2" />
<text x="806.75" y="895.5" ></text>
</g>
<g >
<title>TRACE-252$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$123 (10,101,010 samples, 0.02%)</title><rect x="1081.9" y="1077" width="0.2" height="15.0" fill="rgb(223,213,33)" rx="2" ry="2" />
<text x="1084.88" y="1087.5" ></text>
</g>
<g >
<title>__x64_sys_write (70,707,070 samples, 0.12%)</title><rect x="213.3" y="1045" width="1.5" height="15.0" fill="rgb(227,95,6)" rx="2" ry="2" />
<text x="216.33" y="1055.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="1013" width="0.2" height="15.0" fill="rgb(207,15,34)" rx="2" ry="2" />
<text x="1117.17" y="1023.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="1026.7" y="1045" width="0.2" height="15.0" fill="rgb(210,96,15)" rx="2" ry="2" />
<text x="1029.67" y="1055.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="857.1" y="741" width="0.2" height="15.0" fill="rgb(252,228,45)" rx="2" ry="2" />
<text x="860.08" y="751.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="465.6" y="1093" width="0.2" height="15.0" fill="rgb(244,131,43)" rx="2" ry="2" />
<text x="468.62" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (30,303,030 samples, 0.05%)</title><rect x="1129.6" y="517" width="0.6" height="15.0" fill="rgb(227,102,49)" rx="2" ry="2" />
<text x="1132.58" y="527.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="379.4" y="965" width="0.2" height="15.0" fill="rgb(235,216,24)" rx="2" ry="2" />
<text x="382.38" y="975.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (323,232,320 samples, 0.56%)</title><rect x="273.5" y="1125" width="6.7" height="15.0" fill="rgb(207,170,51)" rx="2" ry="2" />
<text x="276.54" y="1135.5" ></text>
</g>
<g >
<title>do_interface_implementation (10,101,010 samples, 0.02%)</title><rect x="302.5" y="869" width="0.2" height="15.0" fill="rgb(210,151,41)" rx="2" ry="2" />
<text x="305.50" y="879.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="477.9" y="1125" width="0.4" height="15.0" fill="rgb(233,19,50)" rx="2" ry="2" />
<text x="480.92" y="1135.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (10,101,010 samples, 0.02%)</title><rect x="244.0" y="789" width="0.2" height="15.0" fill="rgb(231,197,47)" rx="2" ry="2" />
<text x="246.96" y="799.5" ></text>
</g>
<g >
<title>__close (10,101,010 samples, 0.02%)</title><rect x="947.9" y="1077" width="0.2" height="15.0" fill="rgb(231,59,2)" rx="2" ry="2" />
<text x="950.92" y="1087.5" ></text>
</g>
<g >
<title>zif_array_merge (101,010,100 samples, 0.18%)</title><rect x="999.2" y="1125" width="2.0" height="15.0" fill="rgb(209,125,54)" rx="2" ry="2" />
<text x="1002.17" y="1135.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="350.0" y="1045" width="0.4" height="15.0" fill="rgb(213,131,53)" rx="2" ry="2" />
<text x="353.00" y="1055.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="914.6" y="949" width="0.2" height="15.0" fill="rgb(239,44,6)" rx="2" ry="2" />
<text x="917.58" y="959.5" ></text>
</g>
<g >
<title>php_json_encode_array (90,909,090 samples, 0.16%)</title><rect x="1045.8" y="1061" width="1.9" height="15.0" fill="rgb(253,107,24)" rx="2" ry="2" />
<text x="1048.83" y="1071.5" ></text>
</g>
<g >
<title>br_handle_frame (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="677" width="0.4" height="15.0" fill="rgb(234,224,48)" rx="2" ry="2" />
<text x="1035.92" y="687.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="416.9" y="933" width="0.2" height="15.0" fill="rgb(236,220,31)" rx="2" ry="2" />
<text x="419.88" y="943.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (161,616,160 samples, 0.28%)</title><rect x="10.2" y="1221" width="3.3" height="15.0" fill="rgb(223,216,31)" rx="2" ry="2" />
<text x="13.21" y="1231.5" ></text>
</g>
<g >
<title>spl_perform_autoload (161,616,160 samples, 0.28%)</title><rect x="532.3" y="1077" width="3.3" height="15.0" fill="rgb(219,91,32)" rx="2" ry="2" />
<text x="535.29" y="1087.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="533.1" y="933" width="0.2" height="15.0" fill="rgb(214,175,17)" rx="2" ry="2" />
<text x="536.12" y="943.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="1061" width="0.2" height="15.0" fill="rgb(239,228,1)" rx="2" ry="2" />
<text x="1090.50" y="1071.5" ></text>
</g>
<g >
<title>zif_explode (10,101,010 samples, 0.02%)</title><rect x="350.8" y="1125" width="0.2" height="15.0" fill="rgb(244,156,3)" rx="2" ry="2" />
<text x="353.83" y="1135.5" ></text>
</g>
<g >
<title>zend_file_handle_dtor (10,101,010 samples, 0.02%)</title><rect x="864.6" y="853" width="0.2" height="15.0" fill="rgb(217,165,42)" rx="2" ry="2" />
<text x="867.58" y="863.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="1087.7" y="1061" width="0.2" height="15.0" fill="rgb(221,173,50)" rx="2" ry="2" />
<text x="1090.71" y="1071.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (10,101,010 samples, 0.02%)</title><rect x="913.1" y="693" width="0.2" height="15.0" fill="rgb(212,102,20)" rx="2" ry="2" />
<text x="916.12" y="703.5" ></text>
</g>
<g >
<title>TRACE-178$RequestContext::getMain$485 (10,101,010 samples, 0.02%)</title><rect x="314.8" y="1141" width="0.2" height="15.0" fill="rgb(217,72,2)" rx="2" ry="2" />
<text x="317.79" y="1151.5" ></text>
</g>
<g >
<title>__x64_sys_access (20,202,020 samples, 0.04%)</title><rect x="500.6" y="981" width="0.4" height="15.0" fill="rgb(229,43,19)" rx="2" ry="2" />
<text x="503.62" y="991.5" ></text>
</g>
<g >
<title>TRACE-247$Wikimedia\Rdbms\{closure}$250 (10,101,010 samples, 0.02%)</title><rect x="462.7" y="1141" width="0.2" height="15.0" fill="rgb(250,155,16)" rx="2" ry="2" />
<text x="465.71" y="1151.5" ></text>
</g>
<g >
<title>ip_finish_output2 (101,010,100 samples, 0.18%)</title><rect x="1127.5" y="485" width="2.1" height="15.0" fill="rgb(252,4,22)" rx="2" ry="2" />
<text x="1130.50" y="495.5" ></text>
</g>
<g >
<title>zend_parse_parameters (10,101,010 samples, 0.02%)</title><rect x="1059.8" y="1109" width="0.2" height="15.0" fill="rgb(209,16,38)" rx="2" ry="2" />
<text x="1062.79" y="1119.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (30,303,030 samples, 0.05%)</title><rect x="1181.2" y="1157" width="0.7" height="15.0" fill="rgb(232,21,14)" rx="2" ry="2" />
<text x="1184.25" y="1167.5" ></text>
</g>
<g >
<title>mysqlnd_read_header (80,808,080 samples, 0.14%)</title><rect x="926.2" y="949" width="1.7" height="15.0" fill="rgb(240,1,43)" rx="2" ry="2" />
<text x="929.25" y="959.5" ></text>
</g>
<g >
<title>zend_call_known_function (151,515,150 samples, 0.26%)</title><rect x="267.9" y="1029" width="3.1" height="15.0" fill="rgb(220,51,45)" rx="2" ry="2" />
<text x="270.92" y="1039.5" ></text>
</g>
<g >
<title>mmput (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1109" width="0.2" height="15.0" fill="rgb(218,194,33)" rx="2" ry="2" />
<text x="1175.08" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (373,737,370 samples, 0.65%)</title><rect x="1110.2" y="1189" width="7.7" height="15.0" fill="rgb(220,117,42)" rx="2" ry="2" />
<text x="1113.21" y="1199.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="339.6" y="997" width="0.2" height="15.0" fill="rgb(233,33,34)" rx="2" ry="2" />
<text x="342.58" y="1007.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="284.6" y="1125" width="0.2" height="15.0" fill="rgb(228,142,25)" rx="2" ry="2" />
<text x="287.58" y="1135.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="850.6" y="373" width="0.2" height="15.0" fill="rgb(235,47,48)" rx="2" ry="2" />
<text x="853.62" y="383.5" ></text>
</g>
<g >
<title>zif_explode (20,202,020 samples, 0.04%)</title><rect x="1031.7" y="981" width="0.4" height="15.0" fill="rgb(232,89,21)" rx="2" ry="2" />
<text x="1034.67" y="991.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="249.2" y="1077" width="0.2" height="15.0" fill="rgb(229,79,6)" rx="2" ry="2" />
<text x="252.17" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (494,949,490 samples, 0.87%)</title><rect x="1152.1" y="613" width="10.2" height="15.0" fill="rgb(235,51,31)" rx="2" ry="2" />
<text x="1155.08" y="623.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="1089.6" y="53" width="0.2" height="15.0" fill="rgb(244,191,12)" rx="2" ry="2" />
<text x="1092.58" y="63.5" ></text>
</g>
<g >
<title>parse_iv2 (60,606,060 samples, 0.11%)</title><rect x="144.0" y="1077" width="1.2" height="15.0" fill="rgb(232,76,45)" rx="2" ry="2" />
<text x="146.96" y="1087.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (828,282,820 samples, 1.45%)</title><rect x="1149.2" y="997" width="17.0" height="15.0" fill="rgb(229,33,27)" rx="2" ry="2" />
<text x="1152.17" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_add_new (101,010,100 samples, 0.18%)</title><rect x="762.9" y="1061" width="2.1" height="15.0" fill="rgb(231,163,47)" rx="2" ry="2" />
<text x="765.92" y="1071.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="1122.7" y="1205" width="0.2" height="15.0" fill="rgb(253,76,15)" rx="2" ry="2" />
<text x="1125.71" y="1215.5" ></text>
</g>
<g >
<title>virtqueue_get_buf (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="709" width="0.2" height="15.0" fill="rgb(222,79,38)" rx="2" ry="2" />
<text x="1056.33" y="719.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="523.1" y="1045" width="0.2" height="15.0" fill="rgb(251,194,22)" rx="2" ry="2" />
<text x="526.12" y="1055.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="338.5" y="1109" width="0.3" height="15.0" fill="rgb(235,115,45)" rx="2" ry="2" />
<text x="341.54" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_static_prop_helper_SPEC (80,808,080 samples, 0.14%)</title><rect x="342.1" y="1125" width="1.7" height="15.0" fill="rgb(221,205,27)" rx="2" ry="2" />
<text x="345.08" y="1135.5" ></text>
</g>
<g >
<title>TRACE-143$ExtensionRegistry::exportExtractedData$491 (70,707,070 samples, 0.12%)</title><rect x="249.4" y="1141" width="1.4" height="15.0" fill="rgb(247,195,24)" rx="2" ry="2" />
<text x="252.38" y="1151.5" ></text>
</g>
<g >
<title>ip_sabotage_in (484,848,480 samples, 0.85%)</title><rect x="1152.3" y="565" width="10.0" height="15.0" fill="rgb(208,35,9)" rx="2" ry="2" />
<text x="1155.29" y="575.5" ></text>
</g>
<g >
<title>zlog_stream_buf_append (10,101,010 samples, 0.02%)</title><rect x="212.9" y="1109" width="0.2" height="15.0" fill="rgb(230,93,1)" rx="2" ry="2" />
<text x="215.92" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="981" width="0.2" height="15.0" fill="rgb(216,82,28)" rx="2" ry="2" />
<text x="1117.17" y="991.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_res_meta_read_metadata_pub (10,101,010 samples, 0.02%)</title><rect x="1052.1" y="1061" width="0.2" height="15.0" fill="rgb(242,205,49)" rx="2" ry="2" />
<text x="1055.08" y="1071.5" ></text>
</g>
<g >
<title>TRACE-340$Fandom\Includes\Database\FandomLoadBalancer::__construct$31 (10,101,010 samples, 0.02%)</title><rect x="494.0" y="1141" width="0.2" height="15.0" fill="rgb(238,90,0)" rx="2" ry="2" />
<text x="496.96" y="1151.5" ></text>
</g>
<g >
<title>fdb_find_rcu (10,101,010 samples, 0.02%)</title><rect x="718.3" y="693" width="0.2" height="15.0" fill="rgb(243,137,24)" rx="2" ry="2" />
<text x="721.33" y="703.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="782.3" y="949" width="0.2" height="15.0" fill="rgb(251,191,32)" rx="2" ry="2" />
<text x="785.29" y="959.5" ></text>
</g>
<g >
<title>aa_sock_msg_perm (20,202,020 samples, 0.04%)</title><rect x="1168.3" y="1093" width="0.5" height="15.0" fill="rgb(240,190,0)" rx="2" ry="2" />
<text x="1171.33" y="1103.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (313,131,310 samples, 0.55%)</title><rect x="816.2" y="949" width="6.5" height="15.0" fill="rgb(251,45,1)" rx="2" ry="2" />
<text x="819.25" y="959.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (10,101,010 samples, 0.02%)</title><rect x="1077.9" y="1077" width="0.2" height="15.0" fill="rgb(225,168,22)" rx="2" ry="2" />
<text x="1080.92" y="1087.5" ></text>
</g>
<g >
<title>zend_try_early_bind (60,606,060 samples, 0.11%)</title><rect x="880.6" y="933" width="1.3" height="15.0" fill="rgb(244,89,22)" rx="2" ry="2" />
<text x="883.62" y="943.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="193.8" y="965" width="0.2" height="15.0" fill="rgb(254,101,2)" rx="2" ry="2" />
<text x="196.75" y="975.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="244.4" y="1061" width="0.2" height="15.0" fill="rgb(247,76,35)" rx="2" ry="2" />
<text x="247.38" y="1071.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (20,202,020 samples, 0.04%)</title><rect x="1018.3" y="933" width="0.5" height="15.0" fill="rgb(247,10,14)" rx="2" ry="2" />
<text x="1021.33" y="943.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="905.0" y="1045" width="0.2" height="15.0" fill="rgb(205,91,13)" rx="2" ry="2" />
<text x="908.00" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="520.2" y="1093" width="0.2" height="15.0" fill="rgb(247,20,19)" rx="2" ry="2" />
<text x="523.21" y="1103.5" ></text>
</g>
<g >
<title>TRACE-291$Wikimedia\Rdbms\LBFactory::executePostTransactionCallbacks$362 (10,101,010 samples, 0.02%)</title><rect x="477.7" y="1141" width="0.2" height="15.0" fill="rgb(218,206,4)" rx="2" ry="2" />
<text x="480.71" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="947.9" y="1045" width="0.2" height="15.0" fill="rgb(221,164,10)" rx="2" ry="2" />
<text x="950.92" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="1051.0" y="1093" width="0.5" height="15.0" fill="rgb(247,49,0)" rx="2" ry="2" />
<text x="1054.04" y="1103.5" ></text>
</g>
<g >
<title>zval_ptr_dtor (10,101,010 samples, 0.02%)</title><rect x="1143.3" y="1205" width="0.2" height="15.0" fill="rgb(220,30,23)" rx="2" ry="2" />
<text x="1146.33" y="1215.5" ></text>
</g>
<g >
<title>zend_array_destroy (80,808,080 samples, 0.14%)</title><rect x="988.5" y="1109" width="1.7" height="15.0" fill="rgb(243,205,6)" rx="2" ry="2" />
<text x="991.54" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INIT_DYNAMIC_CALL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="267.3" y="1125" width="0.4" height="15.0" fill="rgb(230,154,52)" rx="2" ry="2" />
<text x="270.29" y="1135.5" ></text>
</g>
<g >
<title>__vfs_getxattr (20,202,020 samples, 0.04%)</title><rect x="956.9" y="933" width="0.4" height="15.0" fill="rgb(207,106,0)" rx="2" ry="2" />
<text x="959.88" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="524.4" y="821" width="0.2" height="15.0" fill="rgb(205,75,39)" rx="2" ry="2" />
<text x="527.38" y="831.5" ></text>
</g>
<g >
<title>_emalloc_320 (101,010,100 samples, 0.18%)</title><rect x="132.3" y="1077" width="2.1" height="15.0" fill="rgb(214,219,22)" rx="2" ry="2" />
<text x="135.29" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1077.9" y="1045" width="0.2" height="15.0" fill="rgb(228,132,5)" rx="2" ry="2" />
<text x="1080.92" y="1055.5" ></text>
</g>
<g >
<title>vfs_getattr_nosec (70,707,070 samples, 0.12%)</title><rect x="425.8" y="997" width="1.5" height="15.0" fill="rgb(238,5,9)" rx="2" ry="2" />
<text x="428.83" y="1007.5" ></text>
</g>
<g >
<title>zm_deactivate_mysqli (10,101,010 samples, 0.02%)</title><rect x="1102.3" y="1157" width="0.2" height="15.0" fill="rgb(235,99,37)" rx="2" ry="2" />
<text x="1105.29" y="1167.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="30.2" y="757" width="0.2" height="15.0" fill="rgb(223,218,15)" rx="2" ry="2" />
<text x="33.21" y="767.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="887.3" y="1061" width="0.2" height="15.0" fill="rgb(213,128,6)" rx="2" ry="2" />
<text x="890.29" y="1071.5" ></text>
</g>
<g >
<title>ap_php_slprintf (10,101,010 samples, 0.02%)</title><rect x="480.0" y="1029" width="0.2" height="15.0" fill="rgb(254,211,30)" rx="2" ry="2" />
<text x="483.00" y="1039.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="754.6" y="1125" width="0.8" height="15.0" fill="rgb(226,46,23)" rx="2" ry="2" />
<text x="757.58" y="1135.5" ></text>
</g>
<g >
<title>zif_round (10,101,010 samples, 0.02%)</title><rect x="1057.5" y="1125" width="0.2" height="15.0" fill="rgb(224,174,3)" rx="2" ry="2" />
<text x="1060.50" y="1135.5" ></text>
</g>
<g >
<title>__x64_sys_close (10,101,010 samples, 0.02%)</title><rect x="1086.0" y="981" width="0.2" height="15.0" fill="rgb(254,99,28)" rx="2" ry="2" />
<text x="1089.04" y="991.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="245.8" y="1061" width="0.2" height="15.0" fill="rgb(251,80,16)" rx="2" ry="2" />
<text x="248.83" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_newfstat (10,101,010 samples, 0.02%)</title><rect x="948.3" y="997" width="0.2" height="15.0" fill="rgb(222,156,5)" rx="2" ry="2" />
<text x="951.33" y="1007.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="805.2" y="789" width="0.2" height="15.0" fill="rgb(217,216,11)" rx="2" ry="2" />
<text x="808.21" y="799.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="924.8" y="933" width="0.2" height="15.0" fill="rgb(226,177,5)" rx="2" ry="2" />
<text x="927.79" y="943.5" ></text>
</g>
<g >
<title>zend_hash_destroy (10,101,010 samples, 0.02%)</title><rect x="1101.2" y="1125" width="0.3" height="15.0" fill="rgb(214,91,26)" rx="2" ry="2" />
<text x="1104.25" y="1135.5" ></text>
</g>
<g >
<title>zend_accel_load_script (101,010,100 samples, 0.18%)</title><rect x="861.5" y="837" width="2.0" height="15.0" fill="rgb(223,218,49)" rx="2" ry="2" />
<text x="864.46" y="847.5" ></text>
</g>
<g >
<title>__send (1,313,131,300 samples, 2.30%)</title><rect x="1144.8" y="1221" width="27.1" height="15.0" fill="rgb(254,111,18)" rx="2" ry="2" />
<text x="1147.79" y="1231.5" >_..</text>
</g>
<g >
<title>sk_reset_timer (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="709" width="0.2" height="15.0" fill="rgb(213,79,29)" rx="2" ry="2" />
<text x="1091.96" y="719.5" ></text>
</g>
<g >
<title>compile_filename (585,858,580 samples, 1.02%)</title><rect x="852.7" y="869" width="12.1" height="15.0" fill="rgb(209,195,53)" rx="2" ry="2" />
<text x="855.71" y="879.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="857.1" y="789" width="0.2" height="15.0" fill="rgb(237,175,18)" rx="2" ry="2" />
<text x="860.08" y="799.5" ></text>
</g>
<g >
<title>__poll (60,606,060 samples, 0.11%)</title><rect x="926.2" y="885" width="1.3" height="15.0" fill="rgb(211,103,54)" rx="2" ry="2" />
<text x="929.25" y="895.5" ></text>
</g>
<g >
<title>__getblk_gfp (10,101,010 samples, 0.02%)</title><rect x="957.1" y="741" width="0.2" height="15.0" fill="rgb(223,184,17)" rx="2" ry="2" />
<text x="960.08" y="751.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="517.3" y="1109" width="0.2" height="15.0" fill="rgb(231,205,8)" rx="2" ry="2" />
<text x="520.29" y="1119.5" ></text>
</g>
<g >
<title>zend_include_or_eval (40,404,040 samples, 0.07%)</title><rect x="683.8" y="981" width="0.8" height="15.0" fill="rgb(252,88,21)" rx="2" ry="2" />
<text x="686.75" y="991.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="973.3" y="917" width="0.2" height="15.0" fill="rgb(229,218,17)" rx="2" ry="2" />
<text x="976.33" y="927.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1100.8" y="1125" width="0.2" height="15.0" fill="rgb(252,142,34)" rx="2" ry="2" />
<text x="1103.83" y="1135.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="699.2" y="1045" width="0.4" height="15.0" fill="rgb(252,127,43)" rx="2" ry="2" />
<text x="702.17" y="1055.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="526.0" y="1013" width="0.2" height="15.0" fill="rgb(247,44,28)" rx="2" ry="2" />
<text x="529.04" y="1023.5" ></text>
</g>
<g >
<title>zend_objects_store_put (10,101,010 samples, 0.02%)</title><rect x="1084.6" y="997" width="0.2" height="15.0" fill="rgb(246,21,22)" rx="2" ry="2" />
<text x="1087.58" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="608.1" y="1077" width="0.2" height="15.0" fill="rgb(245,69,10)" rx="2" ry="2" />
<text x="611.12" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="925.4" y="581" width="0.2" height="15.0" fill="rgb(245,70,11)" rx="2" ry="2" />
<text x="928.42" y="591.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1109" width="0.2" height="15.0" fill="rgb(209,79,0)" rx="2" ry="2" />
<text x="902.38" y="1119.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="193.8" y="949" width="0.2" height="15.0" fill="rgb(233,215,44)" rx="2" ry="2" />
<text x="196.75" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.28%)</title><rect x="208.3" y="1125" width="3.4" height="15.0" fill="rgb(212,5,3)" rx="2" ry="2" />
<text x="211.33" y="1135.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_SPEC_VAR_CV_RETVAL_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="646.0" y="1125" width="0.2" height="15.0" fill="rgb(219,9,19)" rx="2" ry="2" />
<text x="649.04" y="1135.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="899.6" y="1061" width="0.2" height="15.0" fill="rgb(241,59,46)" rx="2" ry="2" />
<text x="902.58" y="1071.5" ></text>
</g>
<g >
<title>add_function_array (10,101,010 samples, 0.02%)</title><rect x="644.4" y="1093" width="0.2" height="15.0" fill="rgb(249,135,45)" rx="2" ry="2" />
<text x="647.38" y="1103.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1013" width="0.2" height="15.0" fill="rgb(254,197,8)" rx="2" ry="2" />
<text x="297.38" y="1023.5" ></text>
</g>
<g >
<title>get_acl (30,303,030 samples, 0.05%)</title><rect x="1007.7" y="853" width="0.6" height="15.0" fill="rgb(206,45,24)" rx="2" ry="2" />
<text x="1010.71" y="863.5" ></text>
</g>
<g >
<title>filp_close (10,101,010 samples, 0.02%)</title><rect x="1144.2" y="1141" width="0.2" height="15.0" fill="rgb(206,74,53)" rx="2" ry="2" />
<text x="1147.17" y="1151.5" ></text>
</g>
<g >
<title>ZEND_COALESCE_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="548.8" y="1141" width="0.2" height="15.0" fill="rgb(213,60,38)" rx="2" ry="2" />
<text x="551.75" y="1151.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="539.4" y="789" width="0.2" height="15.0" fill="rgb(234,62,49)" rx="2" ry="2" />
<text x="542.38" y="799.5" ></text>
</g>
<g >
<title>add_function_slow (10,101,010 samples, 0.02%)</title><rect x="967.3" y="1109" width="0.2" height="15.0" fill="rgb(234,17,48)" rx="2" ry="2" />
<text x="970.29" y="1119.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="219.6" y="1109" width="0.2" height="15.0" fill="rgb(220,31,10)" rx="2" ry="2" />
<text x="222.58" y="1119.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="901" width="3.1" height="15.0" fill="rgb(239,163,38)" rx="2" ry="2" />
<text x="1187.58" y="911.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="477.9" y="1093" width="0.2" height="15.0" fill="rgb(223,175,49)" rx="2" ry="2" />
<text x="480.92" y="1103.5" ></text>
</g>
<g >
<title>zend_call_function (10,101,010 samples, 0.02%)</title><rect x="825.0" y="933" width="0.2" height="15.0" fill="rgb(217,12,3)" rx="2" ry="2" />
<text x="828.00" y="943.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1125" width="1.2" height="15.0" fill="rgb(241,9,53)" rx="2" ry="2" />
<text x="526.75" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="519.2" y="1125" width="0.2" height="15.0" fill="rgb(247,225,9)" rx="2" ry="2" />
<text x="522.17" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="998.8" y="917" width="0.2" height="15.0" fill="rgb(235,45,52)" rx="2" ry="2" />
<text x="1001.75" y="927.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="244.0" y="997" width="0.2" height="15.0" fill="rgb(236,98,46)" rx="2" ry="2" />
<text x="246.96" y="1007.5" ></text>
</g>
<g >
<title>rcu_report_qs_rnp (10,101,010 samples, 0.02%)</title><rect x="791.5" y="917" width="0.2" height="15.0" fill="rgb(213,11,2)" rx="2" ry="2" />
<text x="794.46" y="927.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="914.6" y="741" width="0.2" height="15.0" fill="rgb(226,191,31)" rx="2" ry="2" />
<text x="917.58" y="751.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1063.3" y="1093" width="0.2" height="15.0" fill="rgb(245,69,2)" rx="2" ry="2" />
<text x="1066.33" y="1103.5" ></text>
</g>
<g >
<title>zend_check_protected (10,101,010 samples, 0.02%)</title><rect x="973.5" y="1125" width="0.3" height="15.0" fill="rgb(254,199,24)" rx="2" ry="2" />
<text x="976.54" y="1135.5" ></text>
</g>
<g >
<title>access (242,424,240 samples, 0.42%)</title><rect x="1005.4" y="1045" width="5.0" height="15.0" fill="rgb(216,98,47)" rx="2" ry="2" />
<text x="1008.42" y="1055.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="1108.3" y="1013" width="0.2" height="15.0" fill="rgb(221,81,48)" rx="2" ry="2" />
<text x="1111.33" y="1023.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (20,202,020 samples, 0.04%)</title><rect x="343.3" y="1093" width="0.5" height="15.0" fill="rgb(205,40,34)" rx="2" ry="2" />
<text x="346.33" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="1029" width="0.3" height="15.0" fill="rgb(206,159,4)" rx="2" ry="2" />
<text x="1044.25" y="1039.5" ></text>
</g>
<g >
<title>sock_close (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="997" width="0.3" height="15.0" fill="rgb(225,182,1)" rx="2" ry="2" />
<text x="1026.54" y="1007.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="776.7" y="965" width="0.4" height="15.0" fill="rgb(236,51,7)" rx="2" ry="2" />
<text x="779.67" y="975.5" ></text>
</g>
<g >
<title>__fget (20,202,020 samples, 0.04%)</title><rect x="1188.3" y="1093" width="0.5" height="15.0" fill="rgb(243,151,44)" rx="2" ry="2" />
<text x="1191.33" y="1103.5" ></text>
</g>
<g >
<title>timelib_update_ts (10,101,010 samples, 0.02%)</title><rect x="491.2" y="1093" width="0.3" height="15.0" fill="rgb(214,12,44)" rx="2" ry="2" />
<text x="494.25" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="106.9" y="949" width="0.2" height="15.0" fill="rgb(248,75,13)" rx="2" ry="2" />
<text x="109.88" y="959.5" ></text>
</g>
<g >
<title>nf_ct_seq_offset (10,101,010 samples, 0.02%)</title><rect x="1150.4" y="885" width="0.2" height="15.0" fill="rgb(209,20,22)" rx="2" ry="2" />
<text x="1153.42" y="895.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="243.8" y="1077" width="0.2" height="15.0" fill="rgb(213,207,20)" rx="2" ry="2" />
<text x="246.75" y="1087.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.11 (10,101,010 samples, 0.02%)</title><rect x="929.8" y="853" width="0.2" height="15.0" fill="rgb(216,96,33)" rx="2" ry="2" />
<text x="932.79" y="863.5" ></text>
</g>
<g >
<title>sock_zerocopy_put (10,101,010 samples, 0.02%)</title><rect x="1146.0" y="1093" width="0.2" height="15.0" fill="rgb(228,4,11)" rx="2" ry="2" />
<text x="1149.04" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="965" width="0.2" height="15.0" fill="rgb(232,223,29)" rx="2" ry="2" />
<text x="1086.33" y="975.5" ></text>
</g>
<g >
<title>write (181,818,180 samples, 0.32%)</title><rect x="1034.8" y="1077" width="3.7" height="15.0" fill="rgb(210,150,21)" rx="2" ry="2" />
<text x="1037.79" y="1087.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (121,212,120 samples, 0.21%)</title><rect x="1024.2" y="869" width="2.5" height="15.0" fill="rgb(244,98,39)" rx="2" ry="2" />
<text x="1027.17" y="879.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="677.9" y="773" width="0.2" height="15.0" fill="rgb(225,5,17)" rx="2" ry="2" />
<text x="680.92" y="783.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1013" width="0.3" height="15.0" fill="rgb(252,45,11)" rx="2" ry="2" />
<text x="499.25" y="1023.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (30,303,030 samples, 0.05%)</title><rect x="1009.4" y="965" width="0.6" height="15.0" fill="rgb(244,39,13)" rx="2" ry="2" />
<text x="1012.38" y="975.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (101,010,100 samples, 0.18%)</title><rect x="1016.2" y="997" width="2.1" height="15.0" fill="rgb(217,27,13)" rx="2" ry="2" />
<text x="1019.25" y="1007.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="472.5" y="1125" width="0.2" height="15.0" fill="rgb(209,204,14)" rx="2" ry="2" />
<text x="475.50" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_IS_SPEC_TMPVAR_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1125" width="0.2" height="15.0" fill="rgb(224,118,34)" rx="2" ry="2" />
<text x="693.00" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="982.9" y="789" width="0.2" height="15.0" fill="rgb(205,100,14)" rx="2" ry="2" />
<text x="985.92" y="799.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1182.3" y="1093" width="0.2" height="15.0" fill="rgb(251,66,19)" rx="2" ry="2" />
<text x="1185.29" y="1103.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (90,909,090 samples, 0.16%)</title><rect x="1137.5" y="1141" width="1.9" height="15.0" fill="rgb(234,74,49)" rx="2" ry="2" />
<text x="1140.50" y="1151.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="502.3" y="1125" width="0.2" height="15.0" fill="rgb(230,93,7)" rx="2" ry="2" />
<text x="505.29" y="1135.5" ></text>
</g>
<g >
<title>recv (373,737,370 samples, 0.65%)</title><rect x="1174.8" y="1221" width="7.7" height="15.0" fill="rgb(211,84,0)" rx="2" ry="2" />
<text x="1177.79" y="1231.5" ></text>
</g>
<g >
<title>zend_update_class_constants (60,606,060 samples, 0.11%)</title><rect x="300.4" y="1093" width="1.3" height="15.0" fill="rgb(235,79,24)" rx="2" ry="2" />
<text x="303.42" y="1103.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1061" width="0.2" height="15.0" fill="rgb(234,164,11)" rx="2" ry="2" />
<text x="205.50" y="1071.5" ></text>
</g>
<g >
<title>_copy_from_user (10,101,010 samples, 0.02%)</title><rect x="935.4" y="837" width="0.2" height="15.0" fill="rgb(231,37,35)" rx="2" ry="2" />
<text x="938.42" y="847.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="955.4" y="1077" width="0.2" height="15.0" fill="rgb(245,199,32)" rx="2" ry="2" />
<text x="958.42" y="1087.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="944.8" y="1109" width="0.2" height="15.0" fill="rgb(247,144,28)" rx="2" ry="2" />
<text x="947.79" y="1119.5" ></text>
</g>
<g >
<title>inet_sendmsg (1,080,808,070 samples, 1.89%)</title><rect x="1145.8" y="1125" width="22.3" height="15.0" fill="rgb(220,174,0)" rx="2" ry="2" />
<text x="1148.83" y="1135.5" >i..</text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1029" width="0.3" height="15.0" fill="rgb(243,144,41)" rx="2" ry="2" />
<text x="499.25" y="1039.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="726.5" y="965" width="0.4" height="15.0" fill="rgb(253,47,54)" rx="2" ry="2" />
<text x="729.46" y="975.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="715.2" y="1109" width="0.2" height="15.0" fill="rgb(239,129,3)" rx="2" ry="2" />
<text x="718.21" y="1119.5" ></text>
</g>
<g >
<title>phar_fopen (60,606,060 samples, 0.11%)</title><rect x="949.4" y="1125" width="1.2" height="15.0" fill="rgb(252,71,53)" rx="2" ry="2" />
<text x="952.38" y="1135.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="282.3" y="1109" width="0.2" height="15.0" fill="rgb(251,209,49)" rx="2" ry="2" />
<text x="285.29" y="1119.5" ></text>
</g>
<g >
<title>_php_stream_read (111,111,110 samples, 0.19%)</title><rect x="945.6" y="1077" width="2.3" height="15.0" fill="rgb(211,162,28)" rx="2" ry="2" />
<text x="948.62" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1157" width="0.4" height="15.0" fill="rgb(248,222,10)" rx="2" ry="2" />
<text x="33.21" y="1167.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="215.4" y="1045" width="0.2" height="15.0" fill="rgb(213,12,40)" rx="2" ry="2" />
<text x="218.42" y="1055.5" ></text>
</g>
<g >
<title>walk_component (282,828,280 samples, 0.49%)</title><rect x="411.2" y="965" width="5.9" height="15.0" fill="rgb(225,53,14)" rx="2" ry="2" />
<text x="414.25" y="975.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1029" width="0.2" height="15.0" fill="rgb(230,203,35)" rx="2" ry="2" />
<text x="902.38" y="1039.5" ></text>
</g>
<g >
<title>tcp_recv_timestamp (20,202,020 samples, 0.04%)</title><rect x="1179.4" y="1093" width="0.4" height="15.0" fill="rgb(205,58,30)" rx="2" ry="2" />
<text x="1182.38" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1182.3" y="1109" width="0.2" height="15.0" fill="rgb(253,191,0)" rx="2" ry="2" />
<text x="1185.29" y="1119.5" ></text>
</g>
<g >
<title>TRACE-10$AutoLoader::find$49 (10,101,010 samples, 0.02%)</title><rect x="922.3" y="837" width="0.2" height="15.0" fill="rgb(210,176,46)" rx="2" ry="2" />
<text x="925.29" y="847.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="799.0" y="805" width="0.2" height="15.0" fill="rgb(213,155,9)" rx="2" ry="2" />
<text x="801.96" y="815.5" ></text>
</g>
<g >
<title>zim_DateTimeZone___construct (10,101,010 samples, 0.02%)</title><rect x="487.5" y="1125" width="0.2" height="15.0" fill="rgb(226,113,18)" rx="2" ry="2" />
<text x="490.50" y="1135.5" ></text>
</g>
<g >
<title>zif_json_encode (151,515,150 samples, 0.26%)</title><rect x="1045.4" y="1125" width="3.1" height="15.0" fill="rgb(219,143,40)" rx="2" ry="2" />
<text x="1048.42" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="850.6" y="885" width="0.2" height="15.0" fill="rgb(229,20,36)" rx="2" ry="2" />
<text x="853.62" y="895.5" ></text>
</g>
<g >
<title>zend_include_or_eval (545,454,540 samples, 0.95%)</title><rect x="835.4" y="885" width="11.3" height="15.0" fill="rgb(228,16,50)" rx="2" ry="2" />
<text x="838.42" y="895.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="999.0" y="949" width="0.2" height="15.0" fill="rgb(250,118,40)" rx="2" ry="2" />
<text x="1001.96" y="959.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="709" width="0.3" height="15.0" fill="rgb(223,169,13)" rx="2" ry="2" />
<text x="1134.25" y="719.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="710.0" y="1077" width="0.2" height="15.0" fill="rgb(231,100,20)" rx="2" ry="2" />
<text x="713.00" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_discard (181,818,180 samples, 0.32%)</title><rect x="1096.7" y="1141" width="3.7" height="15.0" fill="rgb(249,77,52)" rx="2" ry="2" />
<text x="1099.67" y="1151.5" ></text>
</g>
<g >
<title>TRACE-162$Wikimedia\ScopedCallback::__construct$41 (10,101,010 samples, 0.02%)</title><rect x="289.8" y="1141" width="0.2" height="15.0" fill="rgb(239,183,29)" rx="2" ry="2" />
<text x="292.79" y="1151.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OP_SPEC_CV_CONST_HANDLER (737,373,730 samples, 1.29%)</title><rect x="629.2" y="1125" width="15.2" height="15.0" fill="rgb(211,141,24)" rx="2" ry="2" />
<text x="632.17" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="797.1" y="885" width="0.6" height="15.0" fill="rgb(218,84,6)" rx="2" ry="2" />
<text x="800.08" y="895.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (10,101,010 samples, 0.02%)</title><rect x="1187.1" y="533" width="0.2" height="15.0" fill="rgb(251,24,2)" rx="2" ry="2" />
<text x="1190.08" y="543.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="850.6" y="725" width="0.2" height="15.0" fill="rgb(251,51,0)" rx="2" ry="2" />
<text x="853.62" y="735.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="1004.4" y="1061" width="0.2" height="15.0" fill="rgb(238,168,20)" rx="2" ry="2" />
<text x="1007.38" y="1071.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="925.4" y="485" width="0.2" height="15.0" fill="rgb(236,228,17)" rx="2" ry="2" />
<text x="928.42" y="495.5" ></text>
</g>
<g >
<title>ZEND_SEND_UNPACK_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="556.0" y="1141" width="0.2" height="15.0" fill="rgb(234,27,10)" rx="2" ry="2" />
<text x="559.04" y="1151.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (151,515,150 samples, 0.26%)</title><rect x="176.7" y="1061" width="3.1" height="15.0" fill="rgb(207,217,45)" rx="2" ry="2" />
<text x="179.67" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_class (30,303,030 samples, 0.05%)</title><rect x="309.0" y="1093" width="0.6" height="15.0" fill="rgb(213,78,52)" rx="2" ry="2" />
<text x="311.96" y="1103.5" ></text>
</g>
<g >
<title>__kmalloc (10,101,010 samples, 0.02%)</title><rect x="1152.9" y="341" width="0.2" height="15.0" fill="rgb(248,212,29)" rx="2" ry="2" />
<text x="1155.92" y="351.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="933" width="0.2" height="15.0" fill="rgb(236,154,18)" rx="2" ry="2" />
<text x="1090.50" y="943.5" ></text>
</g>
<g >
<title>lookup_fast (30,303,030 samples, 0.05%)</title><rect x="775.8" y="869" width="0.7" height="15.0" fill="rgb(237,218,34)" rx="2" ry="2" />
<text x="778.83" y="879.5" ></text>
</g>
<g >
<title>nf_conntrack_in (60,606,060 samples, 0.11%)</title><rect x="1125.8" y="949" width="1.3" height="15.0" fill="rgb(208,41,45)" rx="2" ry="2" />
<text x="1128.83" y="959.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="395.4" y="677" width="0.2" height="15.0" fill="rgb(252,63,49)" rx="2" ry="2" />
<text x="398.42" y="687.5" ></text>
</g>
<g >
<title>zend_fetch_class (161,616,160 samples, 0.28%)</title><rect x="685.6" y="1109" width="3.4" height="15.0" fill="rgb(217,44,34)" rx="2" ry="2" />
<text x="688.62" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="427.1" y="949" width="0.2" height="15.0" fill="rgb(223,79,47)" rx="2" ry="2" />
<text x="430.08" y="959.5" ></text>
</g>
<g >
<title>php_str_replace_in_subject (30,303,030 samples, 0.05%)</title><rect x="959.0" y="1109" width="0.6" height="15.0" fill="rgb(229,182,1)" rx="2" ry="2" />
<text x="961.96" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="516.9" y="1093" width="0.2" height="15.0" fill="rgb(229,187,29)" rx="2" ry="2" />
<text x="519.88" y="1103.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (20,202,020 samples, 0.04%)</title><rect x="1026.2" y="533" width="0.5" height="15.0" fill="rgb(243,88,47)" rx="2" ry="2" />
<text x="1029.25" y="543.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="899.6" y="1045" width="0.2" height="15.0" fill="rgb(236,151,46)" rx="2" ry="2" />
<text x="902.58" y="1055.5" ></text>
</g>
<g >
<title>ZEND_BEGIN_SILENCE_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="548.5" y="1141" width="0.3" height="15.0" fill="rgb(250,139,51)" rx="2" ry="2" />
<text x="551.54" y="1151.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (20,202,020 samples, 0.04%)</title><rect x="704.6" y="1061" width="0.4" height="15.0" fill="rgb(208,65,45)" rx="2" ry="2" />
<text x="707.58" y="1071.5" ></text>
</g>
<g >
<title>setup_pre_routing (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="965" width="0.3" height="15.0" fill="rgb(248,127,46)" rx="2" ry="2" />
<text x="1174.25" y="975.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="805.2" y="741" width="0.2" height="15.0" fill="rgb(247,121,25)" rx="2" ry="2" />
<text x="808.21" y="751.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (292,929,290 samples, 0.51%)</title><rect x="1125.6" y="1029" width="6.1" height="15.0" fill="rgb(231,25,8)" rx="2" ry="2" />
<text x="1128.62" y="1039.5" ></text>
</g>
<g >
<title>zend_closure_bind_var_ex (10,101,010 samples, 0.02%)</title><rect x="466.5" y="1125" width="0.2" height="15.0" fill="rgb(245,225,43)" rx="2" ry="2" />
<text x="469.46" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1013" width="0.2" height="15.0" fill="rgb(232,43,1)" rx="2" ry="2" />
<text x="479.88" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="468.5" y="1125" width="0.5" height="15.0" fill="rgb(240,147,53)" rx="2" ry="2" />
<text x="471.54" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="799.0" y="789" width="0.2" height="15.0" fill="rgb(239,168,15)" rx="2" ry="2" />
<text x="801.96" y="799.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="142.3" y="1045" width="0.2" height="15.0" fill="rgb(246,162,25)" rx="2" ry="2" />
<text x="145.29" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="881.2" y="533" width="0.3" height="15.0" fill="rgb(248,150,8)" rx="2" ry="2" />
<text x="884.25" y="543.5" ></text>
</g>
<g >
<title>zend_rebuild_symbol_table (70,707,070 samples, 0.12%)</title><rect x="865.0" y="885" width="1.5" height="15.0" fill="rgb(232,229,48)" rx="2" ry="2" />
<text x="868.00" y="895.5" ></text>
</g>
<g >
<title>ZEND_CONCAT_SPEC_CONST_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="648.5" y="1125" width="0.3" height="15.0" fill="rgb(254,159,22)" rx="2" ry="2" />
<text x="651.54" y="1135.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="371.9" y="997" width="0.2" height="15.0" fill="rgb(235,155,4)" rx="2" ry="2" />
<text x="374.88" y="1007.5" ></text>
</g>
<g >
<title>TRACE-275$Wikimedia\Rdbms\{closure}$309 (20,202,020 samples, 0.04%)</title><rect x="472.3" y="1141" width="0.4" height="15.0" fill="rgb(234,21,33)" rx="2" ry="2" />
<text x="475.29" y="1151.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="301.9" y="933" width="0.2" height="15.0" fill="rgb(210,52,13)" rx="2" ry="2" />
<text x="304.88" y="943.5" ></text>
</g>
<g >
<title>PHP_SHA256Final (10,101,010 samples, 0.02%)</title><rect x="928.8" y="965" width="0.2" height="15.0" fill="rgb(250,40,49)" rx="2" ry="2" />
<text x="931.75" y="975.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.62 (30,303,030 samples, 0.05%)</title><rect x="1183.3" y="1077" width="0.7" height="15.0" fill="rgb(210,194,25)" rx="2" ry="2" />
<text x="1186.33" y="1087.5" ></text>
</g>
<g >
<title>do_timer_settime (10,101,010 samples, 0.02%)</title><rect x="1063.1" y="1077" width="0.2" height="15.0" fill="rgb(247,216,5)" rx="2" ry="2" />
<text x="1066.12" y="1087.5" ></text>
</g>
<g >
<title>destroy_op_array (10,101,010 samples, 0.02%)</title><rect x="919.6" y="1125" width="0.2" height="15.0" fill="rgb(206,197,35)" rx="2" ry="2" />
<text x="922.58" y="1135.5" ></text>
</g>
<g >
<title>zend_release_fcall_info_cache (10,101,010 samples, 0.02%)</title><rect x="510.0" y="1077" width="0.2" height="15.0" fill="rgb(211,190,40)" rx="2" ry="2" />
<text x="513.00" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="997.3" y="1109" width="0.2" height="15.0" fill="rgb(214,57,12)" rx="2" ry="2" />
<text x="1000.29" y="1119.5" ></text>
</g>
<g >
<title>__x64_sys_getsockopt (20,202,020 samples, 0.04%)</title><rect x="1133.1" y="1157" width="0.4" height="15.0" fill="rgb(236,127,31)" rx="2" ry="2" />
<text x="1136.12" y="1167.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="890.0" y="901" width="0.2" height="15.0" fill="rgb(238,49,23)" rx="2" ry="2" />
<text x="893.00" y="911.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (60,606,060 samples, 0.11%)</title><rect x="1127.9" y="421" width="1.3" height="15.0" fill="rgb(211,11,38)" rx="2" ry="2" />
<text x="1130.92" y="431.5" ></text>
</g>
<g >
<title>__libc_fcntl64 (10,101,010 samples, 0.02%)</title><rect x="934.8" y="917" width="0.2" height="15.0" fill="rgb(228,196,35)" rx="2" ry="2" />
<text x="937.79" y="927.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (10,101,010 samples, 0.02%)</title><rect x="183.5" y="933" width="0.3" height="15.0" fill="rgb(208,24,7)" rx="2" ry="2" />
<text x="186.54" y="943.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="1046.2" y="1045" width="0.3" height="15.0" fill="rgb(219,104,11)" rx="2" ry="2" />
<text x="1049.25" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="679.2" y="949" width="0.4" height="15.0" fill="rgb(243,54,2)" rx="2" ry="2" />
<text x="682.17" y="959.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (212,121,210 samples, 0.37%)</title><rect x="792.3" y="997" width="4.4" height="15.0" fill="rgb(234,33,43)" rx="2" ry="2" />
<text x="795.29" y="1007.5" ></text>
</g>
<g >
<title>__lock_text_start (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="389" width="0.4" height="15.0" fill="rgb(212,225,39)" rx="2" ry="2" />
<text x="1028.62" y="399.5" ></text>
</g>
<g >
<title>zend_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="886.7" y="997" width="0.2" height="15.0" fill="rgb(228,90,3)" rx="2" ry="2" />
<text x="889.67" y="1007.5" ></text>
</g>
<g >
<title>php_output_end_all (303,030,300 samples, 0.53%)</title><rect x="1026.7" y="1109" width="6.2" height="15.0" fill="rgb(205,28,54)" rx="2" ry="2" />
<text x="1029.67" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="904.0" y="997" width="0.2" height="15.0" fill="rgb(227,197,17)" rx="2" ry="2" />
<text x="906.96" y="1007.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="881.2" y="485" width="0.3" height="15.0" fill="rgb(219,57,47)" rx="2" ry="2" />
<text x="884.25" y="495.5" ></text>
</g>
<g >
<title>TRACE-241$WebRequest::getHeader$1134 (10,101,010 samples, 0.02%)</title><rect x="455.2" y="1141" width="0.2" height="15.0" fill="rgb(245,201,2)" rx="2" ry="2" />
<text x="458.21" y="1151.5" ></text>
</g>
<g >
<title>persistent_compile_file (30,303,030 samples, 0.05%)</title><rect x="687.9" y="981" width="0.6" height="15.0" fill="rgb(253,88,42)" rx="2" ry="2" />
<text x="690.92" y="991.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (30,303,030 samples, 0.05%)</title><rect x="1089.4" y="613" width="0.6" height="15.0" fill="rgb(221,183,46)" rx="2" ry="2" />
<text x="1092.38" y="623.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (10,101,010 samples, 0.02%)</title><rect x="887.3" y="1077" width="0.2" height="15.0" fill="rgb(216,7,12)" rx="2" ry="2" />
<text x="890.29" y="1087.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1125" width="0.2" height="15.0" fill="rgb(252,32,39)" rx="2" ry="2" />
<text x="468.83" y="1135.5" ></text>
</g>
<g >
<title>php_pcre_match_impl (10,101,010 samples, 0.02%)</title><rect x="530.2" y="1109" width="0.2" height="15.0" fill="rgb(205,71,0)" rx="2" ry="2" />
<text x="533.21" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="914.6" y="901" width="0.2" height="15.0" fill="rgb(220,15,53)" rx="2" ry="2" />
<text x="917.58" y="911.5" ></text>
</g>
<g >
<title>zend_stream_init_filename (10,101,010 samples, 0.02%)</title><rect x="779.2" y="997" width="0.2" height="15.0" fill="rgb(242,19,28)" rx="2" ry="2" />
<text x="782.17" y="1007.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="22.7" y="1205" width="0.2" height="15.0" fill="rgb(254,183,9)" rx="2" ry="2" />
<text x="25.71" y="1215.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="982.9" y="773" width="0.2" height="15.0" fill="rgb(232,141,12)" rx="2" ry="2" />
<text x="985.92" y="783.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="906.2" y="997" width="0.3" height="15.0" fill="rgb(220,214,40)" rx="2" ry="2" />
<text x="909.25" y="1007.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="1013" width="0.2" height="15.0" fill="rgb(222,220,20)" rx="2" ry="2" />
<text x="1090.50" y="1023.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_W (20,202,020 samples, 0.04%)</title><rect x="693.1" y="1109" width="0.4" height="15.0" fill="rgb(239,141,2)" rx="2" ry="2" />
<text x="696.12" y="1119.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="982.9" y="741" width="0.2" height="15.0" fill="rgb(218,144,35)" rx="2" ry="2" />
<text x="985.92" y="751.5" ></text>
</g>
<g >
<title>sch_direct_xmit (40,404,040 samples, 0.07%)</title><rect x="939.4" y="149" width="0.8" height="15.0" fill="rgb(249,48,54)" rx="2" ry="2" />
<text x="942.38" y="159.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="984.8" y="1077" width="0.2" height="15.0" fill="rgb(222,51,53)" rx="2" ry="2" />
<text x="987.79" y="1087.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="873.5" y="1029" width="0.3" height="15.0" fill="rgb(230,26,18)" rx="2" ry="2" />
<text x="876.54" y="1039.5" ></text>
</g>
<g >
<title>php_date_instantiate (10,101,010 samples, 0.02%)</title><rect x="953.1" y="1125" width="0.2" height="15.0" fill="rgb(224,146,47)" rx="2" ry="2" />
<text x="956.12" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="271.0" y="1029" width="0.2" height="15.0" fill="rgb(205,75,12)" rx="2" ry="2" />
<text x="274.04" y="1039.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (30,303,030 samples, 0.05%)</title><rect x="1170.8" y="1157" width="0.7" height="15.0" fill="rgb(226,201,25)" rx="2" ry="2" />
<text x="1173.83" y="1167.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_SPEC_UNUSED_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1125" width="0.2" height="15.0" fill="rgb(214,190,36)" rx="2" ry="2" />
<text x="691.96" y="1135.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="463.8" y="1109" width="0.2" height="15.0" fill="rgb(218,171,20)" rx="2" ry="2" />
<text x="466.75" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="106.9" y="1045" width="0.2" height="15.0" fill="rgb(248,184,44)" rx="2" ry="2" />
<text x="109.88" y="1055.5" ></text>
</g>
<g >
<title>do_page_fault (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1157" width="0.2" height="15.0" fill="rgb(226,178,19)" rx="2" ry="2" />
<text x="33.00" y="1167.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="499.0" y="1093" width="0.2" height="15.0" fill="rgb(206,119,31)" rx="2" ry="2" />
<text x="501.96" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_find_ns_func_helper (10,101,010 samples, 0.02%)</title><rect x="1068.1" y="1141" width="0.2" height="15.0" fill="rgb(222,14,10)" rx="2" ry="2" />
<text x="1071.12" y="1151.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_SPEC_UNUSED_CV_HANDLER (70,707,070 samples, 0.12%)</title><rect x="282.9" y="1125" width="1.5" height="15.0" fill="rgb(213,145,16)" rx="2" ry="2" />
<text x="285.92" y="1135.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (20,202,020 samples, 0.04%)</title><rect x="1106.7" y="1157" width="0.4" height="15.0" fill="rgb(247,216,29)" rx="2" ry="2" />
<text x="1109.67" y="1167.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="503.5" y="1125" width="0.3" height="15.0" fill="rgb(225,173,8)" rx="2" ry="2" />
<text x="506.54" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="685.0" y="1125" width="0.6" height="15.0" fill="rgb(208,155,24)" rx="2" ry="2" />
<text x="688.00" y="1135.5" ></text>
</g>
<g >
<title>__cgroup_bpf_run_filter_setsockopt (10,101,010 samples, 0.02%)</title><rect x="1140.8" y="1125" width="0.2" height="15.0" fill="rgb(206,192,2)" rx="2" ry="2" />
<text x="1143.83" y="1135.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="24.0" y="981" width="0.2" height="15.0" fill="rgb(221,218,51)" rx="2" ry="2" />
<text x="26.96" y="991.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="925.4" y="517" width="0.2" height="15.0" fill="rgb(252,88,39)" rx="2" ry="2" />
<text x="928.42" y="527.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="437" width="0.2" height="15.0" fill="rgb(222,17,2)" rx="2" ry="2" />
<text x="1132.38" y="447.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="970.6" y="949" width="0.2" height="15.0" fill="rgb(232,5,28)" rx="2" ry="2" />
<text x="973.62" y="959.5" ></text>
</g>
<g >
<title>sock_poll (10,101,010 samples, 0.02%)</title><rect x="926.9" y="805" width="0.2" height="15.0" fill="rgb(230,75,30)" rx="2" ry="2" />
<text x="929.88" y="815.5" ></text>
</g>
<g >
<title>memcpy (20,202,020 samples, 0.04%)</title><rect x="292.3" y="1125" width="0.4" height="15.0" fill="rgb(236,101,32)" rx="2" ry="2" />
<text x="295.29" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="244.2" y="1077" width="0.2" height="15.0" fill="rgb(251,215,37)" rx="2" ry="2" />
<text x="247.17" y="1087.5" ></text>
</g>
<g >
<title>__sock_release (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1093" width="0.4" height="15.0" fill="rgb(205,46,28)" rx="2" ry="2" />
<text x="1147.38" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (20,202,020 samples, 0.04%)</title><rect x="193.5" y="1077" width="0.5" height="15.0" fill="rgb(217,5,2)" rx="2" ry="2" />
<text x="196.54" y="1087.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="789" width="0.2" height="15.0" fill="rgb(240,29,18)" rx="2" ry="2" />
<text x="1083.83" y="799.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="1054.0" y="933" width="0.4" height="15.0" fill="rgb(226,106,6)" rx="2" ry="2" />
<text x="1056.96" y="943.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="658.8" y="1109" width="0.2" height="15.0" fill="rgb(240,175,15)" rx="2" ry="2" />
<text x="661.75" y="1119.5" ></text>
</g>
<g >
<title>__inet_hash_connect (20,202,020 samples, 0.04%)</title><rect x="1124.2" y="1061" width="0.4" height="15.0" fill="rgb(229,142,21)" rx="2" ry="2" />
<text x="1127.17" y="1071.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1021.9" y="1109" width="0.2" height="15.0" fill="rgb(217,57,45)" rx="2" ry="2" />
<text x="1024.88" y="1119.5" ></text>
</g>
<g >
<title>execute_ex (90,909,090 samples, 0.16%)</title><rect x="1002.1" y="997" width="1.9" height="15.0" fill="rgb(228,1,49)" rx="2" ry="2" />
<text x="1005.08" y="1007.5" ></text>
</g>
<g >
<title>tcp_push (949,494,940 samples, 1.66%)</title><rect x="1147.9" y="1077" width="19.6" height="15.0" fill="rgb(238,217,37)" rx="2" ry="2" />
<text x="1150.92" y="1087.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="939.2" y="629" width="0.2" height="15.0" fill="rgb(216,190,14)" rx="2" ry="2" />
<text x="942.17" y="639.5" ></text>
</g>
<g >
<title>lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="527.5" y="933" width="0.2" height="15.0" fill="rgb(254,171,42)" rx="2" ry="2" />
<text x="530.50" y="943.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (80,808,080 samples, 0.14%)</title><rect x="1035.2" y="917" width="1.7" height="15.0" fill="rgb(222,92,9)" rx="2" ry="2" />
<text x="1038.21" y="927.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="677.3" y="853" width="0.4" height="15.0" fill="rgb(239,123,0)" rx="2" ry="2" />
<text x="680.29" y="863.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="881.2" y="565" width="0.3" height="15.0" fill="rgb(216,98,51)" rx="2" ry="2" />
<text x="884.25" y="575.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="267.5" y="1093" width="0.2" height="15.0" fill="rgb(211,50,31)" rx="2" ry="2" />
<text x="270.50" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="780.4" y="1013" width="0.2" height="15.0" fill="rgb(235,111,35)" rx="2" ry="2" />
<text x="783.42" y="1023.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="620.0" y="1109" width="0.2" height="15.0" fill="rgb(237,208,28)" rx="2" ry="2" />
<text x="623.00" y="1119.5" ></text>
</g>
<g >
<title>tcp_initialize_rcv_mss (10,101,010 samples, 0.02%)</title><rect x="942.5" y="789" width="0.2" height="15.0" fill="rgb(230,14,4)" rx="2" ry="2" />
<text x="945.50" y="799.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="973.3" y="1029" width="0.2" height="15.0" fill="rgb(211,36,18)" rx="2" ry="2" />
<text x="976.33" y="1039.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="286.7" y="1125" width="0.2" height="15.0" fill="rgb(240,172,1)" rx="2" ry="2" />
<text x="289.67" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (10,101,010 samples, 0.02%)</title><rect x="272.5" y="1125" width="0.2" height="15.0" fill="rgb(231,112,47)" rx="2" ry="2" />
<text x="275.50" y="1135.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="672.5" y="693" width="0.2" height="15.0" fill="rgb(219,61,10)" rx="2" ry="2" />
<text x="675.50" y="703.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="302.1" y="933" width="0.2" height="15.0" fill="rgb(225,15,24)" rx="2" ry="2" />
<text x="305.08" y="943.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="834.4" y="901" width="0.2" height="15.0" fill="rgb(217,211,47)" rx="2" ry="2" />
<text x="837.38" y="911.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (20,202,020 samples, 0.04%)</title><rect x="500.6" y="901" width="0.4" height="15.0" fill="rgb(211,177,12)" rx="2" ry="2" />
<text x="503.62" y="911.5" ></text>
</g>
<g >
<title>zendi_smart_strcmp (20,202,020 samples, 0.04%)</title><rect x="513.1" y="1029" width="0.4" height="15.0" fill="rgb(212,227,51)" rx="2" ry="2" />
<text x="516.12" y="1039.5" ></text>
</g>
<g >
<title>async_page_fault (10,101,010 samples, 0.02%)</title><rect x="772.1" y="1029" width="0.2" height="15.0" fill="rgb(207,140,30)" rx="2" ry="2" />
<text x="775.08" y="1039.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="524.4" y="709" width="0.2" height="15.0" fill="rgb(254,104,36)" rx="2" ry="2" />
<text x="527.38" y="719.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="516.9" y="1077" width="0.2" height="15.0" fill="rgb(236,66,5)" rx="2" ry="2" />
<text x="519.88" y="1087.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="524.2" y="869" width="0.2" height="15.0" fill="rgb(224,92,33)" rx="2" ry="2" />
<text x="527.17" y="879.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="922.9" y="1093" width="0.2" height="15.0" fill="rgb(205,70,8)" rx="2" ry="2" />
<text x="925.92" y="1103.5" ></text>
</g>
<g >
<title>syscall_trace_enter (30,303,030 samples, 0.05%)</title><rect x="1121.0" y="1157" width="0.7" height="15.0" fill="rgb(252,175,14)" rx="2" ry="2" />
<text x="1124.04" y="1167.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="1042.1" y="1077" width="0.4" height="15.0" fill="rgb(235,154,50)" rx="2" ry="2" />
<text x="1045.08" y="1087.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="517.1" y="1093" width="0.2" height="15.0" fill="rgb(230,143,43)" rx="2" ry="2" />
<text x="520.08" y="1103.5" ></text>
</g>
<g >
<title>zim_Exception___construct (10,101,010 samples, 0.02%)</title><rect x="1059.8" y="1125" width="0.2" height="15.0" fill="rgb(219,162,45)" rx="2" ry="2" />
<text x="1062.79" y="1135.5" ></text>
</g>
<g >
<title>apparmor_socket_sendmsg (20,202,020 samples, 0.04%)</title><rect x="1168.3" y="1109" width="0.5" height="15.0" fill="rgb(219,15,36)" rx="2" ry="2" />
<text x="1171.33" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="905.0" y="997" width="0.2" height="15.0" fill="rgb(206,79,13)" rx="2" ry="2" />
<text x="908.00" y="1007.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="199.0" y="1077" width="0.2" height="15.0" fill="rgb(216,216,5)" rx="2" ry="2" />
<text x="201.96" y="1087.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="985.0" y="1109" width="0.4" height="15.0" fill="rgb(205,122,51)" rx="2" ry="2" />
<text x="988.00" y="1119.5" ></text>
</g>
<g >
<title>tcp_data_queue (10,101,010 samples, 0.02%)</title><rect x="799.0" y="597" width="0.2" height="15.0" fill="rgb(209,62,31)" rx="2" ry="2" />
<text x="801.96" y="607.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="881.2" y="501" width="0.3" height="15.0" fill="rgb(254,140,19)" rx="2" ry="2" />
<text x="884.25" y="511.5" ></text>
</g>
<g >
<title>php_fopen_primary_script (10,101,010 samples, 0.02%)</title><rect x="1076.5" y="1173" width="0.2" height="15.0" fill="rgb(211,62,4)" rx="2" ry="2" />
<text x="1079.46" y="1183.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (60,606,060 samples, 0.11%)</title><rect x="961.5" y="1109" width="1.2" height="15.0" fill="rgb(210,64,10)" rx="2" ry="2" />
<text x="964.46" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="476.9" y="965" width="0.2" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="479.88" y="975.5" ></text>
</g>
<g >
<title>TRACE-339$Fandom\Includes\Database\FandomLoadBalancer::__construct$27 (20,202,020 samples, 0.04%)</title><rect x="493.5" y="1141" width="0.5" height="15.0" fill="rgb(253,102,39)" rx="2" ry="2" />
<text x="496.54" y="1151.5" ></text>
</g>
<g >
<title>phar_is_file (10,101,010 samples, 0.02%)</title><rect x="1062.1" y="1141" width="0.2" height="15.0" fill="rgb(217,145,31)" rx="2" ry="2" />
<text x="1065.08" y="1151.5" ></text>
</g>
<g >
<title>TRACE-344$Wikimedia\Rdbms\LoadBalancer::resolveDomainID$300 (20,202,020 samples, 0.04%)</title><rect x="495.2" y="1141" width="0.4" height="15.0" fill="rgb(234,99,40)" rx="2" ry="2" />
<text x="498.21" y="1151.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="776.9" y="933" width="0.2" height="15.0" fill="rgb(227,192,34)" rx="2" ry="2" />
<text x="779.88" y="943.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="682.7" y="933" width="0.2" height="15.0" fill="rgb(244,197,46)" rx="2" ry="2" />
<text x="685.71" y="943.5" ></text>
</g>
<g >
<title>_emalloc_24 (10,101,010 samples, 0.02%)</title><rect x="650.6" y="1109" width="0.2" height="15.0" fill="rgb(222,36,27)" rx="2" ry="2" />
<text x="653.62" y="1119.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="1029" width="0.2" height="15.0" fill="rgb(229,197,19)" rx="2" ry="2" />
<text x="1127.17" y="1039.5" ></text>
</g>
<g >
<title>____fput (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1141" width="0.4" height="15.0" fill="rgb(223,24,8)" rx="2" ry="2" />
<text x="1147.38" y="1151.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_CONST_HANDLER (121,212,120 samples, 0.21%)</title><rect x="615.4" y="1125" width="2.5" height="15.0" fill="rgb(231,89,32)" rx="2" ry="2" />
<text x="618.42" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (40,404,040 samples, 0.07%)</title><rect x="339.0" y="1061" width="0.8" height="15.0" fill="rgb(234,180,33)" rx="2" ry="2" />
<text x="341.96" y="1071.5" ></text>
</g>
<g >
<title>zval_ptr_dtor (10,101,010 samples, 0.02%)</title><rect x="1084.4" y="1045" width="0.2" height="15.0" fill="rgb(218,105,25)" rx="2" ry="2" />
<text x="1087.38" y="1055.5" ></text>
</g>
<g >
<title>TRACE-227$Wikimedia\Rdbms\LoadBalancer::resolveDomainID$300 (10,101,010 samples, 0.02%)</title><rect x="449.6" y="1141" width="0.2" height="15.0" fill="rgb(206,79,8)" rx="2" ry="2" />
<text x="452.58" y="1151.5" ></text>
</g>
<g >
<title>zif_implode (20,202,020 samples, 0.04%)</title><rect x="1040.4" y="1125" width="0.4" height="15.0" fill="rgb(209,59,2)" rx="2" ry="2" />
<text x="1043.42" y="1135.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="218.3" y="1061" width="0.2" height="15.0" fill="rgb(233,47,6)" rx="2" ry="2" />
<text x="221.33" y="1071.5" ></text>
</g>
<g >
<title>__fdget (30,303,030 samples, 0.05%)</title><rect x="1111.2" y="1125" width="0.7" height="15.0" fill="rgb(208,92,1)" rx="2" ry="2" />
<text x="1114.25" y="1135.5" ></text>
</g>
<g >
<title>tcp_fin (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="837" width="0.2" height="15.0" fill="rgb(224,207,53)" rx="2" ry="2" />
<text x="1095.08" y="847.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="834.2" y="837" width="0.2" height="15.0" fill="rgb(229,53,38)" rx="2" ry="2" />
<text x="837.17" y="847.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="718.3" y="933" width="0.2" height="15.0" fill="rgb(221,99,32)" rx="2" ry="2" />
<text x="721.33" y="943.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OP_SPEC_CV_TMPVAR_HANDLER (50,505,050 samples, 0.09%)</title><rect x="248.3" y="1125" width="1.1" height="15.0" fill="rgb(234,223,24)" rx="2" ry="2" />
<text x="251.33" y="1135.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1125" width="0.2" height="15.0" fill="rgb(214,181,14)" rx="2" ry="2" />
<text x="560.29" y="1135.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="741" width="2.9" height="15.0" fill="rgb(206,208,20)" rx="2" ry="2" />
<text x="1130.50" y="751.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="967.1" y="1013" width="0.2" height="15.0" fill="rgb(248,56,20)" rx="2" ry="2" />
<text x="970.08" y="1023.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="302.1" y="853" width="0.2" height="15.0" fill="rgb(251,132,3)" rx="2" ry="2" />
<text x="305.08" y="863.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1093" width="0.2" height="15.0" fill="rgb(247,44,9)" rx="2" ry="2" />
<text x="550.71" y="1103.5" ></text>
</g>
<g >
<title>php_array_merge (10,101,010 samples, 0.02%)</title><rect x="519.8" y="1109" width="0.2" height="15.0" fill="rgb(251,143,9)" rx="2" ry="2" />
<text x="522.79" y="1119.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (10,101,010 samples, 0.02%)</title><rect x="1096.2" y="1045" width="0.3" height="15.0" fill="rgb(243,34,34)" rx="2" ry="2" />
<text x="1099.25" y="1055.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1093" width="0.3" height="15.0" fill="rgb(214,71,40)" rx="2" ry="2" />
<text x="526.54" y="1103.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="726.7" y="949" width="0.2" height="15.0" fill="rgb(220,121,28)" rx="2" ry="2" />
<text x="729.67" y="959.5" ></text>
</g>
<g >
<title>TRACE-174$Fandom\Includes\Logging\FandomLoggingSpi::createLogger$87 (626,262,620 samples, 1.09%)</title><rect x="298.1" y="1141" width="12.9" height="15.0" fill="rgb(208,41,34)" rx="2" ry="2" />
<text x="301.12" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="672.5" y="1029" width="0.2" height="15.0" fill="rgb(215,160,52)" rx="2" ry="2" />
<text x="675.50" y="1039.5" ></text>
</g>
<g >
<title>__fget (10,101,010 samples, 0.02%)</title><rect x="926.2" y="773" width="0.3" height="15.0" fill="rgb(245,9,15)" rx="2" ry="2" />
<text x="929.25" y="783.5" ></text>
</g>
<g >
<title>__x64_sys_chdir (20,202,020 samples, 0.04%)</title><rect x="205.4" y="1125" width="0.4" height="15.0" fill="rgb(241,53,7)" rx="2" ry="2" />
<text x="208.42" y="1135.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="32.3" y="645" width="0.2" height="15.0" fill="rgb(223,102,39)" rx="2" ry="2" />
<text x="35.29" y="655.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1013" width="0.2" height="15.0" fill="rgb(216,28,39)" rx="2" ry="2" />
<text x="347.79" y="1023.5" ></text>
</g>
<g >
<title>zend_reference_destroy (10,101,010 samples, 0.02%)</title><rect x="477.5" y="1125" width="0.2" height="15.0" fill="rgb(227,28,4)" rx="2" ry="2" />
<text x="480.50" y="1135.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1093" width="0.2" height="15.0" fill="rgb(229,228,26)" rx="2" ry="2" />
<text x="1081.33" y="1103.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="30.2" y="981" width="0.2" height="15.0" fill="rgb(237,72,47)" rx="2" ry="2" />
<text x="33.21" y="991.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="922.5" y="789" width="0.2" height="15.0" fill="rgb(229,122,29)" rx="2" ry="2" />
<text x="925.50" y="799.5" ></text>
</g>
<g >
<title>all (57,212,120,640 samples, 100%)</title><rect x="10.0" y="1253" width="1180.0" height="15.0" fill="rgb(205,219,25)" rx="2" ry="2" />
<text x="13.00" y="1263.5" ></text>
</g>
<g >
<title>TRACE-336$Fandom\Includes\Database\FandomLoadBalancer::resolveServerArray$61 (20,202,020 samples, 0.04%)</title><rect x="491.5" y="1141" width="0.4" height="15.0" fill="rgb(236,221,25)" rx="2" ry="2" />
<text x="494.46" y="1151.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="411.9" y="949" width="0.2" height="15.0" fill="rgb(206,145,19)" rx="2" ry="2" />
<text x="414.88" y="959.5" ></text>
</g>
<g >
<title>TRACE-243$Wikimedia\Rdbms\LoadBalancer::forEachOpenPrimaryConnection$2340 (90,909,090 samples, 0.16%)</title><rect x="455.6" y="1141" width="1.9" height="15.0" fill="rgb(254,188,14)" rx="2" ry="2" />
<text x="458.62" y="1151.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="708.1" y="1093" width="0.2" height="15.0" fill="rgb(252,54,4)" rx="2" ry="2" />
<text x="711.12" y="1103.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="725" width="0.2" height="15.0" fill="rgb(222,201,21)" rx="2" ry="2" />
<text x="1091.33" y="735.5" ></text>
</g>
<g >
<title>TRACE-452$ExtensionRegistry::exportExtractedData$552 (141,414,140 samples, 0.25%)</title><rect x="525.4" y="1141" width="2.9" height="15.0" fill="rgb(214,213,35)" rx="2" ry="2" />
<text x="528.42" y="1151.5" ></text>
</g>
<g >
<title>zend_objects_store_put (10,101,010 samples, 0.02%)</title><rect x="887.1" y="1093" width="0.2" height="15.0" fill="rgb(235,79,48)" rx="2" ry="2" />
<text x="890.08" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="850.6" y="597" width="0.2" height="15.0" fill="rgb(226,80,46)" rx="2" ry="2" />
<text x="853.62" y="607.5" ></text>
</g>
<g >
<title>ext4_xattr_check_entries (10,101,010 samples, 0.02%)</title><rect x="956.9" y="757" width="0.2" height="15.0" fill="rgb(228,115,16)" rx="2" ry="2" />
<text x="959.88" y="767.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="1029" width="0.2" height="15.0" fill="rgb(206,67,41)" rx="2" ry="2" />
<text x="1117.17" y="1039.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="174.0" y="1061" width="0.4" height="15.0" fill="rgb(219,44,46)" rx="2" ry="2" />
<text x="176.96" y="1071.5" ></text>
</g>
<g >
<title>shutdown (313,131,310 samples, 0.55%)</title><rect x="1182.5" y="1221" width="6.5" height="15.0" fill="rgb(210,84,0)" rx="2" ry="2" />
<text x="1185.50" y="1231.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="308.8" y="1093" width="0.2" height="15.0" fill="rgb(219,22,32)" rx="2" ry="2" />
<text x="311.75" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1029" width="0.2" height="15.0" fill="rgb(254,170,9)" rx="2" ry="2" />
<text x="347.79" y="1039.5" ></text>
</g>
<g >
<title>netif_skb_features (20,202,020 samples, 0.04%)</title><rect x="1157.9" y="357" width="0.4" height="15.0" fill="rgb(207,167,27)" rx="2" ry="2" />
<text x="1160.92" y="367.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="545.6" y="1045" width="0.2" height="15.0" fill="rgb(239,204,36)" rx="2" ry="2" />
<text x="548.62" y="1055.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (30,303,030 samples, 0.05%)</title><rect x="192.7" y="1077" width="0.6" height="15.0" fill="rgb(209,156,22)" rx="2" ry="2" />
<text x="195.71" y="1087.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="789.0" y="757" width="0.2" height="15.0" fill="rgb(209,172,28)" rx="2" ry="2" />
<text x="791.96" y="767.5" ></text>
</g>
<g >
<title>populate_subpat_array (20,202,020 samples, 0.04%)</title><rect x="307.3" y="1093" width="0.4" height="15.0" fill="rgb(249,135,49)" rx="2" ry="2" />
<text x="310.29" y="1103.5" ></text>
</g>
<g >
<title>__do_sys_newstat (2,767,676,740 samples, 4.84%)</title><rect x="370.2" y="1045" width="57.1" height="15.0" fill="rgb(235,42,40)" rx="2" ry="2" />
<text x="373.21" y="1055.5" >__do_s..</text>
</g>
<g >
<title>zend_fetch_class_by_name (50,505,050 samples, 0.09%)</title><rect x="799.4" y="885" width="1.0" height="15.0" fill="rgb(217,8,20)" rx="2" ry="2" />
<text x="802.38" y="895.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="856.9" y="789" width="0.2" height="15.0" fill="rgb(232,162,0)" rx="2" ry="2" />
<text x="859.88" y="799.5" ></text>
</g>
<g >
<title>do_page_fault (10,101,010 samples, 0.02%)</title><rect x="190.6" y="1029" width="0.2" height="15.0" fill="rgb(234,126,10)" rx="2" ry="2" />
<text x="193.62" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (121,212,120 samples, 0.21%)</title><rect x="190.2" y="1077" width="2.5" height="15.0" fill="rgb(214,29,30)" rx="2" ry="2" />
<text x="193.21" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="1029" width="0.2" height="15.0" fill="rgb(247,12,46)" rx="2" ry="2" />
<text x="1022.79" y="1039.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (30,303,030 samples, 0.05%)</title><rect x="947.1" y="965" width="0.6" height="15.0" fill="rgb(223,0,5)" rx="2" ry="2" />
<text x="950.08" y="975.5" ></text>
</g>
<g >
<title>validate_xmit_skb (20,202,020 samples, 0.04%)</title><rect x="1165.4" y="869" width="0.4" height="15.0" fill="rgb(207,110,39)" rx="2" ry="2" />
<text x="1168.42" y="879.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="471.7" y="853" width="0.2" height="15.0" fill="rgb(209,79,32)" rx="2" ry="2" />
<text x="474.67" y="863.5" ></text>
</g>
<g >
<title>masquerade_tg (20,202,020 samples, 0.04%)</title><rect x="940.2" y="133" width="0.4" height="15.0" fill="rgb(211,180,45)" rx="2" ry="2" />
<text x="943.21" y="143.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="1140.2" y="1189" width="0.2" height="15.0" fill="rgb(246,61,43)" rx="2" ry="2" />
<text x="1143.21" y="1199.5" ></text>
</g>
<g >
<title>pow5mult (10,101,010 samples, 0.02%)</title><rect x="1139.8" y="1125" width="0.2" height="15.0" fill="rgb(253,104,51)" rx="2" ry="2" />
<text x="1142.79" y="1135.5" ></text>
</g>
<g >
<title>__slab_alloc (10,101,010 samples, 0.02%)</title><rect x="1126.2" y="885" width="0.3" height="15.0" fill="rgb(254,135,8)" rx="2" ry="2" />
<text x="1129.25" y="895.5" ></text>
</g>
<g >
<title>_emalloc_32 (10,101,010 samples, 0.02%)</title><rect x="894.8" y="1125" width="0.2" height="15.0" fill="rgb(227,142,34)" rx="2" ry="2" />
<text x="897.79" y="1135.5" ></text>
</g>
<g >
<title>poll_select_set_timeout (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1141" width="0.2" height="15.0" fill="rgb(217,56,4)" rx="2" ry="2" />
<text x="1118.21" y="1151.5" ></text>
</g>
<g >
<title>__virt_addr_valid (10,101,010 samples, 0.02%)</title><rect x="957.7" y="965" width="0.2" height="15.0" fill="rgb(229,202,11)" rx="2" ry="2" />
<text x="960.71" y="975.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (50,505,050 samples, 0.09%)</title><rect x="799.4" y="869" width="1.0" height="15.0" fill="rgb(207,119,30)" rx="2" ry="2" />
<text x="802.38" y="879.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find_entry (20,202,020 samples, 0.04%)</title><rect x="710.2" y="1077" width="0.4" height="15.0" fill="rgb(220,34,1)" rx="2" ry="2" />
<text x="713.21" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="917" width="0.3" height="15.0" fill="rgb(210,24,4)" rx="2" ry="2" />
<text x="1044.25" y="927.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="539.4" y="933" width="0.2" height="15.0" fill="rgb(249,206,52)" rx="2" ry="2" />
<text x="542.38" y="943.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="295.6" y="1029" width="0.2" height="15.0" fill="rgb(216,144,1)" rx="2" ry="2" />
<text x="298.62" y="1039.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1189" width="0.2" height="15.0" fill="rgb(211,37,43)" rx="2" ry="2" />
<text x="35.29" y="1199.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="244.4" y="1093" width="0.2" height="15.0" fill="rgb(243,176,26)" rx="2" ry="2" />
<text x="247.38" y="1103.5" ></text>
</g>
<g >
<title>__do_page_fault (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1061" width="0.2" height="15.0" fill="rgb(210,156,16)" rx="2" ry="2" />
<text x="1142.17" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1028.1" y="997" width="0.2" height="15.0" fill="rgb(250,198,30)" rx="2" ry="2" />
<text x="1031.12" y="1007.5" ></text>
</g>
<g >
<title>put_task_stack (10,101,010 samples, 0.02%)</title><rect x="475.2" y="997" width="0.2" height="15.0" fill="rgb(242,123,9)" rx="2" ry="2" />
<text x="478.21" y="1007.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="973.3" y="997" width="0.2" height="15.0" fill="rgb(224,218,8)" rx="2" ry="2" />
<text x="976.33" y="1007.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (30,303,030 samples, 0.05%)</title><rect x="935.6" y="821" width="0.6" height="15.0" fill="rgb(242,14,6)" rx="2" ry="2" />
<text x="938.62" y="831.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="970.6" y="933" width="0.2" height="15.0" fill="rgb(217,102,42)" rx="2" ry="2" />
<text x="973.62" y="943.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="869" width="0.2" height="15.0" fill="rgb(244,3,3)" rx="2" ry="2" />
<text x="1090.50" y="879.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="597" width="0.2" height="15.0" fill="rgb(250,59,21)" rx="2" ry="2" />
<text x="1170.08" y="607.5" ></text>
</g>
<g >
<title>generic_update_time (10,101,010 samples, 0.02%)</title><rect x="1036.9" y="917" width="0.2" height="15.0" fill="rgb(233,59,54)" rx="2" ry="2" />
<text x="1039.88" y="927.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="1096.2" y="1077" width="0.3" height="15.0" fill="rgb(221,181,21)" rx="2" ry="2" />
<text x="1099.25" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1045" width="0.2" height="15.0" fill="rgb(208,140,21)" rx="2" ry="2" />
<text x="297.38" y="1055.5" ></text>
</g>
<g >
<title>[php-fpm] (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="965" width="0.2" height="15.0" fill="rgb(250,80,29)" rx="2" ry="2" />
<text x="1091.33" y="975.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_CV_OP_DATA_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="622.7" y="1125" width="0.4" height="15.0" fill="rgb(254,107,6)" rx="2" ry="2" />
<text x="625.71" y="1135.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="442.3" y="949" width="0.2" height="15.0" fill="rgb(215,115,1)" rx="2" ry="2" />
<text x="445.29" y="959.5" ></text>
</g>
<g >
<title>zend_is_identical (30,303,030 samples, 0.05%)</title><rect x="1066.2" y="1141" width="0.7" height="15.0" fill="rgb(239,121,39)" rx="2" ry="2" />
<text x="1069.25" y="1151.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (10,101,010 samples, 0.02%)</title><rect x="219.6" y="1093" width="0.2" height="15.0" fill="rgb(248,222,46)" rx="2" ry="2" />
<text x="222.58" y="1103.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (50,505,050 samples, 0.09%)</title><rect x="338.8" y="1093" width="1.0" height="15.0" fill="rgb(234,145,44)" rx="2" ry="2" />
<text x="341.75" y="1103.5" ></text>
</g>
<g >
<title>TRACE-195$Monolog\Formatter\NormalizerFormatter::normalize$153 (20,202,020 samples, 0.04%)</title><rect x="340.2" y="1141" width="0.4" height="15.0" fill="rgb(253,152,42)" rx="2" ry="2" />
<text x="343.21" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1029" width="0.2" height="15.0" fill="rgb(247,223,44)" rx="2" ry="2" />
<text x="1083.83" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="641.7" y="965" width="0.2" height="15.0" fill="rgb(221,36,32)" rx="2" ry="2" />
<text x="644.67" y="975.5" ></text>
</g>
<g >
<title>net_rx_action (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="869" width="3.1" height="15.0" fill="rgb(210,148,46)" rx="2" ry="2" />
<text x="1187.58" y="879.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="805.2" y="837" width="0.4" height="15.0" fill="rgb(218,46,26)" rx="2" ry="2" />
<text x="808.21" y="847.5" ></text>
</g>
<g >
<title>nf_nat_setup_info (10,101,010 samples, 0.02%)</title><rect x="941.9" y="613" width="0.2" height="15.0" fill="rgb(214,107,53)" rx="2" ry="2" />
<text x="944.88" y="623.5" ></text>
</g>
<g >
<title>_php_stream_open_wrapper_ex (50,505,050 samples, 0.09%)</title><rect x="948.1" y="1093" width="1.1" height="15.0" fill="rgb(210,133,42)" rx="2" ry="2" />
<text x="951.12" y="1103.5" ></text>
</g>
<g >
<title>br_handle_frame (101,010,100 samples, 0.18%)</title><rect x="939.4" y="501" width="2.1" height="15.0" fill="rgb(229,212,9)" rx="2" ry="2" />
<text x="942.38" y="511.5" ></text>
</g>
<g >
<title>copy_user_generic_string (60,606,060 samples, 0.11%)</title><rect x="370.8" y="1013" width="1.3" height="15.0" fill="rgb(243,127,48)" rx="2" ry="2" />
<text x="373.83" y="1023.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="850.6" y="709" width="0.2" height="15.0" fill="rgb(218,210,36)" rx="2" ry="2" />
<text x="853.62" y="719.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="443.3" y="933" width="0.2" height="15.0" fill="rgb(214,143,41)" rx="2" ry="2" />
<text x="446.33" y="943.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (30,303,030 samples, 0.05%)</title><rect x="1170.2" y="1125" width="0.6" height="15.0" fill="rgb(213,223,9)" rx="2" ry="2" />
<text x="1173.21" y="1135.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="943.1" y="869" width="0.2" height="15.0" fill="rgb(231,160,46)" rx="2" ry="2" />
<text x="946.12" y="879.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="1058.5" y="1093" width="0.3" height="15.0" fill="rgb(212,201,2)" rx="2" ry="2" />
<text x="1061.54" y="1103.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="903.5" y="1029" width="0.3" height="15.0" fill="rgb(223,176,36)" rx="2" ry="2" />
<text x="906.54" y="1039.5" ></text>
</g>
<g >
<title>virtnet_poll (20,202,020 samples, 0.04%)</title><rect x="193.5" y="1013" width="0.5" height="15.0" fill="rgb(232,39,12)" rx="2" ry="2" />
<text x="196.54" y="1023.5" ></text>
</g>
<g >
<title>zend_destroy_file_handle (10,101,010 samples, 0.02%)</title><rect x="740.4" y="853" width="0.2" height="15.0" fill="rgb(228,27,48)" rx="2" ry="2" />
<text x="743.42" y="863.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="496.7" y="1029" width="0.2" height="15.0" fill="rgb(225,112,32)" rx="2" ry="2" />
<text x="499.67" y="1039.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="342.5" y="1109" width="0.2" height="15.0" fill="rgb(245,81,27)" rx="2" ry="2" />
<text x="345.50" y="1119.5" ></text>
</g>
<g >
<title>up_read (10,101,010 samples, 0.02%)</title><rect x="378.1" y="885" width="0.2" height="15.0" fill="rgb(239,206,32)" rx="2" ry="2" />
<text x="381.12" y="895.5" ></text>
</g>
<g >
<title>zend_accel_load_script (282,828,280 samples, 0.49%)</title><rect x="784.4" y="965" width="5.8" height="15.0" fill="rgb(251,109,6)" rx="2" ry="2" />
<text x="787.38" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.26%)</title><rect x="774.0" y="1013" width="3.1" height="15.0" fill="rgb(215,205,33)" rx="2" ry="2" />
<text x="776.96" y="1023.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (50,505,050 samples, 0.09%)</title><rect x="713.1" y="1013" width="1.1" height="15.0" fill="rgb(234,100,27)" rx="2" ry="2" />
<text x="716.12" y="1023.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (20,202,020 samples, 0.04%)</title><rect x="179.8" y="1045" width="0.4" height="15.0" fill="rgb(221,150,16)" rx="2" ry="2" />
<text x="182.79" y="1055.5" ></text>
</g>
<g >
<title>__sys_accept4 (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1109" width="0.2" height="15.0" fill="rgb(228,114,1)" rx="2" ry="2" />
<text x="207.17" y="1119.5" ></text>
</g>
<g >
<title>ip_output (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="213" width="0.4" height="15.0" fill="rgb(240,205,36)" rx="2" ry="2" />
<text x="1092.58" y="223.5" ></text>
</g>
<g >
<title>zif_array_map (60,606,060 samples, 0.11%)</title><rect x="349.6" y="1125" width="1.2" height="15.0" fill="rgb(246,77,44)" rx="2" ry="2" />
<text x="352.58" y="1135.5" ></text>
</g>
<g >
<title>__kmalloc (10,101,010 samples, 0.02%)</title><rect x="910.0" y="949" width="0.2" height="15.0" fill="rgb(246,224,45)" rx="2" ry="2" />
<text x="913.00" y="959.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="348.3" y="1125" width="0.5" height="15.0" fill="rgb(217,158,14)" rx="2" ry="2" />
<text x="351.33" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (60,606,060 samples, 0.11%)</title><rect x="961.5" y="1093" width="1.2" height="15.0" fill="rgb(236,71,46)" rx="2" ry="2" />
<text x="964.46" y="1103.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (50,505,050 samples, 0.09%)</title><rect x="349.8" y="1109" width="1.0" height="15.0" fill="rgb(228,118,7)" rx="2" ry="2" />
<text x="352.79" y="1119.5" ></text>
</g>
<g >
<title>security_prepare_creds (10,101,010 samples, 0.02%)</title><rect x="910.4" y="949" width="0.2" height="15.0" fill="rgb(248,108,19)" rx="2" ry="2" />
<text x="913.42" y="959.5" ></text>
</g>
<g >
<title>[libz.so.1.2.11] (30,303,030 samples, 0.05%)</title><rect x="32.5" y="1205" width="0.6" height="15.0" fill="rgb(216,20,0)" rx="2" ry="2" />
<text x="35.50" y="1215.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_TMP_HANDLER (10,101,010 samples, 0.02%)</title><rect x="554.6" y="1141" width="0.2" height="15.0" fill="rgb(234,70,44)" rx="2" ry="2" />
<text x="557.58" y="1151.5" ></text>
</g>
<g >
<title>TRACE-354$Monolog\Handler\Handler::__destruct$41 (10,101,010 samples, 0.02%)</title><rect x="1084.0" y="1077" width="0.2" height="15.0" fill="rgb(243,72,49)" rx="2" ry="2" />
<text x="1086.96" y="1087.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="523.8" y="837" width="0.2" height="15.0" fill="rgb(246,124,3)" rx="2" ry="2" />
<text x="526.75" y="847.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="789.0" y="693" width="0.2" height="15.0" fill="rgb(249,0,8)" rx="2" ry="2" />
<text x="791.96" y="703.5" ></text>
</g>
<g >
<title>php_json_scan (60,606,060 samples, 0.11%)</title><rect x="1044.2" y="1077" width="1.2" height="15.0" fill="rgb(226,77,37)" rx="2" ry="2" />
<text x="1047.17" y="1087.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="654.2" y="917" width="0.2" height="15.0" fill="rgb(218,201,12)" rx="2" ry="2" />
<text x="657.17" y="927.5" ></text>
</g>
<g >
<title>TRACE-164$MediaWiki\Config\ServiceOptions::__construct$43 (30,303,030 samples, 0.05%)</title><rect x="294.6" y="1141" width="0.6" height="15.0" fill="rgb(230,151,12)" rx="2" ry="2" />
<text x="297.58" y="1151.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (60,606,060 samples, 0.11%)</title><rect x="332.3" y="1125" width="1.2" height="15.0" fill="rgb(210,40,10)" rx="2" ry="2" />
<text x="335.29" y="1135.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="967.1" y="773" width="0.2" height="15.0" fill="rgb(227,17,15)" rx="2" ry="2" />
<text x="970.08" y="783.5" ></text>
</g>
<g >
<title>skb_free_head (10,101,010 samples, 0.02%)</title><rect x="682.1" y="613" width="0.2" height="15.0" fill="rgb(250,72,38)" rx="2" ry="2" />
<text x="685.08" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="948.3" y="1029" width="0.5" height="15.0" fill="rgb(253,138,28)" rx="2" ry="2" />
<text x="951.33" y="1039.5" ></text>
</g>
<g >
<title>get_vfs_caps_from_disk (121,212,120 samples, 0.21%)</title><rect x="376.2" y="949" width="2.6" height="15.0" fill="rgb(235,91,0)" rx="2" ry="2" />
<text x="379.25" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.12%)</title><rect x="217.1" y="1109" width="1.4" height="15.0" fill="rgb(223,116,20)" rx="2" ry="2" />
<text x="220.08" y="1119.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="930.8" y="869" width="0.2" height="15.0" fill="rgb(252,119,20)" rx="2" ry="2" />
<text x="933.83" y="879.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="949" width="0.2" height="15.0" fill="rgb(230,52,0)" rx="2" ry="2" />
<text x="1083.83" y="959.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="940.8" y="357" width="0.2" height="15.0" fill="rgb(214,111,26)" rx="2" ry="2" />
<text x="943.83" y="367.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="925.8" y="821" width="0.2" height="15.0" fill="rgb(225,23,18)" rx="2" ry="2" />
<text x="928.83" y="831.5" ></text>
</g>
<g >
<title>update_blocked_averages (10,101,010 samples, 0.02%)</title><rect x="932.3" y="741" width="0.2" height="15.0" fill="rgb(243,217,22)" rx="2" ry="2" />
<text x="935.29" y="751.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="936.2" y="853" width="0.5" height="15.0" fill="rgb(253,100,30)" rx="2" ry="2" />
<text x="939.25" y="863.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="856.9" y="725" width="0.2" height="15.0" fill="rgb(210,48,8)" rx="2" ry="2" />
<text x="859.88" y="735.5" ></text>
</g>
<g >
<title>rw_verify_area (10,101,010 samples, 0.02%)</title><rect x="1108.5" y="1077" width="0.3" height="15.0" fill="rgb(206,54,50)" rx="2" ry="2" />
<text x="1111.54" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="687.7" y="837" width="0.2" height="15.0" fill="rgb(247,105,50)" rx="2" ry="2" />
<text x="690.71" y="847.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="619.0" y="933" width="0.2" height="15.0" fill="rgb(229,95,0)" rx="2" ry="2" />
<text x="621.96" y="943.5" ></text>
</g>
<g >
<title>ip_rcv_core.isra.20 (10,101,010 samples, 0.02%)</title><rect x="1025.2" y="565" width="0.2" height="15.0" fill="rgb(207,20,16)" rx="2" ry="2" />
<text x="1028.21" y="575.5" ></text>
</g>
<g >
<title>zif_defined (20,202,020 samples, 0.04%)</title><rect x="1022.5" y="1125" width="0.4" height="15.0" fill="rgb(221,10,27)" rx="2" ry="2" />
<text x="1025.50" y="1135.5" ></text>
</g>
<g >
<title>zval_ptr_dtor (10,101,010 samples, 0.02%)</title><rect x="883.5" y="1061" width="0.3" height="15.0" fill="rgb(222,81,32)" rx="2" ry="2" />
<text x="886.54" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (30,303,030 samples, 0.05%)</title><rect x="23.8" y="1189" width="0.6" height="15.0" fill="rgb(217,83,47)" rx="2" ry="2" />
<text x="26.75" y="1199.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="890.0" y="885" width="0.2" height="15.0" fill="rgb(215,145,36)" rx="2" ry="2" />
<text x="893.00" y="895.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="967.1" y="821" width="0.2" height="15.0" fill="rgb(220,180,26)" rx="2" ry="2" />
<text x="970.08" y="831.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="837" width="0.2" height="15.0" fill="rgb(246,39,24)" rx="2" ry="2" />
<text x="1117.17" y="847.5" ></text>
</g>
<g >
<title>sock_def_readable (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="757" width="0.2" height="15.0" fill="rgb(216,19,23)" rx="2" ry="2" />
<text x="1150.29" y="767.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_pfc_send_pub (20,202,020 samples, 0.04%)</title><rect x="1051.7" y="1045" width="0.4" height="15.0" fill="rgb(216,78,14)" rx="2" ry="2" />
<text x="1054.67" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="869" width="0.2" height="15.0" fill="rgb(217,197,34)" rx="2" ry="2" />
<text x="1086.33" y="879.5" ></text>
</g>
<g >
<title>locks_remove_posix (10,101,010 samples, 0.02%)</title><rect x="1144.2" y="1125" width="0.2" height="15.0" fill="rgb(209,36,16)" rx="2" ry="2" />
<text x="1147.17" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1182.3" y="1125" width="0.2" height="15.0" fill="rgb(244,155,42)" rx="2" ry="2" />
<text x="1185.29" y="1135.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (20,202,020 samples, 0.04%)</title><rect x="1179.0" y="1077" width="0.4" height="15.0" fill="rgb(230,223,35)" rx="2" ry="2" />
<text x="1181.96" y="1087.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="904.0" y="869" width="0.2" height="15.0" fill="rgb(236,7,12)" rx="2" ry="2" />
<text x="906.96" y="879.5" ></text>
</g>
<g >
<title>zend_jit_find_ns_func_helper (10,101,010 samples, 0.02%)</title><rect x="1085.8" y="1061" width="0.2" height="15.0" fill="rgb(212,69,37)" rx="2" ry="2" />
<text x="1088.83" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="371.9" y="949" width="0.2" height="15.0" fill="rgb(205,92,15)" rx="2" ry="2" />
<text x="374.88" y="959.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="799.4" y="805" width="0.6" height="15.0" fill="rgb(230,6,12)" rx="2" ry="2" />
<text x="802.38" y="815.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="246.5" y="1093" width="0.2" height="15.0" fill="rgb(238,207,3)" rx="2" ry="2" />
<text x="249.46" y="1103.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="914.6" y="869" width="0.2" height="15.0" fill="rgb(217,144,22)" rx="2" ry="2" />
<text x="917.58" y="879.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (30,303,030 samples, 0.05%)</title><rect x="536.0" y="1109" width="0.7" height="15.0" fill="rgb(251,28,49)" rx="2" ry="2" />
<text x="539.04" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (70,707,070 samples, 0.12%)</title><rect x="282.9" y="1093" width="1.5" height="15.0" fill="rgb(225,215,39)" rx="2" ry="2" />
<text x="285.92" y="1103.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="682.1" y="773" width="0.2" height="15.0" fill="rgb(226,163,49)" rx="2" ry="2" />
<text x="685.08" y="783.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_SPEC_CV_TMP_RETVAL_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="547.9" y="1141" width="0.4" height="15.0" fill="rgb(210,111,7)" rx="2" ry="2" />
<text x="550.92" y="1151.5" ></text>
</g>
<g >
<title>__sk_free (10,101,010 samples, 0.02%)</title><rect x="30.4" y="933" width="0.2" height="15.0" fill="rgb(205,22,16)" rx="2" ry="2" />
<text x="33.42" y="943.5" ></text>
</g>
<g >
<title>TRACE-159$Wikimedia\Services\NoSuchServiceException::__construct$39 (121,212,120 samples, 0.21%)</title><rect x="285.4" y="1141" width="2.5" height="15.0" fill="rgb(218,105,24)" rx="2" ry="2" />
<text x="288.42" y="1151.5" ></text>
</g>
<g >
<title>zend_closure_get_closure (10,101,010 samples, 0.02%)</title><rect x="711.9" y="1109" width="0.2" height="15.0" fill="rgb(216,135,18)" rx="2" ry="2" />
<text x="714.88" y="1119.5" ></text>
</g>
<g >
<title>php_request_startup (191,919,190 samples, 0.34%)</title><rect x="1102.7" y="1173" width="4.0" height="15.0" fill="rgb(210,125,2)" rx="2" ry="2" />
<text x="1105.71" y="1183.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (80,808,080 samples, 0.14%)</title><rect x="1028.5" y="1013" width="1.7" height="15.0" fill="rgb(248,41,48)" rx="2" ry="2" />
<text x="1031.54" y="1023.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="296.9" y="1045" width="0.2" height="15.0" fill="rgb(221,151,3)" rx="2" ry="2" />
<text x="299.88" y="1055.5" ></text>
</g>
<g >
<title>zend_closure_get_closure (10,101,010 samples, 0.02%)</title><rect x="543.5" y="1093" width="0.3" height="15.0" fill="rgb(237,29,12)" rx="2" ry="2" />
<text x="546.54" y="1103.5" ></text>
</g>
<g >
<title>zif_implode (10,101,010 samples, 0.02%)</title><rect x="1072.3" y="1141" width="0.2" height="15.0" fill="rgb(221,164,2)" rx="2" ry="2" />
<text x="1075.29" y="1151.5" ></text>
</g>
<g >
<title>gc_possible_root (90,909,090 samples, 0.16%)</title><rect x="1060.0" y="1141" width="1.9" height="15.0" fill="rgb(213,62,15)" rx="2" ry="2" />
<text x="1063.00" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="881.2" y="837" width="0.3" height="15.0" fill="rgb(252,187,43)" rx="2" ry="2" />
<text x="884.25" y="847.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (10,101,010 samples, 0.02%)</title><rect x="289.4" y="1093" width="0.2" height="15.0" fill="rgb(224,76,14)" rx="2" ry="2" />
<text x="292.38" y="1103.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="30.2" y="805" width="0.2" height="15.0" fill="rgb(242,185,35)" rx="2" ry="2" />
<text x="33.21" y="815.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="924.2" y="1013" width="0.2" height="15.0" fill="rgb(242,73,22)" rx="2" ry="2" />
<text x="927.17" y="1023.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="677.7" y="597" width="0.2" height="15.0" fill="rgb(241,39,1)" rx="2" ry="2" />
<text x="680.71" y="607.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="905.4" y="1045" width="0.2" height="15.0" fill="rgb(251,184,7)" rx="2" ry="2" />
<text x="908.42" y="1055.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1029" width="0.2" height="15.0" fill="rgb(205,103,28)" rx="2" ry="2" />
<text x="521.96" y="1039.5" ></text>
</g>
<g >
<title>sk_destruct (10,101,010 samples, 0.02%)</title><rect x="30.4" y="917" width="0.2" height="15.0" fill="rgb(252,51,46)" rx="2" ry="2" />
<text x="33.42" y="927.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="936.7" y="821" width="0.2" height="15.0" fill="rgb(209,200,2)" rx="2" ry="2" />
<text x="939.67" y="831.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (20,202,020 samples, 0.04%)</title><rect x="1180.0" y="1141" width="0.4" height="15.0" fill="rgb(206,26,30)" rx="2" ry="2" />
<text x="1183.00" y="1151.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="597" width="0.3" height="15.0" fill="rgb(205,159,43)" rx="2" ry="2" />
<text x="1134.25" y="607.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1056.7" y="1093" width="0.2" height="15.0" fill="rgb(247,154,5)" rx="2" ry="2" />
<text x="1059.67" y="1103.5" ></text>
</g>
<g >
<title>setitimer (10,101,010 samples, 0.02%)</title><rect x="1104.4" y="1157" width="0.2" height="15.0" fill="rgb(222,190,41)" rx="2" ry="2" />
<text x="1107.38" y="1167.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="921.0" y="997" width="0.2" height="15.0" fill="rgb(208,139,11)" rx="2" ry="2" />
<text x="924.04" y="1007.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (50,505,050 samples, 0.09%)</title><rect x="697.1" y="1093" width="1.0" height="15.0" fill="rgb(252,220,8)" rx="2" ry="2" />
<text x="700.08" y="1103.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (40,404,040 samples, 0.07%)</title><rect x="1178.1" y="1061" width="0.9" height="15.0" fill="rgb(220,224,26)" rx="2" ry="2" />
<text x="1181.12" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1114.0" y="981" width="0.2" height="15.0" fill="rgb(245,209,48)" rx="2" ry="2" />
<text x="1116.96" y="991.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="689.0" y="965" width="0.2" height="15.0" fill="rgb(254,192,27)" rx="2" ry="2" />
<text x="691.96" y="975.5" ></text>
</g>
<g >
<title>zm_deactivate_mb_regex (10,101,010 samples, 0.02%)</title><rect x="1101.0" y="1125" width="0.2" height="15.0" fill="rgb(223,218,34)" rx="2" ry="2" />
<text x="1104.04" y="1135.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="845.6" y="821" width="0.2" height="15.0" fill="rgb(231,214,5)" rx="2" ry="2" />
<text x="848.62" y="831.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="677.7" y="645" width="0.2" height="15.0" fill="rgb(246,50,49)" rx="2" ry="2" />
<text x="680.71" y="655.5" ></text>
</g>
<g >
<title>do_sys_poll (212,121,210 samples, 0.37%)</title><rect x="1110.8" y="1141" width="4.4" height="15.0" fill="rgb(234,90,4)" rx="2" ry="2" />
<text x="1113.83" y="1151.5" ></text>
</g>
<g >
<title>__inet_lookup_established (10,101,010 samples, 0.02%)</title><rect x="395.4" y="645" width="0.2" height="15.0" fill="rgb(240,199,47)" rx="2" ry="2" />
<text x="398.42" y="655.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="205.6" y="965" width="0.2" height="15.0" fill="rgb(219,15,2)" rx="2" ry="2" />
<text x="208.62" y="975.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (383,838,380 samples, 0.67%)</title><rect x="825.2" y="917" width="7.9" height="15.0" fill="rgb(210,166,6)" rx="2" ry="2" />
<text x="828.21" y="927.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (121,212,120 samples, 0.21%)</title><rect x="1024.2" y="901" width="2.5" height="15.0" fill="rgb(220,1,50)" rx="2" ry="2" />
<text x="1027.17" y="911.5" ></text>
</g>
<g >
<title>persistent_compile_file (60,606,060 samples, 0.11%)</title><rect x="269.6" y="949" width="1.2" height="15.0" fill="rgb(213,115,18)" rx="2" ry="2" />
<text x="272.58" y="959.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="32.3" y="757" width="0.2" height="15.0" fill="rgb(253,5,6)" rx="2" ry="2" />
<text x="35.29" y="767.5" ></text>
</g>
<g >
<title>__put_user_4 (10,101,010 samples, 0.02%)</title><rect x="1133.3" y="1125" width="0.2" height="15.0" fill="rgb(223,38,36)" rx="2" ry="2" />
<text x="1136.33" y="1135.5" ></text>
</g>
<g >
<title>zend_exception_save (10,101,010 samples, 0.02%)</title><rect x="1004.2" y="1109" width="0.2" height="15.0" fill="rgb(228,60,50)" rx="2" ry="2" />
<text x="1007.17" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.12%)</title><rect x="931.0" y="917" width="1.5" height="15.0" fill="rgb(239,198,23)" rx="2" ry="2" />
<text x="934.04" y="927.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="740.2" y="869" width="0.4" height="15.0" fill="rgb(217,178,43)" rx="2" ry="2" />
<text x="743.21" y="879.5" ></text>
</g>
<g >
<title>zif_date_format (10,101,010 samples, 0.02%)</title><rect x="1021.5" y="1125" width="0.2" height="15.0" fill="rgb(251,107,19)" rx="2" ry="2" />
<text x="1024.46" y="1135.5" ></text>
</g>
<g >
<title>br_pass_frame_up (121,212,120 samples, 0.21%)</title><rect x="1184.8" y="709" width="2.5" height="15.0" fill="rgb(225,21,9)" rx="2" ry="2" />
<text x="1187.79" y="719.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1077" width="0.2" height="15.0" fill="rgb(225,119,17)" rx="2" ry="2" />
<text x="693.62" y="1087.5" ></text>
</g>
<g >
<title>memcached_get_user_data (10,101,010 samples, 0.02%)</title><rect x="1134.6" y="1205" width="0.2" height="15.0" fill="rgb(249,185,28)" rx="2" ry="2" />
<text x="1137.58" y="1215.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="641.5" y="1045" width="0.2" height="15.0" fill="rgb(249,144,26)" rx="2" ry="2" />
<text x="644.46" y="1055.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1169.2" y="1173" width="0.2" height="15.0" fill="rgb(237,182,54)" rx="2" ry="2" />
<text x="1172.17" y="1183.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="767.5" y="949" width="0.4" height="15.0" fill="rgb(244,125,14)" rx="2" ry="2" />
<text x="770.50" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (131,313,130 samples, 0.23%)</title><rect x="525.6" y="1093" width="2.7" height="15.0" fill="rgb(245,93,37)" rx="2" ry="2" />
<text x="528.62" y="1103.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="921.9" y="869" width="0.2" height="15.0" fill="rgb(217,66,35)" rx="2" ry="2" />
<text x="924.88" y="879.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="416.9" y="853" width="0.2" height="15.0" fill="rgb(216,82,46)" rx="2" ry="2" />
<text x="419.88" y="863.5" ></text>
</g>
<g >
<title>ctnetlink_conntrack_event (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="805" width="0.3" height="15.0" fill="rgb(212,179,45)" rx="2" ry="2" />
<text x="1036.54" y="815.5" ></text>
</g>
<g >
<title>tcp_set_state (10,101,010 samples, 0.02%)</title><rect x="799.0" y="533" width="0.2" height="15.0" fill="rgb(238,76,52)" rx="2" ry="2" />
<text x="801.96" y="543.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="515.6" y="1125" width="0.2" height="15.0" fill="rgb(208,123,5)" rx="2" ry="2" />
<text x="518.62" y="1135.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="767.7" y="853" width="0.2" height="15.0" fill="rgb(225,184,28)" rx="2" ry="2" />
<text x="770.71" y="863.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1013" width="0.2" height="15.0" fill="rgb(213,80,23)" rx="2" ry="2" />
<text x="207.17" y="1023.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (20,202,020 samples, 0.04%)</title><rect x="1119.6" y="1045" width="0.4" height="15.0" fill="rgb(232,43,14)" rx="2" ry="2" />
<text x="1122.58" y="1055.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="718.3" y="853" width="0.2" height="15.0" fill="rgb(231,200,5)" rx="2" ry="2" />
<text x="721.33" y="863.5" ></text>
</g>
<g >
<title>zif_mt_rand (20,202,020 samples, 0.04%)</title><rect x="1073.8" y="1141" width="0.4" height="15.0" fill="rgb(220,121,21)" rx="2" ry="2" />
<text x="1076.75" y="1151.5" ></text>
</g>
<g >
<title>rw_verify_area (10,101,010 samples, 0.02%)</title><rect x="1037.5" y="981" width="0.2" height="15.0" fill="rgb(212,10,31)" rx="2" ry="2" />
<text x="1040.50" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="677.9" y="757" width="0.2" height="15.0" fill="rgb(234,77,26)" rx="2" ry="2" />
<text x="680.92" y="767.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="925.4" y="677" width="0.2" height="15.0" fill="rgb(213,20,21)" rx="2" ry="2" />
<text x="928.42" y="687.5" ></text>
</g>
<g >
<title>execute_ex (242,424,240 samples, 0.42%)</title><rect x="1086.5" y="1077" width="5.0" height="15.0" fill="rgb(222,65,12)" rx="2" ry="2" />
<text x="1089.46" y="1087.5" ></text>
</g>
<g >
<title>strncpy_from_user (30,303,030 samples, 0.05%)</title><rect x="725.8" y="917" width="0.7" height="15.0" fill="rgb(224,214,18)" rx="2" ry="2" />
<text x="728.83" y="927.5" ></text>
</g>
<g >
<title>zend_ini_get_value (20,202,020 samples, 0.04%)</title><rect x="1041.5" y="1109" width="0.4" height="15.0" fill="rgb(242,50,53)" rx="2" ry="2" />
<text x="1044.46" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="932.3" y="789" width="0.2" height="15.0" fill="rgb(231,60,51)" rx="2" ry="2" />
<text x="935.29" y="799.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="325" width="0.4" height="15.0" fill="rgb(236,19,3)" rx="2" ry="2" />
<text x="1092.58" y="335.5" ></text>
</g>
<g >
<title>TRACE-445$MediaWiki\Config\ServiceOptions::__construct$40 (10,101,010 samples, 0.02%)</title><rect x="525.0" y="1141" width="0.2" height="15.0" fill="rgb(254,216,6)" rx="2" ry="2" />
<text x="528.00" y="1151.5" ></text>
</g>
<g >
<title>ip_local_deliver (30,303,030 samples, 0.05%)</title><rect x="1025.4" y="549" width="0.6" height="15.0" fill="rgb(245,56,11)" rx="2" ry="2" />
<text x="1028.42" y="559.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="917" width="0.2" height="15.0" fill="rgb(211,54,13)" rx="2" ry="2" />
<text x="1170.08" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (111,111,110 samples, 0.19%)</title><rect x="532.9" y="997" width="2.3" height="15.0" fill="rgb(241,69,34)" rx="2" ry="2" />
<text x="535.92" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="949.4" y="1045" width="0.2" height="15.0" fill="rgb(210,23,45)" rx="2" ry="2" />
<text x="952.38" y="1055.5" ></text>
</g>
<g >
<title>conntrack_mt_v3 (10,101,010 samples, 0.02%)</title><rect x="925.4" y="453" width="0.2" height="15.0" fill="rgb(252,82,2)" rx="2" ry="2" />
<text x="928.42" y="463.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="873.5" y="965" width="0.3" height="15.0" fill="rgb(250,190,17)" rx="2" ry="2" />
<text x="876.54" y="975.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_CONST_HANDLER (50,505,050 samples, 0.09%)</title><rect x="610.0" y="1125" width="1.0" height="15.0" fill="rgb(230,140,32)" rx="2" ry="2" />
<text x="613.00" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="106.9" y="917" width="0.2" height="15.0" fill="rgb(216,75,17)" rx="2" ry="2" />
<text x="109.88" y="927.5" ></text>
</g>
<g >
<title>sapi_activate (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1157" width="0.2" height="15.0" fill="rgb(221,153,35)" rx="2" ry="2" />
<text x="1106.96" y="1167.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1182.3" y="1077" width="0.2" height="15.0" fill="rgb(252,11,37)" rx="2" ry="2" />
<text x="1185.29" y="1087.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="337.9" y="1093" width="0.2" height="15.0" fill="rgb(254,147,48)" rx="2" ry="2" />
<text x="340.92" y="1103.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_W_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1141" width="0.2" height="15.0" fill="rgb(207,156,32)" rx="2" ry="2" />
<text x="554.67" y="1151.5" ></text>
</g>
<g >
<title>TRACE-188$ResourceLoader::register$350 (60,606,060 samples, 0.11%)</title><rect x="332.3" y="1141" width="1.2" height="15.0" fill="rgb(211,50,54)" rx="2" ry="2" />
<text x="335.29" y="1151.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.62 (10,101,010 samples, 0.02%)</title><rect x="1130.2" y="533" width="0.2" height="15.0" fill="rgb(248,122,23)" rx="2" ry="2" />
<text x="1133.21" y="543.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="270.4" y="917" width="0.2" height="15.0" fill="rgb(237,183,52)" rx="2" ry="2" />
<text x="273.42" y="927.5" ></text>
</g>
<g >
<title>zend_accel_load_script (20,202,020 samples, 0.04%)</title><rect x="688.1" y="965" width="0.4" height="15.0" fill="rgb(251,161,25)" rx="2" ry="2" />
<text x="691.12" y="975.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="967.1" y="757" width="0.2" height="15.0" fill="rgb(224,86,44)" rx="2" ry="2" />
<text x="970.08" y="767.5" ></text>
</g>
<g >
<title>zend_check_property_access (20,202,020 samples, 0.04%)</title><rect x="1083.3" y="1045" width="0.5" height="15.0" fill="rgb(253,187,48)" rx="2" ry="2" />
<text x="1086.33" y="1055.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="939.2" y="645" width="0.2" height="15.0" fill="rgb(230,53,33)" rx="2" ry="2" />
<text x="942.17" y="655.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 0.30%)</title><rect x="1035.0" y="1061" width="3.5" height="15.0" fill="rgb(234,197,5)" rx="2" ry="2" />
<text x="1038.00" y="1071.5" ></text>
</g>
<g >
<title>zend_sort (222,222,220 samples, 0.39%)</title><rect x="511.0" y="1093" width="4.6" height="15.0" fill="rgb(245,73,8)" rx="2" ry="2" />
<text x="514.04" y="1103.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_in (10,101,010 samples, 0.02%)</title><rect x="1187.5" y="741" width="0.2" height="15.0" fill="rgb(227,105,30)" rx="2" ry="2" />
<text x="1190.50" y="751.5" ></text>
</g>
<g >
<title>spl_perform_autoload (80,808,080 samples, 0.14%)</title><rect x="921.2" y="981" width="1.7" height="15.0" fill="rgb(240,92,47)" rx="2" ry="2" />
<text x="924.25" y="991.5" ></text>
</g>
<g >
<title>__hrtimer_init (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="837" width="0.2" height="15.0" fill="rgb(249,41,6)" rx="2" ry="2" />
<text x="1056.12" y="847.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1045" width="0.2" height="15.0" fill="rgb(250,189,53)" rx="2" ry="2" />
<text x="621.96" y="1055.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="211.5" y="1045" width="0.2" height="15.0" fill="rgb(232,212,18)" rx="2" ry="2" />
<text x="214.46" y="1055.5" ></text>
</g>
<g >
<title>zend_objects_store_del (30,303,030 samples, 0.05%)</title><rect x="628.3" y="1093" width="0.7" height="15.0" fill="rgb(246,17,23)" rx="2" ry="2" />
<text x="631.33" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="507.7" y="1125" width="0.6" height="15.0" fill="rgb(247,157,24)" rx="2" ry="2" />
<text x="510.71" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="754.0" y="949" width="0.2" height="15.0" fill="rgb(253,31,52)" rx="2" ry="2" />
<text x="756.96" y="959.5" ></text>
</g>
<g >
<title>php_stat (4,030,302,990 samples, 7.04%)</title><rect x="360.4" y="1125" width="83.1" height="15.0" fill="rgb(235,2,2)" rx="2" ry="2" />
<text x="363.42" y="1135.5" >php_stat</text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="998.8" y="837" width="0.2" height="15.0" fill="rgb(205,127,11)" rx="2" ry="2" />
<text x="1001.75" y="847.5" ></text>
</g>
<g >
<title>ip_rcv_finish (111,111,110 samples, 0.19%)</title><rect x="1185.0" y="581" width="2.3" height="15.0" fill="rgb(222,229,6)" rx="2" ry="2" />
<text x="1188.00" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.07%)</title><rect x="929.6" y="901" width="0.8" height="15.0" fill="rgb(245,192,34)" rx="2" ry="2" />
<text x="932.58" y="911.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (10,101,010 samples, 0.02%)</title><rect x="490.0" y="1109" width="0.2" height="15.0" fill="rgb(239,18,26)" rx="2" ry="2" />
<text x="493.00" y="1119.5" ></text>
</g>
<g >
<title>php_search_array (30,303,030 samples, 0.05%)</title><rect x="508.3" y="1125" width="0.7" height="15.0" fill="rgb(219,164,4)" rx="2" ry="2" />
<text x="511.33" y="1135.5" ></text>
</g>
<g >
<title>zim_DateTime___construct (70,707,070 samples, 0.12%)</title><rect x="490.0" y="1125" width="1.5" height="15.0" fill="rgb(240,44,53)" rx="2" ry="2" />
<text x="493.00" y="1135.5" ></text>
</g>
<g >
<title>[libz.so.1.2.11] (10,101,010 samples, 0.02%)</title><rect x="33.1" y="1189" width="0.2" height="15.0" fill="rgb(231,40,51)" rx="2" ry="2" />
<text x="36.12" y="1199.5" ></text>
</g>
<g >
<title>zend_array_destroy (60,606,060 samples, 0.11%)</title><rect x="220.4" y="1125" width="1.3" height="15.0" fill="rgb(208,22,30)" rx="2" ry="2" />
<text x="223.42" y="1135.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="641.7" y="837" width="0.2" height="15.0" fill="rgb(225,84,26)" rx="2" ry="2" />
<text x="644.67" y="847.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="731.2" y="853" width="0.3" height="15.0" fill="rgb(217,23,8)" rx="2" ry="2" />
<text x="734.25" y="863.5" ></text>
</g>
<g >
<title>_emalloc@plt (10,101,010 samples, 0.02%)</title><rect x="782.9" y="965" width="0.2" height="15.0" fill="rgb(212,112,15)" rx="2" ry="2" />
<text x="785.92" y="975.5" ></text>
</g>
<g >
<title>zend_array_destroy (40,404,040 samples, 0.07%)</title><rect x="459.4" y="1077" width="0.8" height="15.0" fill="rgb(237,131,14)" rx="2" ry="2" />
<text x="462.38" y="1087.5" ></text>
</g>
<g >
<title>fcgi_accept_request (90,909,090 samples, 0.16%)</title><rect x="205.8" y="1173" width="1.9" height="15.0" fill="rgb(225,221,31)" rx="2" ry="2" />
<text x="208.83" y="1183.5" ></text>
</g>
<g >
<title>getname_flags (10,101,010 samples, 0.02%)</title><rect x="1009.0" y="949" width="0.2" height="15.0" fill="rgb(211,118,54)" rx="2" ry="2" />
<text x="1011.96" y="959.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="682.1" y="789" width="0.2" height="15.0" fill="rgb(242,62,14)" rx="2" ry="2" />
<text x="685.08" y="799.5" ></text>
</g>
<g >
<title>_php_stream_fopen_from_fd (20,202,020 samples, 0.04%)</title><rect x="948.3" y="1061" width="0.5" height="15.0" fill="rgb(222,85,36)" rx="2" ry="2" />
<text x="951.33" y="1071.5" ></text>
</g>
<g >
<title>cp_new_stat (101,010,100 samples, 0.18%)</title><rect x="370.2" y="1029" width="2.1" height="15.0" fill="rgb(223,223,15)" rx="2" ry="2" />
<text x="373.21" y="1039.5" ></text>
</g>
<g >
<title>ZEND_IS_NOT_IDENTICAL_SPEC_VAR_TMP_HANDLER (10,101,010 samples, 0.02%)</title><rect x="554.2" y="1141" width="0.2" height="15.0" fill="rgb(253,119,53)" rx="2" ry="2" />
<text x="557.17" y="1151.5" ></text>
</g>
<g >
<title>__sys_socket (30,303,030 samples, 0.05%)</title><rect x="931.0" y="869" width="0.7" height="15.0" fill="rgb(226,56,38)" rx="2" ry="2" />
<text x="934.04" y="879.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="922.7" y="933" width="0.2" height="15.0" fill="rgb(211,26,47)" rx="2" ry="2" />
<text x="925.71" y="943.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="822.7" y="933" width="0.2" height="15.0" fill="rgb(213,172,27)" rx="2" ry="2" />
<text x="825.71" y="943.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="524.4" y="757" width="0.2" height="15.0" fill="rgb(226,152,0)" rx="2" ry="2" />
<text x="527.38" y="767.5" ></text>
</g>
<g >
<title>mysqli_common_connect (1,030,303,020 samples, 1.80%)</title><rect x="923.5" y="1125" width="21.3" height="15.0" fill="rgb(212,43,33)" rx="2" ry="2" />
<text x="926.54" y="1135.5" >m..</text>
</g>
<g >
<title>tcp_write_xmit (939,393,930 samples, 1.64%)</title><rect x="1148.1" y="1045" width="19.4" height="15.0" fill="rgb(241,151,37)" rx="2" ry="2" />
<text x="1151.12" y="1055.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="244.4" y="1125" width="0.2" height="15.0" fill="rgb(205,111,19)" rx="2" ry="2" />
<text x="247.38" y="1135.5" ></text>
</g>
<g >
<title>new_sync_read (20,202,020 samples, 0.04%)</title><rect x="207.3" y="1045" width="0.4" height="15.0" fill="rgb(253,94,21)" rx="2" ry="2" />
<text x="210.29" y="1055.5" ></text>
</g>
<g >
<title>zif_call_user_func_array (60,606,060 samples, 0.11%)</title><rect x="447.5" y="1061" width="1.3" height="15.0" fill="rgb(250,78,37)" rx="2" ry="2" />
<text x="450.50" y="1071.5" ></text>
</g>
<g >
<title>fcntl_setlk (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1061" width="0.2" height="15.0" fill="rgb(228,32,19)" rx="2" ry="2" />
<text x="1105.08" y="1071.5" ></text>
</g>
<g >
<title>ip_route_input_slow (70,707,070 samples, 0.12%)</title><rect x="1160.8" y="485" width="1.5" height="15.0" fill="rgb(211,147,23)" rx="2" ry="2" />
<text x="1163.83" y="495.5" ></text>
</g>
<g >
<title>generic_permission (30,303,030 samples, 0.05%)</title><rect x="1007.7" y="869" width="0.6" height="15.0" fill="rgb(253,94,49)" rx="2" ry="2" />
<text x="1010.71" y="879.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1061" width="0.3" height="15.0" fill="rgb(227,2,43)" rx="2" ry="2" />
<text x="699.25" y="1071.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1029" width="0.2" height="15.0" fill="rgb(223,136,7)" rx="2" ry="2" />
<text x="1095.08" y="1039.5" ></text>
</g>
<g >
<title>ovl_get_acl (151,515,150 samples, 0.26%)</title><rect x="387.1" y="885" width="3.1" height="15.0" fill="rgb(215,117,8)" rx="2" ry="2" />
<text x="390.08" y="895.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="789.0" y="741" width="0.2" height="15.0" fill="rgb(253,150,12)" rx="2" ry="2" />
<text x="791.96" y="751.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="352.1" y="1125" width="0.2" height="15.0" fill="rgb(237,160,40)" rx="2" ry="2" />
<text x="355.08" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="805.6" y="725" width="0.2" height="15.0" fill="rgb(249,99,52)" rx="2" ry="2" />
<text x="808.62" y="735.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (30,303,030 samples, 0.05%)</title><rect x="939.4" y="133" width="0.6" height="15.0" fill="rgb(249,134,23)" rx="2" ry="2" />
<text x="942.38" y="143.5" ></text>
</g>
<g >
<title>zend_parse_arg (30,303,030 samples, 0.05%)</title><rect x="1020.0" y="1077" width="0.6" height="15.0" fill="rgb(222,157,37)" rx="2" ry="2" />
<text x="1023.00" y="1087.5" ></text>
</g>
<g >
<title>instanceof_function_slow (20,202,020 samples, 0.04%)</title><rect x="920.4" y="1125" width="0.4" height="15.0" fill="rgb(231,57,7)" rx="2" ry="2" />
<text x="923.42" y="1135.5" ></text>
</g>
<g >
<title>zend_parse_arg (40,404,040 samples, 0.07%)</title><rect x="1057.7" y="1077" width="0.8" height="15.0" fill="rgb(221,174,26)" rx="2" ry="2" />
<text x="1060.71" y="1087.5" ></text>
</g>
<g >
<title>__alloc_skb (30,303,030 samples, 0.05%)</title><rect x="1183.3" y="1093" width="0.7" height="15.0" fill="rgb(220,48,3)" rx="2" ry="2" />
<text x="1186.33" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_fast_concat_helper (10,101,010 samples, 0.02%)</title><rect x="1010.8" y="1045" width="0.2" height="15.0" fill="rgb(235,153,44)" rx="2" ry="2" />
<text x="1013.83" y="1055.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="914.4" y="949" width="0.2" height="15.0" fill="rgb(224,36,3)" rx="2" ry="2" />
<text x="917.38" y="959.5" ></text>
</g>
<g >
<title>ZEND_ROPE_INIT_SPEC_UNUSED_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="334.8" y="1125" width="0.2" height="15.0" fill="rgb(227,90,42)" rx="2" ry="2" />
<text x="337.79" y="1135.5" ></text>
</g>
<g >
<title>ovl_get_acl (20,202,020 samples, 0.04%)</title><rect x="1122.1" y="981" width="0.4" height="15.0" fill="rgb(209,37,30)" rx="2" ry="2" />
<text x="1125.08" y="991.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1087.9" y="1045" width="0.2" height="15.0" fill="rgb(213,35,13)" rx="2" ry="2" />
<text x="1090.92" y="1055.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (10,101,010 samples, 0.02%)</title><rect x="937.5" y="757" width="0.2" height="15.0" fill="rgb(229,83,48)" rx="2" ry="2" />
<text x="940.50" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_write (40,404,040 samples, 0.07%)</title><rect x="1107.9" y="1125" width="0.9" height="15.0" fill="rgb(237,177,11)" rx="2" ry="2" />
<text x="1110.92" y="1135.5" ></text>
</g>
<g >
<title>persistent_compile_file (151,515,150 samples, 0.26%)</title><rect x="745.8" y="981" width="3.2" height="15.0" fill="rgb(221,216,40)" rx="2" ry="2" />
<text x="748.83" y="991.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1077" width="0.2" height="15.0" fill="rgb(228,159,39)" rx="2" ry="2" />
<text x="549.46" y="1087.5" ></text>
</g>
<g >
<title>new_sync_write (70,707,070 samples, 0.12%)</title><rect x="213.3" y="981" width="1.5" height="15.0" fill="rgb(236,132,15)" rx="2" ry="2" />
<text x="216.33" y="991.5" ></text>
</g>
<g >
<title>getname_flags (40,404,040 samples, 0.07%)</title><rect x="534.2" y="933" width="0.8" height="15.0" fill="rgb(253,145,23)" rx="2" ry="2" />
<text x="537.17" y="943.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="30.2" y="949" width="0.2" height="15.0" fill="rgb(244,123,33)" rx="2" ry="2" />
<text x="33.21" y="959.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="753.5" y="981" width="0.5" height="15.0" fill="rgb(209,142,47)" rx="2" ry="2" />
<text x="756.54" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="539.4" y="1029" width="0.2" height="15.0" fill="rgb(254,61,15)" rx="2" ry="2" />
<text x="542.38" y="1039.5" ></text>
</g>
<g >
<title>lockref_put_return (10,101,010 samples, 0.02%)</title><rect x="534.0" y="837" width="0.2" height="15.0" fill="rgb(211,13,38)" rx="2" ry="2" />
<text x="536.96" y="847.5" ></text>
</g>
<g >
<title>auditd_test_task (10,101,010 samples, 0.02%)</title><rect x="528.1" y="1045" width="0.2" height="15.0" fill="rgb(252,180,39)" rx="2" ry="2" />
<text x="531.12" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (111,111,110 samples, 0.19%)</title><rect x="125.8" y="1077" width="2.3" height="15.0" fill="rgb(245,116,24)" rx="2" ry="2" />
<text x="128.83" y="1087.5" ></text>
</g>
<g >
<title>__release_sock (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="789" width="0.2" height="15.0" fill="rgb(215,17,40)" rx="2" ry="2" />
<text x="1091.96" y="799.5" ></text>
</g>
<g >
<title>php_json_decode_ex (131,313,130 samples, 0.23%)</title><rect x="1042.7" y="1109" width="2.7" height="15.0" fill="rgb(216,12,5)" rx="2" ry="2" />
<text x="1045.71" y="1119.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (10,101,010 samples, 0.02%)</title><rect x="1036.9" y="901" width="0.2" height="15.0" fill="rgb(234,193,0)" rx="2" ry="2" />
<text x="1039.88" y="911.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="510.0" y="1093" width="0.2" height="15.0" fill="rgb(230,125,46)" rx="2" ry="2" />
<text x="513.00" y="1103.5" ></text>
</g>
<g >
<title>access (121,212,120 samples, 0.21%)</title><rect x="532.7" y="1029" width="2.5" height="15.0" fill="rgb(242,160,49)" rx="2" ry="2" />
<text x="535.71" y="1039.5" ></text>
</g>
<g >
<title>nf_hook_slow (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="613" width="2.9" height="15.0" fill="rgb(210,142,0)" rx="2" ry="2" />
<text x="1130.50" y="623.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="762.3" y="1061" width="0.2" height="15.0" fill="rgb(247,64,39)" rx="2" ry="2" />
<text x="765.29" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="718.3" y="1045" width="0.2" height="15.0" fill="rgb(224,130,35)" rx="2" ry="2" />
<text x="721.33" y="1055.5" ></text>
</g>
<g >
<title>tcp_release_cb (10,101,010 samples, 0.02%)</title><rect x="1141.5" y="1077" width="0.2" height="15.0" fill="rgb(252,47,39)" rx="2" ry="2" />
<text x="1144.46" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="1132.7" y="1189" width="0.4" height="15.0" fill="rgb(215,29,53)" rx="2" ry="2" />
<text x="1135.71" y="1199.5" ></text>
</g>
<g >
<title>zend_call_function (10,101,010 samples, 0.02%)</title><rect x="304.6" y="549" width="0.2" height="15.0" fill="rgb(226,191,8)" rx="2" ry="2" />
<text x="307.58" y="559.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (80,808,080 samples, 0.14%)</title><rect x="900.4" y="997" width="1.7" height="15.0" fill="rgb(218,190,40)" rx="2" ry="2" />
<text x="903.42" y="1007.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="973.3" y="869" width="0.2" height="15.0" fill="rgb(210,97,40)" rx="2" ry="2" />
<text x="976.33" y="879.5" ></text>
</g>
<g >
<title>filename_lookup (90,909,090 samples, 0.16%)</title><rect x="900.4" y="1029" width="1.9" height="15.0" fill="rgb(240,86,43)" rx="2" ry="2" />
<text x="903.42" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1029" width="0.2" height="15.0" fill="rgb(222,207,46)" rx="2" ry="2" />
<text x="549.46" y="1039.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (30,303,030 samples, 0.05%)</title><rect x="514.6" y="997" width="0.6" height="15.0" fill="rgb(248,27,9)" rx="2" ry="2" />
<text x="517.58" y="1007.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="967.1" y="981" width="0.2" height="15.0" fill="rgb(251,168,42)" rx="2" ry="2" />
<text x="970.08" y="991.5" ></text>
</g>
<g >
<title>memcg_kmem_put_cache (10,101,010 samples, 0.02%)</title><rect x="1147.5" y="1045" width="0.2" height="15.0" fill="rgb(230,208,31)" rx="2" ry="2" />
<text x="1150.50" y="1055.5" ></text>
</g>
<g >
<title>strncpy_from_user (10,101,010 samples, 0.02%)</title><rect x="740.0" y="789" width="0.2" height="15.0" fill="rgb(237,198,15)" rx="2" ry="2" />
<text x="743.00" y="799.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="821" width="0.2" height="15.0" fill="rgb(228,64,41)" rx="2" ry="2" />
<text x="1085.08" y="831.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="749.2" y="997" width="0.2" height="15.0" fill="rgb(230,62,23)" rx="2" ry="2" />
<text x="752.17" y="1007.5" ></text>
</g>
<g >
<title>_php_stream_read (50,505,050 samples, 0.09%)</title><rect x="925.0" y="901" width="1.0" height="15.0" fill="rgb(248,115,49)" rx="2" ry="2" />
<text x="928.00" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="1189.4" y="1189" width="0.6" height="15.0" fill="rgb(219,165,39)" rx="2" ry="2" />
<text x="1192.38" y="1199.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="913.1" y="725" width="0.2" height="15.0" fill="rgb(250,117,25)" rx="2" ry="2" />
<text x="916.12" y="735.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (40,404,040 samples, 0.07%)</title><rect x="283.3" y="981" width="0.9" height="15.0" fill="rgb(214,167,52)" rx="2" ry="2" />
<text x="286.33" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="837" width="3.1" height="15.0" fill="rgb(242,192,48)" rx="2" ry="2" />
<text x="1187.58" y="847.5" ></text>
</g>
<g >
<title>zend_do_link_class (20,202,020 samples, 0.04%)</title><rect x="304.4" y="629" width="0.4" height="15.0" fill="rgb(208,87,16)" rx="2" ry="2" />
<text x="307.38" y="639.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="757" width="0.2" height="15.0" fill="rgb(215,154,14)" rx="2" ry="2" />
<text x="1095.08" y="767.5" ></text>
</g>
<g >
<title>TRACE-10$AutoLoader::find$49 (20,202,020 samples, 0.04%)</title><rect x="722.3" y="1045" width="0.4" height="15.0" fill="rgb(217,78,24)" rx="2" ry="2" />
<text x="725.29" y="1055.5" ></text>
</g>
<g >
<title>user_path_at_empty (10,101,010 samples, 0.02%)</title><rect x="205.6" y="1093" width="0.2" height="15.0" fill="rgb(246,153,47)" rx="2" ry="2" />
<text x="208.62" y="1103.5" ></text>
</g>
<g >
<title>access (212,121,210 samples, 0.37%)</title><rect x="899.8" y="1125" width="4.4" height="15.0" fill="rgb(233,198,9)" rx="2" ry="2" />
<text x="902.79" y="1135.5" ></text>
</g>
<g >
<title>TRACE-244$Wikimedia\Rdbms\LoadBalancer::forEachOpenPrimaryConnection$2340 (141,414,140 samples, 0.25%)</title><rect x="457.5" y="1141" width="2.9" height="15.0" fill="rgb(236,13,12)" rx="2" ry="2" />
<text x="460.50" y="1151.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="533" width="0.2" height="15.0" fill="rgb(221,47,50)" rx="2" ry="2" />
<text x="1085.08" y="543.5" ></text>
</g>
<g >
<title>tcp_shutdown (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="1013" width="0.9" height="15.0" fill="rgb(236,139,32)" rx="2" ry="2" />
<text x="1035.92" y="1023.5" ></text>
</g>
<g >
<title>__d_lookup (404,040,400 samples, 0.71%)</title><rect x="398.8" y="917" width="8.3" height="15.0" fill="rgb(240,97,8)" rx="2" ry="2" />
<text x="401.75" y="927.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="682.7" y="901" width="0.2" height="15.0" fill="rgb(241,95,42)" rx="2" ry="2" />
<text x="685.71" y="911.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (515,151,510 samples, 0.90%)</title><rect x="796.7" y="981" width="10.6" height="15.0" fill="rgb(252,39,24)" rx="2" ry="2" />
<text x="799.67" y="991.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="24.0" y="853" width="0.2" height="15.0" fill="rgb(229,13,20)" rx="2" ry="2" />
<text x="26.96" y="863.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="421" width="0.2" height="15.0" fill="rgb(214,73,18)" rx="2" ry="2" />
<text x="1132.38" y="431.5" ></text>
</g>
<g >
<title>prep_new_page (10,101,010 samples, 0.02%)</title><rect x="919.2" y="885" width="0.2" height="15.0" fill="rgb(251,97,20)" rx="2" ry="2" />
<text x="922.17" y="895.5" ></text>
</g>
<g >
<title>zend_verify_recv_arg_type_helper_SPEC (151,515,150 samples, 0.26%)</title><rect x="606.9" y="1125" width="3.1" height="15.0" fill="rgb(234,148,27)" rx="2" ry="2" />
<text x="609.88" y="1135.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="998.8" y="741" width="0.2" height="15.0" fill="rgb(216,212,53)" rx="2" ry="2" />
<text x="1001.75" y="751.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="911.5" y="885" width="0.2" height="15.0" fill="rgb(239,101,31)" rx="2" ry="2" />
<text x="914.46" y="895.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="308.8" y="1061" width="0.2" height="15.0" fill="rgb(209,183,54)" rx="2" ry="2" />
<text x="311.75" y="1071.5" ></text>
</g>
<g >
<title>rcu_core_si (10,101,010 samples, 0.02%)</title><rect x="791.5" y="949" width="0.2" height="15.0" fill="rgb(250,139,39)" rx="2" ry="2" />
<text x="794.46" y="959.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="914.6" y="933" width="0.2" height="15.0" fill="rgb(253,191,14)" rx="2" ry="2" />
<text x="917.58" y="943.5" ></text>
</g>
<g >
<title>unmap_vmas (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1077" width="0.2" height="15.0" fill="rgb(244,129,45)" rx="2" ry="2" />
<text x="1175.08" y="1087.5" ></text>
</g>
<g >
<title>do_wp_page (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1093" width="0.2" height="15.0" fill="rgb(233,19,35)" rx="2" ry="2" />
<text x="33.00" y="1103.5" ></text>
</g>
<g >
<title>php_do_pcre_match (121,212,120 samples, 0.21%)</title><rect x="305.2" y="1125" width="2.5" height="15.0" fill="rgb(231,220,49)" rx="2" ry="2" />
<text x="308.21" y="1135.5" ></text>
</g>
<g >
<title>zend_parse_parameters@plt (10,101,010 samples, 0.02%)</title><rect x="1142.5" y="1205" width="0.2" height="15.0" fill="rgb(226,100,25)" rx="2" ry="2" />
<text x="1145.50" y="1215.5" ></text>
</g>
<g >
<title>lookup_fast (20,202,020 samples, 0.04%)</title><rect x="533.8" y="869" width="0.4" height="15.0" fill="rgb(211,26,49)" rx="2" ry="2" />
<text x="536.75" y="879.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1109" width="0.2" height="15.0" fill="rgb(249,191,2)" rx="2" ry="2" />
<text x="560.29" y="1119.5" ></text>
</g>
<g >
<title>sk_free (10,101,010 samples, 0.02%)</title><rect x="30.4" y="949" width="0.2" height="15.0" fill="rgb(216,179,0)" rx="2" ry="2" />
<text x="33.42" y="959.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="291.5" y="1077" width="0.2" height="15.0" fill="rgb(224,145,36)" rx="2" ry="2" />
<text x="294.46" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="952.7" y="1093" width="0.2" height="15.0" fill="rgb(223,115,49)" rx="2" ry="2" />
<text x="955.71" y="1103.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (10,101,010 samples, 0.02%)</title><rect x="207.5" y="997" width="0.2" height="15.0" fill="rgb(250,179,43)" rx="2" ry="2" />
<text x="210.50" y="1007.5" ></text>
</g>
<g >
<title>inet_accept (10,101,010 samples, 0.02%)</title><rect x="204.4" y="1109" width="0.2" height="15.0" fill="rgb(214,225,6)" rx="2" ry="2" />
<text x="207.38" y="1119.5" ></text>
</g>
<g >
<title>passthru_features_check (10,101,010 samples, 0.02%)</title><rect x="1090.0" y="565" width="0.2" height="15.0" fill="rgb(225,219,53)" rx="2" ry="2" />
<text x="1093.00" y="575.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="740.2" y="821" width="0.2" height="15.0" fill="rgb(242,157,26)" rx="2" ry="2" />
<text x="743.21" y="831.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="847.9" y="901" width="0.4" height="15.0" fill="rgb(252,36,40)" rx="2" ry="2" />
<text x="850.92" y="911.5" ></text>
</g>
<g >
<title>zend_jit_fetch_dim_str_offset_r_helper (10,101,010 samples, 0.02%)</title><rect x="882.9" y="1045" width="0.2" height="15.0" fill="rgb(251,48,44)" rx="2" ry="2" />
<text x="885.92" y="1055.5" ></text>
</g>
<g >
<title>tcp_ack (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="741" width="0.2" height="15.0" fill="rgb(218,218,36)" rx="2" ry="2" />
<text x="1091.96" y="751.5" ></text>
</g>
<g >
<title>tcp_time_wait (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="821" width="0.2" height="15.0" fill="rgb(220,12,22)" rx="2" ry="2" />
<text x="1083.83" y="831.5" ></text>
</g>
<g >
<title>zend_hash_find (60,606,060 samples, 0.11%)</title><rect x="790.4" y="1029" width="1.3" height="15.0" fill="rgb(226,54,36)" rx="2" ry="2" />
<text x="793.42" y="1039.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="901.7" y="949" width="0.2" height="15.0" fill="rgb(225,33,28)" rx="2" ry="2" />
<text x="904.67" y="959.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (70,707,070 samples, 0.12%)</title><rect x="620.4" y="1093" width="1.5" height="15.0" fill="rgb(221,118,43)" rx="2" ry="2" />
<text x="623.42" y="1103.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_get_scheme_pub (20,202,020 samples, 0.04%)</title><rect x="944.4" y="1061" width="0.4" height="15.0" fill="rgb(214,109,43)" rx="2" ry="2" />
<text x="947.38" y="1071.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (40,404,040 samples, 0.07%)</title><rect x="1146.9" y="1077" width="0.8" height="15.0" fill="rgb(237,62,25)" rx="2" ry="2" />
<text x="1149.88" y="1087.5" ></text>
</g>
<g >
<title>_erealloc (10,101,010 samples, 0.02%)</title><rect x="945.6" y="1061" width="0.2" height="15.0" fill="rgb(243,216,18)" rx="2" ry="2" />
<text x="948.62" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1037.3" y="869" width="0.2" height="15.0" fill="rgb(216,39,28)" rx="2" ry="2" />
<text x="1040.29" y="879.5" ></text>
</g>
<g >
<title>zm_activate_session (20,202,020 samples, 0.04%)</title><rect x="1106.0" y="1157" width="0.5" height="15.0" fill="rgb(231,143,26)" rx="2" ry="2" />
<text x="1109.04" y="1167.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="805" width="0.3" height="15.0" fill="rgb(234,87,24)" rx="2" ry="2" />
<text x="1044.25" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1109" width="0.2" height="15.0" fill="rgb(208,225,26)" rx="2" ry="2" />
<text x="1105.08" y="1119.5" ></text>
</g>
<g >
<title>zend_binary_strcmp (10,101,010 samples, 0.02%)</title><rect x="514.2" y="1013" width="0.2" height="15.0" fill="rgb(220,15,7)" rx="2" ry="2" />
<text x="517.17" y="1023.5" ></text>
</g>
<g >
<title>OnUpdateBool (10,101,010 samples, 0.02%)</title><rect x="1041.0" y="1093" width="0.2" height="15.0" fill="rgb(211,23,49)" rx="2" ry="2" />
<text x="1044.04" y="1103.5" ></text>
</g>
<g >
<title>__kmalloc (10,101,010 samples, 0.02%)</title><rect x="533.3" y="917" width="0.2" height="15.0" fill="rgb(246,125,15)" rx="2" ry="2" />
<text x="536.33" y="927.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="688.1" y="949" width="0.4" height="15.0" fill="rgb(213,188,36)" rx="2" ry="2" />
<text x="691.12" y="959.5" ></text>
</g>
<g >
<title>_efree_56 (10,101,010 samples, 0.02%)</title><rect x="969.6" y="1093" width="0.2" height="15.0" fill="rgb(211,116,5)" rx="2" ry="2" />
<text x="972.58" y="1103.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="982.9" y="837" width="0.2" height="15.0" fill="rgb(241,117,51)" rx="2" ry="2" />
<text x="985.92" y="847.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="782.3" y="917" width="0.2" height="15.0" fill="rgb(209,82,18)" rx="2" ry="2" />
<text x="785.29" y="927.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (30,303,030 samples, 0.05%)</title><rect x="1057.9" y="1029" width="0.6" height="15.0" fill="rgb(219,22,4)" rx="2" ry="2" />
<text x="1060.92" y="1039.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="933" width="0.2" height="15.0" fill="rgb(244,29,9)" rx="2" ry="2" />
<text x="1099.04" y="943.5" ></text>
</g>
<g >
<title>process_backlog (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="741" width="0.4" height="15.0" fill="rgb(251,1,12)" rx="2" ry="2" />
<text x="1035.92" y="751.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="295.6" y="1045" width="0.2" height="15.0" fill="rgb(213,196,51)" rx="2" ry="2" />
<text x="298.62" y="1055.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="822.7" y="901" width="0.2" height="15.0" fill="rgb(208,77,15)" rx="2" ry="2" />
<text x="825.71" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1077" width="0.5" height="15.0" fill="rgb(227,63,20)" rx="2" ry="2" />
<text x="1026.33" y="1087.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="913.1" y="741" width="0.2" height="15.0" fill="rgb(212,33,23)" rx="2" ry="2" />
<text x="916.12" y="751.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="744.0" y="773" width="0.2" height="15.0" fill="rgb(215,75,10)" rx="2" ry="2" />
<text x="746.96" y="783.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="941.9" y="661" width="0.2" height="15.0" fill="rgb(242,181,29)" rx="2" ry="2" />
<text x="944.88" y="671.5" ></text>
</g>
<g >
<title>__do_sys_newfstat (10,101,010 samples, 0.02%)</title><rect x="948.3" y="981" width="0.2" height="15.0" fill="rgb(222,2,22)" rx="2" ry="2" />
<text x="951.33" y="991.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="1028.1" y="1013" width="0.2" height="15.0" fill="rgb(212,154,40)" rx="2" ry="2" />
<text x="1031.12" y="1023.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="861.0" y="629" width="0.2" height="15.0" fill="rgb(254,149,21)" rx="2" ry="2" />
<text x="864.04" y="639.5" ></text>
</g>
<g >
<title>__close_fd (10,101,010 samples, 0.02%)</title><rect x="1086.0" y="965" width="0.2" height="15.0" fill="rgb(224,222,28)" rx="2" ry="2" />
<text x="1089.04" y="975.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="934.4" y="837" width="0.2" height="15.0" fill="rgb(243,123,17)" rx="2" ry="2" />
<text x="937.38" y="847.5" ></text>
</g>
<g >
<title>zend_hash_next_index_insert_new (40,404,040 samples, 0.07%)</title><rect x="765.0" y="1061" width="0.8" height="15.0" fill="rgb(213,183,31)" rx="2" ry="2" />
<text x="768.00" y="1071.5" ></text>
</g>
<g >
<title>TRACE-459$ExtensionRegistry::exportExtractedData$552 (20,202,020 samples, 0.04%)</title><rect x="528.8" y="1141" width="0.4" height="15.0" fill="rgb(205,163,3)" rx="2" ry="2" />
<text x="531.75" y="1151.5" ></text>
</g>
<g >
<title>zend_traits_copy_functions (10,101,010 samples, 0.02%)</title><rect x="304.8" y="869" width="0.2" height="15.0" fill="rgb(246,178,43)" rx="2" ry="2" />
<text x="307.79" y="879.5" ></text>
</g>
<g >
<title>__sock_create (60,606,060 samples, 0.11%)</title><rect x="1119.0" y="1125" width="1.2" height="15.0" fill="rgb(243,58,54)" rx="2" ry="2" />
<text x="1121.96" y="1135.5" ></text>
</g>
<g >
<title>__sys_shutdown (272,727,270 samples, 0.48%)</title><rect x="1183.1" y="1157" width="5.7" height="15.0" fill="rgb(236,0,24)" rx="2" ry="2" />
<text x="1186.12" y="1167.5" ></text>
</g>
<g >
<title>TRACE-411$ExtensionRegistry::exportExtractedData$542 (20,202,020 samples, 0.04%)</title><rect x="515.6" y="1141" width="0.4" height="15.0" fill="rgb(213,58,12)" rx="2" ry="2" />
<text x="518.62" y="1151.5" ></text>
</g>
<g >
<title>__sigqueue_free.part.22 (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1109" width="0.2" height="15.0" fill="rgb(206,196,35)" rx="2" ry="2" />
<text x="1175.50" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="654.2" y="1045" width="0.2" height="15.0" fill="rgb(245,116,50)" rx="2" ry="2" />
<text x="657.17" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_update (575,757,570 samples, 1.01%)</title><rect x="254.2" y="1093" width="11.8" height="15.0" fill="rgb(238,39,5)" rx="2" ry="2" />
<text x="257.17" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_TMP_HANDLER (40,404,040 samples, 0.07%)</title><rect x="627.1" y="1125" width="0.8" height="15.0" fill="rgb(250,225,35)" rx="2" ry="2" />
<text x="630.08" y="1135.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="904.0" y="677" width="0.2" height="15.0" fill="rgb(233,121,9)" rx="2" ry="2" />
<text x="906.96" y="687.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (191,919,190 samples, 0.34%)</title><rect x="857.5" y="837" width="4.0" height="15.0" fill="rgb(247,34,38)" rx="2" ry="2" />
<text x="860.50" y="847.5" ></text>
</g>
<g >
<title>ovl_permission (20,202,020 samples, 0.04%)</title><rect x="910.6" y="885" width="0.4" height="15.0" fill="rgb(210,197,42)" rx="2" ry="2" />
<text x="913.62" y="895.5" ></text>
</g>
<g >
<title>[perf-24841.map] (30,303,030 samples, 0.05%)</title><rect x="33.3" y="1189" width="0.7" height="15.0" fill="rgb(207,213,31)" rx="2" ry="2" />
<text x="36.33" y="1199.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="344.8" y="965" width="0.2" height="15.0" fill="rgb(213,127,12)" rx="2" ry="2" />
<text x="347.79" y="975.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (202,020,200 samples, 0.35%)</title><rect x="1184.0" y="1061" width="4.1" height="15.0" fill="rgb(224,211,28)" rx="2" ry="2" />
<text x="1186.96" y="1071.5" ></text>
</g>
<g >
<title>TRACE-294$MWExceptionHandler::prettyPrintTrace$405 (20,202,020 samples, 0.04%)</title><rect x="478.5" y="1141" width="0.5" height="15.0" fill="rgb(247,0,44)" rx="2" ry="2" />
<text x="481.54" y="1151.5" ></text>
</g>
<g >
<title>zif_array_keys (10,101,010 samples, 0.02%)</title><rect x="998.5" y="1125" width="0.3" height="15.0" fill="rgb(206,109,39)" rx="2" ry="2" />
<text x="1001.54" y="1135.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="850.6" y="485" width="0.2" height="15.0" fill="rgb(219,108,8)" rx="2" ry="2" />
<text x="853.62" y="495.5" ></text>
</g>
<g >
<title>mntput (10,101,010 samples, 0.02%)</title><rect x="1010.0" y="965" width="0.2" height="15.0" fill="rgb(232,98,29)" rx="2" ry="2" />
<text x="1013.00" y="975.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (10,101,010 samples, 0.02%)</title><rect x="294.8" y="1109" width="0.2" height="15.0" fill="rgb(211,10,24)" rx="2" ry="2" />
<text x="297.79" y="1119.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="901" width="0.2" height="15.0" fill="rgb(221,199,39)" rx="2" ry="2" />
<text x="1117.17" y="911.5" ></text>
</g>
<g >
<title>zend_array_dup (40,404,040 samples, 0.07%)</title><rect x="249.8" y="1109" width="0.8" height="15.0" fill="rgb(244,204,36)" rx="2" ry="2" />
<text x="252.79" y="1119.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="899.4" y="901" width="0.2" height="15.0" fill="rgb(218,49,26)" rx="2" ry="2" />
<text x="902.38" y="911.5" ></text>
</g>
<g >
<title>ip_finish_output2 (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="165" width="0.4" height="15.0" fill="rgb(225,98,3)" rx="2" ry="2" />
<text x="1092.58" y="175.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (10,101,010 samples, 0.02%)</title><rect x="649.4" y="1029" width="0.2" height="15.0" fill="rgb(252,176,7)" rx="2" ry="2" />
<text x="652.38" y="1039.5" ></text>
</g>
<g >
<title>_zend_handle_numeric_str_ex (10,101,010 samples, 0.02%)</title><rect x="895.2" y="1125" width="0.2" height="15.0" fill="rgb(249,162,41)" rx="2" ry="2" />
<text x="898.21" y="1135.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="869" width="0.2" height="15.0" fill="rgb(240,191,45)" rx="2" ry="2" />
<text x="1022.79" y="879.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1131.9" y="1157" width="0.2" height="15.0" fill="rgb(208,65,27)" rx="2" ry="2" />
<text x="1134.88" y="1167.5" ></text>
</g>
<g >
<title>zend_hash_add (20,202,020 samples, 0.04%)</title><rect x="1022.1" y="1093" width="0.4" height="15.0" fill="rgb(227,168,26)" rx="2" ry="2" />
<text x="1025.08" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="901" width="0.2" height="15.0" fill="rgb(210,67,32)" rx="2" ry="2" />
<text x="1091.33" y="911.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="524.6" y="1013" width="0.4" height="15.0" fill="rgb(205,32,12)" rx="2" ry="2" />
<text x="527.58" y="1023.5" ></text>
</g>
<g >
<title>zend_attach_symbol_table (121,212,120 samples, 0.21%)</title><rect x="705.6" y="1109" width="2.5" height="15.0" fill="rgb(238,147,18)" rx="2" ry="2" />
<text x="708.62" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (50,505,050 samples, 0.09%)</title><rect x="540.6" y="1093" width="1.1" height="15.0" fill="rgb(205,51,33)" rx="2" ry="2" />
<text x="543.62" y="1103.5" ></text>
</g>
<g >
<title>ip_finish_output (161,616,160 samples, 0.28%)</title><rect x="1184.6" y="981" width="3.3" height="15.0" fill="rgb(254,39,43)" rx="2" ry="2" />
<text x="1187.58" y="991.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="337.7" y="1093" width="0.2" height="15.0" fill="rgb(230,104,35)" rx="2" ry="2" />
<text x="340.71" y="1103.5" ></text>
</g>
<g >
<title>zval_call_destructor (20,202,020 samples, 0.04%)</title><rect x="1091.5" y="1125" width="0.4" height="15.0" fill="rgb(215,4,20)" rx="2" ry="2" />
<text x="1094.46" y="1135.5" ></text>
</g>
<g >
<title>TRACE-380$Wikimedia\Rdbms\DatabaseDomain::convertToString$212 (20,202,020 samples, 0.04%)</title><rect x="499.2" y="1141" width="0.4" height="15.0" fill="rgb(245,145,4)" rx="2" ry="2" />
<text x="502.17" y="1151.5" ></text>
</g>
<g >
<title>zend_is_auto_global (30,303,030 samples, 0.05%)</title><rect x="709.2" y="1061" width="0.6" height="15.0" fill="rgb(231,197,50)" rx="2" ry="2" />
<text x="712.17" y="1071.5" ></text>
</g>
<g >
<title>run_timer_softirq (10,101,010 samples, 0.02%)</title><rect x="1114.0" y="965" width="0.2" height="15.0" fill="rgb(231,106,52)" rx="2" ry="2" />
<text x="1116.96" y="975.5" ></text>
</g>
<g >
<title>zend_jit_verify_return_slow (10,101,010 samples, 0.02%)</title><rect x="517.3" y="1125" width="0.2" height="15.0" fill="rgb(250,200,36)" rx="2" ry="2" />
<text x="520.29" y="1135.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="850.6" y="629" width="0.2" height="15.0" fill="rgb(236,33,46)" rx="2" ry="2" />
<text x="853.62" y="639.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1077" width="0.2" height="15.0" fill="rgb(217,219,26)" rx="2" ry="2" />
<text x="1083.83" y="1087.5" ></text>
</g>
<g >
<title>TRACE-342$Fandom\Includes\Database\FandomLoadBalancerFactory::newLoadBalancer$243 (50,505,050 samples, 0.09%)</title><rect x="494.2" y="1141" width="1.0" height="15.0" fill="rgb(242,152,22)" rx="2" ry="2" />
<text x="497.17" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="919.2" y="997" width="0.2" height="15.0" fill="rgb(205,36,29)" rx="2" ry="2" />
<text x="922.17" y="1007.5" ></text>
</g>
<g >
<title>autoload_func_info_destroy (10,101,010 samples, 0.02%)</title><rect x="1101.7" y="1109" width="0.2" height="15.0" fill="rgb(215,127,48)" rx="2" ry="2" />
<text x="1104.67" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1125" width="0.2" height="15.0" fill="rgb(253,211,1)" rx="2" ry="2" />
<text x="549.46" y="1135.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="443.3" y="1061" width="0.2" height="15.0" fill="rgb(243,66,49)" rx="2" ry="2" />
<text x="446.33" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="887.3" y="1045" width="0.2" height="15.0" fill="rgb(219,83,39)" rx="2" ry="2" />
<text x="890.29" y="1055.5" ></text>
</g>
<g >
<title>common_perm_cond (30,303,030 samples, 0.05%)</title><rect x="425.2" y="965" width="0.6" height="15.0" fill="rgb(234,156,37)" rx="2" ry="2" />
<text x="428.21" y="975.5" ></text>
</g>
<g >
<title>zend_jit_find_ns_func_helper (10,101,010 samples, 0.02%)</title><rect x="308.1" y="1125" width="0.2" height="15.0" fill="rgb(224,51,54)" rx="2" ry="2" />
<text x="311.12" y="1135.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="725" width="2.9" height="15.0" fill="rgb(206,170,38)" rx="2" ry="2" />
<text x="1130.50" y="735.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="524.6" y="1029" width="0.4" height="15.0" fill="rgb(232,208,53)" rx="2" ry="2" />
<text x="527.58" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="270.6" y="917" width="0.2" height="15.0" fill="rgb(209,89,11)" rx="2" ry="2" />
<text x="273.62" y="927.5" ></text>
</g>
<g >
<title>zend_call_known_function (60,606,060 samples, 0.11%)</title><rect x="282.9" y="1061" width="1.3" height="15.0" fill="rgb(240,98,9)" rx="2" ry="2" />
<text x="285.92" y="1071.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (30,303,030 samples, 0.05%)</title><rect x="1068.8" y="1141" width="0.6" height="15.0" fill="rgb(226,181,16)" rx="2" ry="2" />
<text x="1071.75" y="1151.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="465.2" y="1125" width="0.4" height="15.0" fill="rgb(217,132,34)" rx="2" ry="2" />
<text x="468.21" y="1135.5" ></text>
</g>
<g >
<title>virtnet_poll_tx (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1077" width="0.2" height="15.0" fill="rgb(210,14,40)" rx="2" ry="2" />
<text x="1118.62" y="1087.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="524.0" y="1029" width="0.6" height="15.0" fill="rgb(205,87,36)" rx="2" ry="2" />
<text x="526.96" y="1039.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1093" width="0.3" height="15.0" fill="rgb(223,134,34)" rx="2" ry="2" />
<text x="499.25" y="1103.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="607.7" y="1077" width="0.2" height="15.0" fill="rgb(212,70,48)" rx="2" ry="2" />
<text x="610.71" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="539.4" y="773" width="0.2" height="15.0" fill="rgb(239,64,30)" rx="2" ry="2" />
<text x="542.38" y="783.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="416.9" y="901" width="0.2" height="15.0" fill="rgb(211,79,23)" rx="2" ry="2" />
<text x="419.88" y="911.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (60,606,060 samples, 0.11%)</title><rect x="474.2" y="1125" width="1.2" height="15.0" fill="rgb(223,32,36)" rx="2" ry="2" />
<text x="477.17" y="1135.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (10,101,010 samples, 0.02%)</title><rect x="946.9" y="837" width="0.2" height="15.0" fill="rgb(248,88,49)" rx="2" ry="2" />
<text x="949.88" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1093" width="0.5" height="15.0" fill="rgb(209,78,9)" rx="2" ry="2" />
<text x="1026.33" y="1103.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="378.5" y="629" width="0.3" height="15.0" fill="rgb(205,71,45)" rx="2" ry="2" />
<text x="381.54" y="639.5" ></text>
</g>
<g >
<title>nf_confirm (10,101,010 samples, 0.02%)</title><rect x="193.8" y="789" width="0.2" height="15.0" fill="rgb(216,35,41)" rx="2" ry="2" />
<text x="196.75" y="799.5" ></text>
</g>
<g >
<title>zend_array_destroy (161,616,160 samples, 0.28%)</title><rect x="967.5" y="1125" width="3.3" height="15.0" fill="rgb(213,188,25)" rx="2" ry="2" />
<text x="970.50" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (20,202,020 samples, 0.04%)</title><rect x="179.4" y="1045" width="0.4" height="15.0" fill="rgb(222,211,17)" rx="2" ry="2" />
<text x="182.38" y="1055.5" ></text>
</g>
<g >
<title>virtnet_poll_tx (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1029" width="0.2" height="15.0" fill="rgb(233,38,0)" rx="2" ry="2" />
<text x="297.38" y="1039.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (40,404,040 samples, 0.07%)</title><rect x="1018.3" y="997" width="0.9" height="15.0" fill="rgb(233,211,31)" rx="2" ry="2" />
<text x="1021.33" y="1007.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_RW (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1109" width="0.2" height="15.0" fill="rgb(208,122,24)" rx="2" ry="2" />
<text x="693.62" y="1119.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="619.0" y="997" width="0.2" height="15.0" fill="rgb(230,160,51)" rx="2" ry="2" />
<text x="621.96" y="1007.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (80,808,080 samples, 0.14%)</title><rect x="458.8" y="1109" width="1.6" height="15.0" fill="rgb(253,39,10)" rx="2" ry="2" />
<text x="461.75" y="1119.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="1149.6" y="933" width="0.2" height="15.0" fill="rgb(237,198,35)" rx="2" ry="2" />
<text x="1152.58" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="24.0" y="917" width="0.2" height="15.0" fill="rgb(210,205,51)" rx="2" ry="2" />
<text x="26.96" y="927.5" ></text>
</g>
<g >
<title>memcpy@plt (10,101,010 samples, 0.02%)</title><rect x="1135.2" y="1205" width="0.2" height="15.0" fill="rgb(208,192,29)" rx="2" ry="2" />
<text x="1138.21" y="1215.5" ></text>
</g>
<g >
<title>[libmemcached.so.11.0.0] (525,252,520 samples, 0.92%)</title><rect x="13.5" y="1221" width="10.9" height="15.0" fill="rgb(238,20,6)" rx="2" ry="2" />
<text x="16.54" y="1231.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (131,313,130 samples, 0.23%)</title><rect x="302.3" y="917" width="2.7" height="15.0" fill="rgb(215,121,54)" rx="2" ry="2" />
<text x="305.29" y="927.5" ></text>
</g>
<g >
<title>zif_min (10,101,010 samples, 0.02%)</title><rect x="1050.8" y="1125" width="0.2" height="15.0" fill="rgb(242,0,49)" rx="2" ry="2" />
<text x="1053.83" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1013" width="0.2" height="15.0" fill="rgb(232,185,5)" rx="2" ry="2" />
<text x="550.71" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="529.4" y="1077" width="0.2" height="15.0" fill="rgb(234,194,53)" rx="2" ry="2" />
<text x="532.38" y="1087.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="482.7" y="1077" width="0.2" height="15.0" fill="rgb(253,158,43)" rx="2" ry="2" />
<text x="485.71" y="1087.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="530.6" y="1125" width="0.2" height="15.0" fill="rgb(221,0,1)" rx="2" ry="2" />
<text x="533.62" y="1135.5" ></text>
</g>
<g >
<title>zif_substr (20,202,020 samples, 0.04%)</title><rect x="905.8" y="1045" width="0.4" height="15.0" fill="rgb(212,8,38)" rx="2" ry="2" />
<text x="908.83" y="1055.5" ></text>
</g>
<g >
<title>ip_finish_output2 (30,303,030 samples, 0.05%)</title><rect x="1032.9" y="837" width="0.6" height="15.0" fill="rgb(220,154,25)" rx="2" ry="2" />
<text x="1035.92" y="847.5" ></text>
</g>
<g >
<title>do_bind_class (131,313,130 samples, 0.23%)</title><rect x="302.3" y="901" width="2.7" height="15.0" fill="rgb(209,147,9)" rx="2" ry="2" />
<text x="305.29" y="911.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="539.4" y="997" width="0.2" height="15.0" fill="rgb(249,125,19)" rx="2" ry="2" />
<text x="542.38" y="1007.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (151,515,150 samples, 0.26%)</title><rect x="301.9" y="981" width="3.1" height="15.0" fill="rgb(207,85,32)" rx="2" ry="2" />
<text x="304.88" y="991.5" ></text>
</g>
<g >
<title>php_replace_controlchars_ex (10,101,010 samples, 0.02%)</title><rect x="1055.2" y="1093" width="0.2" height="15.0" fill="rgb(251,40,4)" rx="2" ry="2" />
<text x="1058.21" y="1103.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="890.2" y="1109" width="0.2" height="15.0" fill="rgb(231,69,14)" rx="2" ry="2" />
<text x="893.21" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (50,505,050 samples, 0.09%)</title><rect x="742.5" y="853" width="1.0" height="15.0" fill="rgb(241,43,26)" rx="2" ry="2" />
<text x="745.50" y="863.5" ></text>
</g>
<g >
<title>path_lookupat (80,808,080 samples, 0.14%)</title><rect x="723.8" y="917" width="1.6" height="15.0" fill="rgb(207,153,34)" rx="2" ry="2" />
<text x="726.75" y="927.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1125" width="0.2" height="15.0" fill="rgb(253,147,47)" rx="2" ry="2" />
<text x="27.17" y="1135.5" ></text>
</g>
<g >
<title>__dentry_kill (10,101,010 samples, 0.02%)</title><rect x="1023.3" y="981" width="0.2" height="15.0" fill="rgb(209,90,23)" rx="2" ry="2" />
<text x="1026.33" y="991.5" ></text>
</g>
<g >
<title>putenv (10,101,010 samples, 0.02%)</title><rect x="1056.7" y="1109" width="0.2" height="15.0" fill="rgb(217,196,9)" rx="2" ry="2" />
<text x="1059.67" y="1119.5" ></text>
</g>
<g >
<title>zend_call_known_function (292,929,290 samples, 0.51%)</title><rect x="738.5" y="933" width="6.1" height="15.0" fill="rgb(211,194,11)" rx="2" ry="2" />
<text x="741.54" y="943.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="678.8" y="853" width="0.2" height="15.0" fill="rgb(234,62,9)" rx="2" ry="2" />
<text x="681.75" y="863.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="690.0" y="997" width="0.2" height="15.0" fill="rgb(216,99,42)" rx="2" ry="2" />
<text x="693.00" y="1007.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="524.4" y="805" width="0.2" height="15.0" fill="rgb(218,168,47)" rx="2" ry="2" />
<text x="527.38" y="815.5" ></text>
</g>
<g >
<title>sock_alloc_file (10,101,010 samples, 0.02%)</title><rect x="931.5" y="853" width="0.2" height="15.0" fill="rgb(209,82,50)" rx="2" ry="2" />
<text x="934.46" y="863.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_R_SPEC_TMPVAR_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="694.6" y="1125" width="0.2" height="15.0" fill="rgb(236,82,36)" rx="2" ry="2" />
<text x="697.58" y="1135.5" ></text>
</g>
<g >
<title>memcached_result_flags (10,101,010 samples, 0.02%)</title><rect x="1135.0" y="1205" width="0.2" height="15.0" fill="rgb(235,104,43)" rx="2" ry="2" />
<text x="1138.00" y="1215.5" ></text>
</g>
<g >
<title>zend_get_constant_str_impl (10,101,010 samples, 0.02%)</title><rect x="886.7" y="1013" width="0.2" height="15.0" fill="rgb(210,81,18)" rx="2" ry="2" />
<text x="889.67" y="1023.5" ></text>
</g>
<g >
<title>__xstat64 (10,101,010 samples, 0.02%)</title><rect x="295.6" y="1093" width="0.2" height="15.0" fill="rgb(250,202,19)" rx="2" ry="2" />
<text x="298.62" y="1103.5" ></text>
</g>
<g >
<title>ext4_xattr_get (90,909,090 samples, 0.16%)</title><rect x="376.5" y="901" width="1.8" height="15.0" fill="rgb(225,131,47)" rx="2" ry="2" />
<text x="379.46" y="911.5" ></text>
</g>
<g >
<title>ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CONST_HANDLER (151,515,150 samples, 0.26%)</title><rect x="715.4" y="1125" width="3.1" height="15.0" fill="rgb(207,81,42)" rx="2" ry="2" />
<text x="718.42" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv (121,212,120 samples, 0.21%)</title><rect x="1184.8" y="629" width="2.5" height="15.0" fill="rgb(209,208,26)" rx="2" ry="2" />
<text x="1187.79" y="639.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="981" width="0.2" height="15.0" fill="rgb(212,180,5)" rx="2" ry="2" />
<text x="1171.12" y="991.5" ></text>
</g>
<g >
<title>zend_perform_covariant_type_check (10,101,010 samples, 0.02%)</title><rect x="732.9" y="821" width="0.2" height="15.0" fill="rgb(237,130,51)" rx="2" ry="2" />
<text x="735.92" y="831.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="417.7" y="965" width="0.2" height="15.0" fill="rgb(231,48,42)" rx="2" ry="2" />
<text x="420.71" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1173" width="0.8" height="15.0" fill="rgb(249,193,48)" rx="2" ry="2" />
<text x="1124.67" y="1183.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="1082.9" y="1013" width="0.2" height="15.0" fill="rgb(223,131,50)" rx="2" ry="2" />
<text x="1085.92" y="1023.5" ></text>
</g>
<g >
<title>object_init_ex (515,151,510 samples, 0.90%)</title><rect x="758.1" y="1109" width="10.7" height="15.0" fill="rgb(222,213,19)" rx="2" ry="2" />
<text x="761.12" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1109" width="0.2" height="15.0" fill="rgb(207,111,40)" rx="2" ry="2" />
<text x="550.71" y="1119.5" ></text>
</g>
<g >
<title>ap_php_slprintf (20,202,020 samples, 0.04%)</title><rect x="480.6" y="1013" width="0.4" height="15.0" fill="rgb(216,86,20)" rx="2" ry="2" />
<text x="483.62" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1182.3" y="1061" width="0.2" height="15.0" fill="rgb(241,164,42)" rx="2" ry="2" />
<text x="1185.29" y="1071.5" ></text>
</g>
<g >
<title>tcp_in_window (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="821" width="0.2" height="15.0" fill="rgb(205,103,26)" rx="2" ry="2" />
<text x="1171.12" y="831.5" ></text>
</g>
<g >
<title>zend_default_exception_new_ex (313,131,310 samples, 0.55%)</title><rect x="760.0" y="1093" width="6.5" height="15.0" fill="rgb(222,173,7)" rx="2" ry="2" />
<text x="763.00" y="1103.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="910.2" y="933" width="0.2" height="15.0" fill="rgb(251,139,30)" rx="2" ry="2" />
<text x="913.21" y="943.5" ></text>
</g>
<g >
<title>sock_close (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1109" width="0.4" height="15.0" fill="rgb(224,151,2)" rx="2" ry="2" />
<text x="1147.38" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1055.6" y="1061" width="0.2" height="15.0" fill="rgb(243,210,35)" rx="2" ry="2" />
<text x="1058.62" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="623.1" y="1093" width="0.2" height="15.0" fill="rgb(211,208,26)" rx="2" ry="2" />
<text x="626.12" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="901" width="0.2" height="15.0" fill="rgb(222,19,44)" rx="2" ry="2" />
<text x="1150.29" y="911.5" ></text>
</g>
<g >
<title>nf_conntrack_in (30,303,030 samples, 0.05%)</title><rect x="938.5" y="661" width="0.7" height="15.0" fill="rgb(219,115,46)" rx="2" ry="2" />
<text x="941.54" y="671.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="998.8" y="869" width="0.2" height="15.0" fill="rgb(216,128,10)" rx="2" ry="2" />
<text x="1001.75" y="879.5" ></text>
</g>
<g >
<title>get_acl (20,202,020 samples, 0.04%)</title><rect x="388.8" y="869" width="0.4" height="15.0" fill="rgb(219,160,47)" rx="2" ry="2" />
<text x="391.75" y="879.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="718.3" y="741" width="0.2" height="15.0" fill="rgb(228,192,33)" rx="2" ry="2" />
<text x="721.33" y="751.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="421" width="0.4" height="15.0" fill="rgb(227,65,53)" rx="2" ry="2" />
<text x="1092.58" y="431.5" ></text>
</g>
<g >
<title>zend_hash_func (20,202,020 samples, 0.04%)</title><rect x="445.8" y="1093" width="0.4" height="15.0" fill="rgb(233,96,29)" rx="2" ry="2" />
<text x="448.83" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="881.2" y="869" width="0.3" height="15.0" fill="rgb(221,215,10)" rx="2" ry="2" />
<text x="884.25" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb (616,161,610 samples, 1.08%)</title><rect x="1151.5" y="805" width="12.7" height="15.0" fill="rgb(245,4,11)" rx="2" ry="2" />
<text x="1154.46" y="815.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (90,909,090 samples, 0.16%)</title><rect x="1137.5" y="1125" width="1.9" height="15.0" fill="rgb(254,47,22)" rx="2" ry="2" />
<text x="1140.50" y="1135.5" ></text>
</g>
<g >
<title>virtqueue_notify (60,606,060 samples, 0.11%)</title><rect x="1185.2" y="389" width="1.3" height="15.0" fill="rgb(247,208,31)" rx="2" ry="2" />
<text x="1188.21" y="399.5" ></text>
</g>
<g >
<title>compile_filename (70,707,070 samples, 0.12%)</title><rect x="777.7" y="997" width="1.5" height="15.0" fill="rgb(223,134,27)" rx="2" ry="2" />
<text x="780.71" y="1007.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="437" width="0.4" height="15.0" fill="rgb(245,102,46)" rx="2" ry="2" />
<text x="1092.58" y="447.5" ></text>
</g>
<g >
<title>vfs_statx (60,606,060 samples, 0.11%)</title><rect x="956.9" y="1029" width="1.2" height="15.0" fill="rgb(223,109,3)" rx="2" ry="2" />
<text x="959.88" y="1039.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="539.4" y="949" width="0.2" height="15.0" fill="rgb(236,28,0)" rx="2" ry="2" />
<text x="542.38" y="959.5" ></text>
</g>
<g >
<title>__this_module (20,202,020 samples, 0.04%)</title><rect x="936.9" y="837" width="0.4" height="15.0" fill="rgb(224,214,4)" rx="2" ry="2" />
<text x="939.88" y="847.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="335.0" y="1125" width="0.2" height="15.0" fill="rgb(224,96,11)" rx="2" ry="2" />
<text x="338.00" y="1135.5" ></text>
</g>
<g >
<title>TRACE-264$Wikimedia\Rdbms\LoadBalancer::assertOwnership$2041 (10,101,010 samples, 0.02%)</title><rect x="470.0" y="1141" width="0.2" height="15.0" fill="rgb(238,229,35)" rx="2" ry="2" />
<text x="473.00" y="1151.5" ></text>
</g>
<g >
<title>fib_table_lookup (10,101,010 samples, 0.02%)</title><rect x="1187.1" y="501" width="0.2" height="15.0" fill="rgb(234,166,51)" rx="2" ry="2" />
<text x="1190.08" y="511.5" ></text>
</g>
<g >
<title>new_sync_read (20,202,020 samples, 0.04%)</title><rect x="946.5" y="933" width="0.4" height="15.0" fill="rgb(234,218,26)" rx="2" ry="2" />
<text x="949.46" y="943.5" ></text>
</g>
<g >
<title>netlink_has_listeners (10,101,010 samples, 0.02%)</title><rect x="941.7" y="597" width="0.2" height="15.0" fill="rgb(235,143,24)" rx="2" ry="2" />
<text x="944.67" y="607.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="395.4" y="885" width="0.2" height="15.0" fill="rgb(244,178,22)" rx="2" ry="2" />
<text x="398.42" y="895.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="773" width="0.4" height="15.0" fill="rgb(226,153,7)" rx="2" ry="2" />
<text x="1035.92" y="783.5" ></text>
</g>
<g >
<title>nf_nat_manip_pkt (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="757" width="0.2" height="15.0" fill="rgb(231,224,32)" rx="2" ry="2" />
<text x="1127.17" y="767.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="866.7" y="901" width="0.2" height="15.0" fill="rgb(223,102,42)" rx="2" ry="2" />
<text x="869.67" y="911.5" ></text>
</g>
<g >
<title>zend_objects_new (10,101,010 samples, 0.02%)</title><rect x="532.1" y="1093" width="0.2" height="15.0" fill="rgb(243,98,4)" rx="2" ry="2" />
<text x="535.08" y="1103.5" ></text>
</g>
<g >
<title>TRACE-374$Composer\Autoload\ClassLoader::loadClass$427 (10,101,010 samples, 0.02%)</title><rect x="268.8" y="1013" width="0.2" height="15.0" fill="rgb(212,58,15)" rx="2" ry="2" />
<text x="271.75" y="1023.5" ></text>
</g>
<g >
<title>user_path_at_empty (131,313,130 samples, 0.23%)</title><rect x="723.8" y="949" width="2.7" height="15.0" fill="rgb(216,68,37)" rx="2" ry="2" />
<text x="726.75" y="959.5" ></text>
</g>
<g >
<title>_efree_56 (10,101,010 samples, 0.02%)</title><rect x="494.0" y="1125" width="0.2" height="15.0" fill="rgb(223,153,19)" rx="2" ry="2" />
<text x="496.96" y="1135.5" ></text>
</g>
<g >
<title>xattr_resolve_name (10,101,010 samples, 0.02%)</title><rect x="957.3" y="933" width="0.2" height="15.0" fill="rgb(251,148,38)" rx="2" ry="2" />
<text x="960.29" y="943.5" ></text>
</g>
<g >
<title>clear_page_rep (10,101,010 samples, 0.02%)</title><rect x="919.2" y="869" width="0.2" height="15.0" fill="rgb(214,51,21)" rx="2" ry="2" />
<text x="922.17" y="879.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="917" width="0.2" height="15.0" fill="rgb(240,59,52)" rx="2" ry="2" />
<text x="1083.83" y="927.5" ></text>
</g>
<g >
<title>inode_init_always (10,101,010 samples, 0.02%)</title><rect x="931.2" y="789" width="0.3" height="15.0" fill="rgb(228,133,42)" rx="2" ry="2" />
<text x="934.25" y="799.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="798.8" y="869" width="0.4" height="15.0" fill="rgb(214,67,7)" rx="2" ry="2" />
<text x="801.75" y="879.5" ></text>
</g>
<g >
<title>strlen (10,101,010 samples, 0.02%)</title><rect x="1135.6" y="1013" width="0.2" height="15.0" fill="rgb(238,187,46)" rx="2" ry="2" />
<text x="1138.62" y="1023.5" ></text>
</g>
<g >
<title>alloc_file (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1061" width="0.2" height="15.0" fill="rgb(249,110,34)" rx="2" ry="2" />
<text x="207.17" y="1071.5" ></text>
</g>
<g >
<title>zend_get_class_fetch_type (10,101,010 samples, 0.02%)</title><rect x="892.3" y="1109" width="0.2" height="15.0" fill="rgb(210,151,27)" rx="2" ry="2" />
<text x="895.29" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_inner_W (10,101,010 samples, 0.02%)</title><rect x="623.1" y="1109" width="0.2" height="15.0" fill="rgb(217,49,50)" rx="2" ry="2" />
<text x="626.12" y="1119.5" ></text>
</g>
<g >
<title>veth_xmit (10,101,010 samples, 0.02%)</title><rect x="1033.3" y="773" width="0.2" height="15.0" fill="rgb(206,19,34)" rx="2" ry="2" />
<text x="1036.33" y="783.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="282.9" y="1045" width="0.4" height="15.0" fill="rgb(235,178,27)" rx="2" ry="2" />
<text x="285.92" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_add (20,202,020 samples, 0.04%)</title><rect x="705.2" y="1045" width="0.4" height="15.0" fill="rgb(205,78,37)" rx="2" ry="2" />
<text x="708.21" y="1055.5" ></text>
</g>
<g >
<title>zend_std_read_property (10,101,010 samples, 0.02%)</title><rect x="535.6" y="1109" width="0.2" height="15.0" fill="rgb(225,93,37)" rx="2" ry="2" />
<text x="538.62" y="1119.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (191,919,190 samples, 0.34%)</title><rect x="773.5" y="1045" width="4.0" height="15.0" fill="rgb(236,144,21)" rx="2" ry="2" />
<text x="776.54" y="1055.5" ></text>
</g>
<g >
<title>ip_route_input_noref (10,101,010 samples, 0.02%)</title><rect x="1187.1" y="549" width="0.2" height="15.0" fill="rgb(231,137,51)" rx="2" ry="2" />
<text x="1190.08" y="559.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (30,303,030 samples, 0.05%)</title><rect x="433.8" y="1045" width="0.6" height="15.0" fill="rgb(249,196,35)" rx="2" ry="2" />
<text x="436.75" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1221" width="0.2" height="15.0" fill="rgb(213,208,20)" rx="2" ry="2" />
<text x="1175.08" y="1231.5" ></text>
</g>
<g >
<title>apparmor_inode_getattr (30,303,030 samples, 0.05%)</title><rect x="425.2" y="981" width="0.6" height="15.0" fill="rgb(250,199,42)" rx="2" ry="2" />
<text x="428.21" y="991.5" ></text>
</g>
<g >
<title>__x64_sys_poll (30,303,030 samples, 0.05%)</title><rect x="925.2" y="821" width="0.6" height="15.0" fill="rgb(207,43,1)" rx="2" ry="2" />
<text x="928.21" y="831.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="1184.4" y="949" width="0.2" height="15.0" fill="rgb(218,216,15)" rx="2" ry="2" />
<text x="1187.38" y="959.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="933" width="0.2" height="15.0" fill="rgb(206,92,40)" rx="2" ry="2" />
<text x="1083.83" y="943.5" ></text>
</g>
<g >
<title>destroy_op_array (10,101,010 samples, 0.02%)</title><rect x="851.7" y="917" width="0.2" height="15.0" fill="rgb(223,37,27)" rx="2" ry="2" />
<text x="854.67" y="927.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="773" width="0.3" height="15.0" fill="rgb(228,171,10)" rx="2" ry="2" />
<text x="1134.25" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1205" width="0.2" height="15.0" fill="rgb(249,143,21)" rx="2" ry="2" />
<text x="1175.08" y="1215.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="443.3" y="981" width="0.2" height="15.0" fill="rgb(228,211,17)" rx="2" ry="2" />
<text x="446.33" y="991.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="932.3" y="725" width="0.2" height="15.0" fill="rgb(243,130,49)" rx="2" ry="2" />
<text x="935.29" y="735.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="744.0" y="757" width="0.2" height="15.0" fill="rgb(222,176,50)" rx="2" ry="2" />
<text x="746.96" y="767.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="1002.1" y="933" width="0.4" height="15.0" fill="rgb(246,13,31)" rx="2" ry="2" />
<text x="1005.08" y="943.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="727.1" y="965" width="0.2" height="15.0" fill="rgb(229,37,51)" rx="2" ry="2" />
<text x="730.08" y="975.5" ></text>
</g>
<g >
<title>schedule (20,202,020 samples, 0.04%)</title><rect x="194.0" y="1045" width="0.4" height="15.0" fill="rgb(212,104,31)" rx="2" ry="2" />
<text x="196.96" y="1055.5" ></text>
</g>
<g >
<title>timelib_parse_zone (10,101,010 samples, 0.02%)</title><rect x="487.5" y="1093" width="0.2" height="15.0" fill="rgb(208,190,47)" rx="2" ry="2" />
<text x="490.50" y="1103.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="457.3" y="1045" width="0.2" height="15.0" fill="rgb(242,200,28)" rx="2" ry="2" />
<text x="460.29" y="1055.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1082.9" y="1061" width="0.2" height="15.0" fill="rgb(253,107,22)" rx="2" ry="2" />
<text x="1085.92" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_update (40,404,040 samples, 0.07%)</title><rect x="610.2" y="1109" width="0.8" height="15.0" fill="rgb(236,1,52)" rx="2" ry="2" />
<text x="613.21" y="1119.5" ></text>
</g>
<g >
<title>legitimize_root (10,101,010 samples, 0.02%)</title><rect x="393.1" y="949" width="0.2" height="15.0" fill="rgb(210,159,46)" rx="2" ry="2" />
<text x="396.12" y="959.5" ></text>
</g>
<g >
<title>zend_reference_destroy (80,808,080 samples, 0.14%)</title><rect x="988.5" y="1125" width="1.7" height="15.0" fill="rgb(252,150,38)" rx="2" ry="2" />
<text x="991.54" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (50,505,050 samples, 0.09%)</title><rect x="1013.5" y="1045" width="1.1" height="15.0" fill="rgb(238,140,26)" rx="2" ry="2" />
<text x="1016.54" y="1055.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (50,505,050 samples, 0.09%)</title><rect x="338.8" y="1109" width="1.0" height="15.0" fill="rgb(205,129,53)" rx="2" ry="2" />
<text x="341.75" y="1119.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="869" width="0.2" height="15.0" fill="rgb(215,37,53)" rx="2" ry="2" />
<text x="1095.08" y="879.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="342.3" y="1061" width="0.2" height="15.0" fill="rgb(227,203,47)" rx="2" ry="2" />
<text x="345.29" y="1071.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="861.0" y="757" width="0.2" height="15.0" fill="rgb(252,131,11)" rx="2" ry="2" />
<text x="864.04" y="767.5" ></text>
</g>
<g >
<title>tcp_done (10,101,010 samples, 0.02%)</title><rect x="799.0" y="549" width="0.2" height="15.0" fill="rgb(245,49,35)" rx="2" ry="2" />
<text x="801.96" y="559.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="682.1" y="949" width="0.2" height="15.0" fill="rgb(219,70,44)" rx="2" ry="2" />
<text x="685.08" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (404,040,400 samples, 0.71%)</title><rect x="1124.0" y="1189" width="8.3" height="15.0" fill="rgb(241,65,34)" rx="2" ry="2" />
<text x="1126.96" y="1199.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (60,606,060 samples, 0.11%)</title><rect x="961.5" y="1125" width="1.2" height="15.0" fill="rgb(245,18,1)" rx="2" ry="2" />
<text x="964.46" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="1058.1" y="1013" width="0.4" height="15.0" fill="rgb(208,128,6)" rx="2" ry="2" />
<text x="1061.12" y="1023.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="899.6" y="1077" width="0.2" height="15.0" fill="rgb(244,109,20)" rx="2" ry="2" />
<text x="902.58" y="1087.5" ></text>
</g>
<g >
<title>zend_std_read_property (101,010,100 samples, 0.18%)</title><rect x="994.6" y="1125" width="2.1" height="15.0" fill="rgb(222,141,22)" rx="2" ry="2" />
<text x="997.58" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.09%)</title><rect x="500.6" y="1013" width="1.1" height="15.0" fill="rgb(245,202,0)" rx="2" ry="2" />
<text x="503.62" y="1023.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_network_read_pub (40,404,040 samples, 0.07%)</title><rect x="929.6" y="981" width="0.8" height="15.0" fill="rgb(213,49,37)" rx="2" ry="2" />
<text x="932.58" y="991.5" ></text>
</g>
<g >
<title>netlink_has_listeners (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="773" width="0.3" height="15.0" fill="rgb(216,87,53)" rx="2" ry="2" />
<text x="1036.54" y="783.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="498.3" y="1125" width="0.2" height="15.0" fill="rgb(228,32,48)" rx="2" ry="2" />
<text x="501.33" y="1135.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (20,202,020 samples, 0.04%)</title><rect x="881.0" y="917" width="0.5" height="15.0" fill="rgb(207,49,40)" rx="2" ry="2" />
<text x="884.04" y="927.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_R_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="551.5" y="1141" width="0.2" height="15.0" fill="rgb(239,85,37)" rx="2" ry="2" />
<text x="554.46" y="1151.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="1162.7" y="725" width="0.2" height="15.0" fill="rgb(252,169,26)" rx="2" ry="2" />
<text x="1165.71" y="735.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="485" width="0.4" height="15.0" fill="rgb(223,57,0)" rx="2" ry="2" />
<text x="1092.58" y="495.5" ></text>
</g>
<g >
<title>nf_confirm (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="421" width="0.2" height="15.0" fill="rgb(222,167,3)" rx="2" ry="2" />
<text x="1035.92" y="431.5" ></text>
</g>
<g >
<title>php_date_initialize (20,202,020 samples, 0.04%)</title><rect x="1021.0" y="1109" width="0.5" height="15.0" fill="rgb(247,218,3)" rx="2" ry="2" />
<text x="1024.04" y="1119.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="984.4" y="1045" width="0.4" height="15.0" fill="rgb(220,5,39)" rx="2" ry="2" />
<text x="987.38" y="1055.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="997" width="0.3" height="15.0" fill="rgb(235,93,5)" rx="2" ry="2" />
<text x="1044.25" y="1007.5" ></text>
</g>
<g >
<title>zif_strtolower (10,101,010 samples, 0.02%)</title><rect x="1075.8" y="1141" width="0.2" height="15.0" fill="rgb(238,86,46)" rx="2" ry="2" />
<text x="1078.83" y="1151.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_CONST_CONST_HANDLER (545,454,540 samples, 0.95%)</title><rect x="673.8" y="1125" width="11.2" height="15.0" fill="rgb(251,162,16)" rx="2" ry="2" />
<text x="676.75" y="1135.5" ></text>
</g>
<g >
<title>__audit_getname (20,202,020 samples, 0.04%)</title><rect x="534.2" y="917" width="0.4" height="15.0" fill="rgb(231,62,23)" rx="2" ry="2" />
<text x="537.17" y="927.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="335.2" y="1125" width="0.4" height="15.0" fill="rgb(227,225,23)" rx="2" ry="2" />
<text x="338.21" y="1135.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="925.6" y="741" width="0.2" height="15.0" fill="rgb(230,160,20)" rx="2" ry="2" />
<text x="928.62" y="751.5" ></text>
</g>
<g >
<title>zend_do_delayed_early_binding (10,101,010 samples, 0.02%)</title><rect x="731.2" y="949" width="0.3" height="15.0" fill="rgb(246,116,20)" rx="2" ry="2" />
<text x="734.25" y="959.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="641.5" y="1061" width="0.2" height="15.0" fill="rgb(237,128,43)" rx="2" ry="2" />
<text x="644.46" y="1071.5" ></text>
</g>
<g >
<title>php_strcspn (262,626,260 samples, 0.46%)</title><rect x="322.9" y="1125" width="5.4" height="15.0" fill="rgb(243,72,23)" rx="2" ry="2" />
<text x="325.92" y="1135.5" ></text>
</g>
<g >
<title>fib_table_lookup (10,101,010 samples, 0.02%)</title><rect x="442.3" y="821" width="0.2" height="15.0" fill="rgb(215,45,5)" rx="2" ry="2" />
<text x="445.29" y="831.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="805.6" y="773" width="0.2" height="15.0" fill="rgb(213,116,34)" rx="2" ry="2" />
<text x="808.62" y="783.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="450.4" y="1077" width="0.2" height="15.0" fill="rgb(240,162,44)" rx="2" ry="2" />
<text x="453.42" y="1087.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="30.2" y="773" width="0.2" height="15.0" fill="rgb(247,162,33)" rx="2" ry="2" />
<text x="33.21" y="783.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="919.2" y="901" width="0.2" height="15.0" fill="rgb(239,159,31)" rx="2" ry="2" />
<text x="922.17" y="911.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1077" width="0.3" height="15.0" fill="rgb(235,125,44)" rx="2" ry="2" />
<text x="1174.25" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="1018.8" y="901" width="0.4" height="15.0" fill="rgb(231,60,0)" rx="2" ry="2" />
<text x="1021.75" y="911.5" ></text>
</g>
<g >
<title>zend_fetch_var_address_helper_SPEC_CONST_UNUSED (60,606,060 samples, 0.11%)</title><rect x="977.5" y="1125" width="1.3" height="15.0" fill="rgb(226,117,46)" rx="2" ry="2" />
<text x="980.50" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (20,202,020 samples, 0.04%)</title><rect x="641.7" y="1061" width="0.4" height="15.0" fill="rgb(252,93,12)" rx="2" ry="2" />
<text x="644.67" y="1071.5" ></text>
</g>
<g >
<title>TRACE-10$AutoLoader::find$49 (20,202,020 samples, 0.04%)</title><rect x="772.7" y="1045" width="0.4" height="15.0" fill="rgb(224,174,19)" rx="2" ry="2" />
<text x="775.71" y="1055.5" ></text>
</g>
<g >
<title>zend_init_dynamic_call_object (10,101,010 samples, 0.02%)</title><rect x="715.0" y="1109" width="0.2" height="15.0" fill="rgb(219,76,34)" rx="2" ry="2" />
<text x="718.00" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="682.1" y="917" width="0.2" height="15.0" fill="rgb(213,74,4)" rx="2" ry="2" />
<text x="685.08" y="927.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (40,404,040 samples, 0.07%)</title><rect x="289.0" y="1109" width="0.8" height="15.0" fill="rgb(225,26,6)" rx="2" ry="2" />
<text x="291.96" y="1119.5" ></text>
</g>
<g >
<title>cfree (10,101,010 samples, 0.02%)</title><rect x="35.2" y="1157" width="0.2" height="15.0" fill="rgb(230,154,6)" rx="2" ry="2" />
<text x="38.21" y="1167.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (30,303,030 samples, 0.05%)</title><rect x="1089.4" y="597" width="0.6" height="15.0" fill="rgb(243,0,18)" rx="2" ry="2" />
<text x="1092.38" y="607.5" ></text>
</g>
<g >
<title>spl_perform_autoload (1,424,242,410 samples, 2.49%)</title><rect x="720.4" y="1077" width="29.4" height="15.0" fill="rgb(252,35,49)" rx="2" ry="2" />
<text x="723.42" y="1087.5" >sp..</text>
</g>
<g >
<title>TRACE-197$Wikimedia\Services\ServiceContainer::createService$442 (40,404,040 samples, 0.07%)</title><rect x="341.0" y="1141" width="0.9" height="15.0" fill="rgb(247,136,48)" rx="2" ry="2" />
<text x="344.04" y="1151.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1061" width="0.2" height="15.0" fill="rgb(238,42,14)" rx="2" ry="2" />
<text x="985.92" y="1071.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="307.7" y="1109" width="0.2" height="15.0" fill="rgb(239,213,43)" rx="2" ry="2" />
<text x="310.71" y="1119.5" ></text>
</g>
<g >
<title>start_xmit (242,424,240 samples, 0.42%)</title><rect x="1152.9" y="373" width="5.0" height="15.0" fill="rgb(232,8,20)" rx="2" ry="2" />
<text x="1155.92" y="383.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="549" width="0.4" height="15.0" fill="rgb(245,16,40)" rx="2" ry="2" />
<text x="1092.58" y="559.5" ></text>
</g>
<g >
<title>nf_nat_masquerade_ipv4 (20,202,020 samples, 0.04%)</title><rect x="940.2" y="117" width="0.4" height="15.0" fill="rgb(211,144,10)" rx="2" ry="2" />
<text x="943.21" y="127.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (10,101,010 samples, 0.02%)</title><rect x="481.0" y="1125" width="0.2" height="15.0" fill="rgb(244,84,22)" rx="2" ry="2" />
<text x="484.04" y="1135.5" ></text>
</g>
<g >
<title>zend_std_write_property (20,202,020 samples, 0.04%)</title><rect x="624.0" y="1109" width="0.4" height="15.0" fill="rgb(226,55,9)" rx="2" ry="2" />
<text x="626.96" y="1119.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="517.1" y="1109" width="0.2" height="15.0" fill="rgb(214,139,48)" rx="2" ry="2" />
<text x="520.08" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="611.2" y="1109" width="0.3" height="15.0" fill="rgb(226,8,1)" rx="2" ry="2" />
<text x="614.25" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="106.9" y="981" width="0.2" height="15.0" fill="rgb(243,53,28)" rx="2" ry="2" />
<text x="109.88" y="991.5" ></text>
</g>
<g >
<title>zif_implode (10,101,010 samples, 0.02%)</title><rect x="478.8" y="1125" width="0.2" height="15.0" fill="rgb(247,2,15)" rx="2" ry="2" />
<text x="481.75" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="450.4" y="1109" width="0.2" height="15.0" fill="rgb(252,18,42)" rx="2" ry="2" />
<text x="453.42" y="1119.5" ></text>
</g>
<g >
<title>audit_filter_inodes (10,101,010 samples, 0.02%)</title><rect x="903.8" y="1061" width="0.2" height="15.0" fill="rgb(219,115,22)" rx="2" ry="2" />
<text x="906.75" y="1071.5" ></text>
</g>
<g >
<title>memcached_server_response_count@plt (10,101,010 samples, 0.02%)</title><rect x="36.0" y="1189" width="0.2" height="15.0" fill="rgb(216,62,46)" rx="2" ry="2" />
<text x="39.04" y="1199.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="861.0" y="677" width="0.2" height="15.0" fill="rgb(229,106,3)" rx="2" ry="2" />
<text x="864.04" y="687.5" ></text>
</g>
<g >
<title>persistent_compile_file (40,404,040 samples, 0.07%)</title><rect x="683.8" y="949" width="0.8" height="15.0" fill="rgb(239,133,13)" rx="2" ry="2" />
<text x="686.75" y="959.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (10,101,010 samples, 0.02%)</title><rect x="687.3" y="965" width="0.2" height="15.0" fill="rgb(211,125,3)" rx="2" ry="2" />
<text x="690.29" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="1045" width="0.2" height="15.0" fill="rgb(217,198,4)" rx="2" ry="2" />
<text x="1099.04" y="1055.5" ></text>
</g>
<g >
<title>zend_do_delayed_early_binding (10,101,010 samples, 0.02%)</title><rect x="922.5" y="741" width="0.2" height="15.0" fill="rgb(226,98,28)" rx="2" ry="2" />
<text x="925.50" y="751.5" ></text>
</g>
<g >
<title>TRACE-377$Composer\Autoload\ClassLoader::loadClass$427 (20,202,020 samples, 0.04%)</title><rect x="269.0" y="1013" width="0.4" height="15.0" fill="rgb(245,126,15)" rx="2" ry="2" />
<text x="271.96" y="1023.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1045" width="0.2" height="15.0" fill="rgb(235,165,38)" rx="2" ry="2" />
<text x="550.71" y="1055.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="134.4" y="1077" width="0.2" height="15.0" fill="rgb(225,188,27)" rx="2" ry="2" />
<text x="137.38" y="1087.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="922.5" y="709" width="0.2" height="15.0" fill="rgb(243,218,46)" rx="2" ry="2" />
<text x="925.50" y="719.5" ></text>
</g>
<g >
<title>br_nf_post_routing (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="469" width="0.2" height="15.0" fill="rgb(211,68,51)" rx="2" ry="2" />
<text x="1035.92" y="479.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="1149.8" y="901" width="0.2" height="15.0" fill="rgb(218,123,4)" rx="2" ry="2" />
<text x="1152.79" y="911.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="973.3" y="1013" width="0.2" height="15.0" fill="rgb(205,219,38)" rx="2" ry="2" />
<text x="976.33" y="1023.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="731.2" y="805" width="0.3" height="15.0" fill="rgb(220,166,22)" rx="2" ry="2" />
<text x="734.25" y="815.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="511.7" y="997" width="0.2" height="15.0" fill="rgb(206,119,28)" rx="2" ry="2" />
<text x="514.67" y="1007.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="881.2" y="613" width="0.3" height="15.0" fill="rgb(229,86,38)" rx="2" ry="2" />
<text x="884.25" y="623.5" ></text>
</g>
<g >
<title>TRACE-254$Wikimedia\Rdbms\{closure}$249 (30,303,030 samples, 0.05%)</title><rect x="464.2" y="1141" width="0.6" height="15.0" fill="rgb(246,159,7)" rx="2" ry="2" />
<text x="467.17" y="1151.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="685.6" y="965" width="0.2" height="15.0" fill="rgb(251,199,50)" rx="2" ry="2" />
<text x="688.62" y="975.5" ></text>
</g>
<g >
<title>object_init_ex (50,505,050 samples, 0.09%)</title><rect x="474.2" y="1093" width="1.0" height="15.0" fill="rgb(214,126,30)" rx="2" ry="2" />
<text x="477.17" y="1103.5" ></text>
</g>
<g >
<title>ip_sabotage_in (70,707,070 samples, 0.12%)</title><rect x="939.4" y="309" width="1.4" height="15.0" fill="rgb(212,119,22)" rx="2" ry="2" />
<text x="942.38" y="319.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="905.0" y="821" width="0.2" height="15.0" fill="rgb(205,81,45)" rx="2" ry="2" />
<text x="908.00" y="831.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="499.2" y="1125" width="0.2" height="15.0" fill="rgb(245,125,18)" rx="2" ry="2" />
<text x="502.17" y="1135.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="1057.1" y="1093" width="0.2" height="15.0" fill="rgb(240,189,10)" rx="2" ry="2" />
<text x="1060.08" y="1103.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="677.7" y="709" width="0.2" height="15.0" fill="rgb(206,85,40)" rx="2" ry="2" />
<text x="680.71" y="719.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="799.0" y="613" width="0.2" height="15.0" fill="rgb(225,94,23)" rx="2" ry="2" />
<text x="801.96" y="623.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="869" width="0.2" height="15.0" fill="rgb(252,214,12)" rx="2" ry="2" />
<text x="1085.08" y="879.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (80,808,080 samples, 0.14%)</title><rect x="921.2" y="1013" width="1.7" height="15.0" fill="rgb(215,146,6)" rx="2" ry="2" />
<text x="924.25" y="1023.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="718.3" y="965" width="0.2" height="15.0" fill="rgb(231,19,20)" rx="2" ry="2" />
<text x="721.33" y="975.5" ></text>
</g>
<g >
<title>ZEND_INIT_ARRAY_SPEC_VAR_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="711.7" y="1125" width="0.2" height="15.0" fill="rgb(233,26,15)" rx="2" ry="2" />
<text x="714.67" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output (40,404,040 samples, 0.07%)</title><rect x="939.4" y="229" width="0.8" height="15.0" fill="rgb(241,150,11)" rx="2" ry="2" />
<text x="942.38" y="239.5" ></text>
</g>
<g >
<title>syscall_trace_enter (131,313,130 samples, 0.23%)</title><rect x="433.3" y="1061" width="2.7" height="15.0" fill="rgb(244,143,36)" rx="2" ry="2" />
<text x="436.33" y="1071.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="304.2" y="613" width="0.2" height="15.0" fill="rgb(210,25,32)" rx="2" ry="2" />
<text x="307.17" y="623.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (20,202,020 samples, 0.04%)</title><rect x="301.0" y="949" width="0.5" height="15.0" fill="rgb(243,85,44)" rx="2" ry="2" />
<text x="304.04" y="959.5" ></text>
</g>
<g >
<title>release_posix_timer (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1141" width="0.2" height="15.0" fill="rgb(249,107,31)" rx="2" ry="2" />
<text x="1175.50" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="805.2" y="805" width="0.2" height="15.0" fill="rgb(232,148,48)" rx="2" ry="2" />
<text x="808.21" y="815.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1061" width="0.2" height="15.0" fill="rgb(229,120,17)" rx="2" ry="2" />
<text x="479.88" y="1071.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="1162.9" y="677" width="0.2" height="15.0" fill="rgb(226,144,9)" rx="2" ry="2" />
<text x="1165.92" y="687.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="967.1" y="885" width="0.2" height="15.0" fill="rgb(225,144,24)" rx="2" ry="2" />
<text x="970.08" y="895.5" ></text>
</g>
<g >
<title>TRACE-161$Wikimedia\ScopedCallback::__destruct$95 (10,101,010 samples, 0.02%)</title><rect x="1087.7" y="1013" width="0.2" height="15.0" fill="rgb(233,135,19)" rx="2" ry="2" />
<text x="1090.71" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (191,919,190 samples, 0.34%)</title><rect x="723.3" y="1013" width="4.0" height="15.0" fill="rgb(231,214,44)" rx="2" ry="2" />
<text x="726.33" y="1023.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (10,101,010 samples, 0.02%)</title><rect x="931.5" y="837" width="0.2" height="15.0" fill="rgb(245,226,16)" rx="2" ry="2" />
<text x="934.46" y="847.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (30,303,030 samples, 0.05%)</title><rect x="906.7" y="1061" width="0.6" height="15.0" fill="rgb(218,136,19)" rx="2" ry="2" />
<text x="909.67" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="822.7" y="965" width="0.2" height="15.0" fill="rgb(249,104,5)" rx="2" ry="2" />
<text x="825.71" y="975.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="806.9" y="837" width="0.2" height="15.0" fill="rgb(222,138,11)" rx="2" ry="2" />
<text x="809.88" y="847.5" ></text>
</g>
<g >
<title>validate_xmit_skb (10,101,010 samples, 0.02%)</title><rect x="1129.2" y="405" width="0.2" height="15.0" fill="rgb(241,205,16)" rx="2" ry="2" />
<text x="1132.17" y="415.5" ></text>
</g>
<g >
<title>ZEND_FE_FETCH_RW_SPEC_VAR_HANDLER (30,303,030 samples, 0.05%)</title><rect x="315.4" y="1125" width="0.6" height="15.0" fill="rgb(251,186,2)" rx="2" ry="2" />
<text x="318.42" y="1135.5" ></text>
</g>
<g >
<title>persistent_zend_resolve_path (40,404,040 samples, 0.07%)</title><rect x="709.8" y="1093" width="0.8" height="15.0" fill="rgb(253,112,43)" rx="2" ry="2" />
<text x="712.79" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (40,404,040 samples, 0.07%)</title><rect x="1162.9" y="725" width="0.9" height="15.0" fill="rgb(228,8,24)" rx="2" ry="2" />
<text x="1165.92" y="735.5" ></text>
</g>
<g >
<title>php_stream_locate_url_wrapper (50,505,050 samples, 0.09%)</title><rect x="442.5" y="1109" width="1.0" height="15.0" fill="rgb(233,189,1)" rx="2" ry="2" />
<text x="445.50" y="1119.5" ></text>
</g>
<g >
<title>secure_tcp_seq (10,101,010 samples, 0.02%)</title><rect x="937.9" y="789" width="0.2" height="15.0" fill="rgb(206,148,6)" rx="2" ry="2" />
<text x="940.92" y="799.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="914.6" y="853" width="0.2" height="15.0" fill="rgb(237,131,20)" rx="2" ry="2" />
<text x="917.58" y="863.5" ></text>
</g>
<g >
<title>spl_perform_autoload (50,505,050 samples, 0.09%)</title><rect x="742.5" y="821" width="1.0" height="15.0" fill="rgb(205,220,50)" rx="2" ry="2" />
<text x="745.50" y="831.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="341" width="0.2" height="15.0" fill="rgb(221,38,36)" rx="2" ry="2" />
<text x="1132.38" y="351.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="926.9" y="709" width="0.2" height="15.0" fill="rgb(246,146,15)" rx="2" ry="2" />
<text x="929.88" y="719.5" ></text>
</g>
<g >
<title>cfree (10,101,010 samples, 0.02%)</title><rect x="943.5" y="885" width="0.3" height="15.0" fill="rgb(220,24,53)" rx="2" ry="2" />
<text x="946.54" y="895.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="805" width="0.2" height="15.0" fill="rgb(242,133,42)" rx="2" ry="2" />
<text x="1170.08" y="815.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="447.3" y="1029" width="0.2" height="15.0" fill="rgb(226,96,37)" rx="2" ry="2" />
<text x="450.29" y="1039.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="918.1" y="1045" width="0.2" height="15.0" fill="rgb(242,202,46)" rx="2" ry="2" />
<text x="921.12" y="1055.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="250.4" y="1077" width="0.2" height="15.0" fill="rgb(249,181,36)" rx="2" ry="2" />
<text x="253.42" y="1087.5" ></text>
</g>
<g >
<title>spl_perform_autoload (40,404,040 samples, 0.07%)</title><rect x="339.0" y="1077" width="0.8" height="15.0" fill="rgb(252,9,8)" rx="2" ry="2" />
<text x="341.96" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="767.3" y="933" width="0.2" height="15.0" fill="rgb(224,132,0)" rx="2" ry="2" />
<text x="770.29" y="943.5" ></text>
</g>
<g >
<title>skb_release_data (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="725" width="0.2" height="15.0" fill="rgb(234,218,41)" rx="2" ry="2" />
<text x="1010.50" y="735.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="534.6" y="917" width="0.2" height="15.0" fill="rgb(238,94,8)" rx="2" ry="2" />
<text x="537.58" y="927.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="416.9" y="741" width="0.2" height="15.0" fill="rgb(247,162,38)" rx="2" ry="2" />
<text x="419.88" y="751.5" ></text>
</g>
<g >
<title>add_assoc_long_ex (30,303,030 samples, 0.05%)</title><rect x="1038.8" y="1109" width="0.6" height="15.0" fill="rgb(237,17,28)" rx="2" ry="2" />
<text x="1041.75" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="872.7" y="901" width="0.2" height="15.0" fill="rgb(229,215,14)" rx="2" ry="2" />
<text x="875.71" y="911.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (191,919,190 samples, 0.34%)</title><rect x="180.2" y="1061" width="4.0" height="15.0" fill="rgb(228,152,5)" rx="2" ry="2" />
<text x="183.21" y="1071.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (40,404,040 samples, 0.07%)</title><rect x="677.7" y="837" width="0.8" height="15.0" fill="rgb(225,111,10)" rx="2" ry="2" />
<text x="680.71" y="847.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="799.0" y="693" width="0.2" height="15.0" fill="rgb(237,82,26)" rx="2" ry="2" />
<text x="801.96" y="703.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="300.4" y="901" width="0.2" height="15.0" fill="rgb(233,103,13)" rx="2" ry="2" />
<text x="303.42" y="911.5" ></text>
</g>
<g >
<title>zend_call_known_function (151,515,150 samples, 0.26%)</title><rect x="301.9" y="949" width="3.1" height="15.0" fill="rgb(239,171,52)" rx="2" ry="2" />
<text x="304.88" y="959.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="872.7" y="885" width="0.2" height="15.0" fill="rgb(227,124,43)" rx="2" ry="2" />
<text x="875.71" y="895.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1090.0" y="597" width="0.2" height="15.0" fill="rgb(230,206,4)" rx="2" ry="2" />
<text x="1093.00" y="607.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="929.8" y="789" width="0.2" height="15.0" fill="rgb(233,84,50)" rx="2" ry="2" />
<text x="932.79" y="799.5" ></text>
</g>
<g >
<title>__virt_addr_valid (10,101,010 samples, 0.02%)</title><rect x="740.0" y="773" width="0.2" height="15.0" fill="rgb(243,64,29)" rx="2" ry="2" />
<text x="743.00" y="783.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="904.0" y="757" width="0.2" height="15.0" fill="rgb(222,151,33)" rx="2" ry="2" />
<text x="906.96" y="767.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="501" width="0.4" height="15.0" fill="rgb(245,147,22)" rx="2" ry="2" />
<text x="1132.58" y="511.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="756.2" y="1093" width="0.3" height="15.0" fill="rgb(254,223,47)" rx="2" ry="2" />
<text x="759.25" y="1103.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (20,202,020 samples, 0.04%)</title><rect x="713.5" y="949" width="0.5" height="15.0" fill="rgb(211,156,45)" rx="2" ry="2" />
<text x="716.54" y="959.5" ></text>
</g>
<g >
<title>zend_jit_leave_top_func_helper (10,101,010 samples, 0.02%)</title><rect x="679.0" y="917" width="0.2" height="15.0" fill="rgb(235,163,52)" rx="2" ry="2" />
<text x="681.96" y="927.5" ></text>
</g>
<g >
<title>[unknown] (54,222,221,680 samples, 94.77%)</title><rect x="25.2" y="1221" width="1118.3" height="15.0" fill="rgb(233,86,39)" rx="2" ry="2" />
<text x="28.21" y="1231.5" >[unknown]</text>
</g>
<g >
<title>__strftime_l (10,101,010 samples, 0.02%)</title><rect x="203.5" y="1173" width="0.3" height="15.0" fill="rgb(252,4,21)" rx="2" ry="2" />
<text x="206.54" y="1183.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="922.7" y="917" width="0.2" height="15.0" fill="rgb(217,105,34)" rx="2" ry="2" />
<text x="925.71" y="927.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="755.8" y="1109" width="0.2" height="15.0" fill="rgb(254,136,53)" rx="2" ry="2" />
<text x="758.83" y="1119.5" ></text>
</g>
<g >
<title>zend_accel_load_script (20,202,020 samples, 0.04%)</title><rect x="684.2" y="933" width="0.4" height="15.0" fill="rgb(206,37,44)" rx="2" ry="2" />
<text x="687.17" y="943.5" ></text>
</g>
<g >
<title>TRACE-208$Fandom\Includes\Database\FandomLoadBalancerFactory::newLoadBalancer$269 (50,505,050 samples, 0.09%)</title><rect x="351.7" y="1141" width="1.0" height="15.0" fill="rgb(205,153,34)" rx="2" ry="2" />
<text x="354.67" y="1151.5" ></text>
</g>
<g >
<title>tcp_setsockopt (10,101,010 samples, 0.02%)</title><rect x="1141.5" y="1109" width="0.2" height="15.0" fill="rgb(238,104,21)" rx="2" ry="2" />
<text x="1144.46" y="1119.5" ></text>
</g>
<g >
<title>zend_try_early_bind (10,101,010 samples, 0.02%)</title><rect x="922.5" y="725" width="0.2" height="15.0" fill="rgb(246,166,7)" rx="2" ry="2" />
<text x="925.50" y="735.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (20,202,020 samples, 0.04%)</title><rect x="496.5" y="1109" width="0.4" height="15.0" fill="rgb(252,142,44)" rx="2" ry="2" />
<text x="499.46" y="1119.5" ></text>
</g>
<g >
<title>__schedule (30,303,030 samples, 0.05%)</title><rect x="935.6" y="773" width="0.6" height="15.0" fill="rgb(243,167,39)" rx="2" ry="2" />
<text x="938.62" y="783.5" ></text>
</g>
<g >
<title>php_array_key_compare (10,101,010 samples, 0.02%)</title><rect x="515.2" y="1013" width="0.2" height="15.0" fill="rgb(228,187,52)" rx="2" ry="2" />
<text x="518.21" y="1023.5" ></text>
</g>
<g >
<title>zif_array_filter (10,101,010 samples, 0.02%)</title><rect x="1070.2" y="1141" width="0.2" height="15.0" fill="rgb(233,171,36)" rx="2" ry="2" />
<text x="1073.21" y="1151.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="805.6" y="677" width="0.2" height="15.0" fill="rgb(221,179,9)" rx="2" ry="2" />
<text x="808.62" y="687.5" ></text>
</g>
<g >
<title>walk_component (30,303,030 samples, 0.05%)</title><rect x="901.5" y="981" width="0.6" height="15.0" fill="rgb(209,169,17)" rx="2" ry="2" />
<text x="904.46" y="991.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="621.9" y="1093" width="0.2" height="15.0" fill="rgb(222,166,53)" rx="2" ry="2" />
<text x="624.88" y="1103.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="744.2" y="837" width="0.2" height="15.0" fill="rgb(232,104,1)" rx="2" ry="2" />
<text x="747.17" y="847.5" ></text>
</g>
<g >
<title>tsrm_realpath (40,404,040 samples, 0.07%)</title><rect x="1107.1" y="1173" width="0.8" height="15.0" fill="rgb(225,189,26)" rx="2" ry="2" />
<text x="1110.08" y="1183.5" ></text>
</g>
<g >
<title>__fdget (10,101,010 samples, 0.02%)</title><rect x="925.2" y="789" width="0.2" height="15.0" fill="rgb(213,43,3)" rx="2" ry="2" />
<text x="928.21" y="799.5" ></text>
</g>
<g >
<title>prepare_creds (20,202,020 samples, 0.04%)</title><rect x="739.6" y="821" width="0.4" height="15.0" fill="rgb(215,75,19)" rx="2" ry="2" />
<text x="742.58" y="831.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_UNUSED_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="886.5" y="1125" width="0.4" height="15.0" fill="rgb(220,227,21)" rx="2" ry="2" />
<text x="889.46" y="1135.5" ></text>
</g>
<g >
<title>ip_output (171,717,170 samples, 0.30%)</title><rect x="1184.6" y="997" width="3.5" height="15.0" fill="rgb(212,21,53)" rx="2" ry="2" />
<text x="1187.58" y="1007.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="981" width="0.2" height="15.0" fill="rgb(226,126,1)" rx="2" ry="2" />
<text x="1127.17" y="991.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="925.8" y="789" width="0.2" height="15.0" fill="rgb(216,34,2)" rx="2" ry="2" />
<text x="928.83" y="799.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="955.4" y="949" width="0.2" height="15.0" fill="rgb(241,37,52)" rx="2" ry="2" />
<text x="958.42" y="959.5" ></text>
</g>
<g >
<title>irq_exit (20,202,020 samples, 0.04%)</title><rect x="641.7" y="1045" width="0.4" height="15.0" fill="rgb(254,116,14)" rx="2" ry="2" />
<text x="644.67" y="1055.5" ></text>
</g>
<g >
<title>populate_match_value.part.0 (20,202,020 samples, 0.04%)</title><rect x="307.3" y="1077" width="0.4" height="15.0" fill="rgb(247,135,48)" rx="2" ry="2" />
<text x="310.29" y="1087.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="805" width="0.2" height="15.0" fill="rgb(228,20,35)" rx="2" ry="2" />
<text x="1086.33" y="815.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="805.4" y="789" width="0.2" height="15.0" fill="rgb(227,205,5)" rx="2" ry="2" />
<text x="808.42" y="799.5" ></text>
</g>
<g >
<title>zend_call_known_function (90,909,090 samples, 0.16%)</title><rect x="500.2" y="1061" width="1.9" height="15.0" fill="rgb(235,77,45)" rx="2" ry="2" />
<text x="503.21" y="1071.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (20,202,020 samples, 0.04%)</title><rect x="1188.3" y="1141" width="0.5" height="15.0" fill="rgb(214,144,41)" rx="2" ry="2" />
<text x="1191.33" y="1151.5" ></text>
</g>
<g >
<title>spl_perform_autoload (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1045" width="0.9" height="15.0" fill="rgb(254,195,53)" rx="2" ry="2" />
<text x="756.33" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="201.9" y="1125" width="0.2" height="15.0" fill="rgb(205,218,8)" rx="2" ry="2" />
<text x="204.88" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="686.7" y="949" width="0.2" height="15.0" fill="rgb(227,130,39)" rx="2" ry="2" />
<text x="689.67" y="959.5" ></text>
</g>
<g >
<title>zval_get_string_func (80,808,080 samples, 0.14%)</title><rect x="479.4" y="1109" width="1.6" height="15.0" fill="rgb(253,194,17)" rx="2" ry="2" />
<text x="482.38" y="1119.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="193.8" y="917" width="0.2" height="15.0" fill="rgb(248,203,18)" rx="2" ry="2" />
<text x="196.75" y="927.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="203.1" y="1189" width="0.2" height="15.0" fill="rgb(242,158,15)" rx="2" ry="2" />
<text x="206.12" y="1199.5" ></text>
</g>
<g >
<title>zif_strtr (20,202,020 samples, 0.04%)</title><rect x="1076.0" y="1141" width="0.5" height="15.0" fill="rgb(209,68,2)" rx="2" ry="2" />
<text x="1079.04" y="1151.5" ></text>
</g>
<g >
<title>ip_rcv (70,707,070 samples, 0.12%)</title><rect x="939.4" y="341" width="1.4" height="15.0" fill="rgb(220,13,9)" rx="2" ry="2" />
<text x="942.38" y="351.5" ></text>
</g>
<g >
<title>php_explode (10,101,010 samples, 0.02%)</title><rect x="1028.3" y="1013" width="0.2" height="15.0" fill="rgb(225,91,17)" rx="2" ry="2" />
<text x="1031.33" y="1023.5" ></text>
</g>
<g >
<title>__nf_nat_alloc_null_binding (10,101,010 samples, 0.02%)</title><rect x="941.9" y="629" width="0.2" height="15.0" fill="rgb(238,225,36)" rx="2" ry="2" />
<text x="944.88" y="639.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (232,323,230 samples, 0.41%)</title><rect x="722.9" y="1045" width="4.8" height="15.0" fill="rgb(242,137,19)" rx="2" ry="2" />
<text x="725.92" y="1055.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="535.0" y="981" width="0.2" height="15.0" fill="rgb(233,212,0)" rx="2" ry="2" />
<text x="538.00" y="991.5" ></text>
</g>
<g >
<title>zend_accel_load_script (60,606,060 samples, 0.11%)</title><rect x="916.7" y="869" width="1.2" height="15.0" fill="rgb(253,199,29)" rx="2" ry="2" />
<text x="919.67" y="879.5" ></text>
</g>
<g >
<title>zend_jit_find_ns_func_helper (10,101,010 samples, 0.02%)</title><rect x="502.1" y="1125" width="0.2" height="15.0" fill="rgb(241,109,36)" rx="2" ry="2" />
<text x="505.08" y="1135.5" ></text>
</g>
<g >
<title>write (121,212,120 samples, 0.21%)</title><rect x="213.1" y="1093" width="2.5" height="15.0" fill="rgb(219,223,6)" rx="2" ry="2" />
<text x="216.12" y="1103.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="905.0" y="805" width="0.2" height="15.0" fill="rgb(230,86,47)" rx="2" ry="2" />
<text x="908.00" y="815.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="919.2" y="1013" width="0.2" height="15.0" fill="rgb(217,227,20)" rx="2" ry="2" />
<text x="922.17" y="1023.5" ></text>
</g>
<g >
<title>php_url_parse_ex2 (20,202,020 samples, 0.04%)</title><rect x="1055.0" y="1109" width="0.4" height="15.0" fill="rgb(243,213,5)" rx="2" ry="2" />
<text x="1058.00" y="1119.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="308.5" y="1093" width="0.3" height="15.0" fill="rgb(233,85,34)" rx="2" ry="2" />
<text x="311.54" y="1103.5" ></text>
</g>
<g >
<title>receive_mergeable (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="853" width="0.2" height="15.0" fill="rgb(233,219,22)" rx="2" ry="2" />
<text x="1015.92" y="863.5" ></text>
</g>
<g >
<title>zend_jit_fetch_dim_str_offset_r_helper (20,202,020 samples, 0.04%)</title><rect x="868.1" y="917" width="0.4" height="15.0" fill="rgb(207,51,14)" rx="2" ry="2" />
<text x="871.12" y="927.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="695.0" y="1093" width="0.2" height="15.0" fill="rgb(207,229,1)" rx="2" ry="2" />
<text x="698.00" y="1103.5" ></text>
</g>
<g >
<title>zend_llist_del_element (10,101,010 samples, 0.02%)</title><rect x="704.0" y="1077" width="0.2" height="15.0" fill="rgb(241,133,5)" rx="2" ry="2" />
<text x="706.96" y="1087.5" ></text>
</g>
<g >
<title>zend_parse_arg (10,101,010 samples, 0.02%)</title><rect x="749.2" y="981" width="0.2" height="15.0" fill="rgb(231,38,2)" rx="2" ry="2" />
<text x="752.17" y="991.5" ></text>
</g>
<g >
<title>malloc (30,303,030 samples, 0.05%)</title><rect x="1173.3" y="1221" width="0.7" height="15.0" fill="rgb(217,216,10)" rx="2" ry="2" />
<text x="1176.33" y="1231.5" ></text>
</g>
<g >
<title>_php_stream_write (20,202,020 samples, 0.04%)</title><rect x="1051.7" y="1029" width="0.4" height="15.0" fill="rgb(250,179,29)" rx="2" ry="2" />
<text x="1054.67" y="1039.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (50,505,050 samples, 0.09%)</title><rect x="767.1" y="1045" width="1.0" height="15.0" fill="rgb(239,22,6)" rx="2" ry="2" />
<text x="770.08" y="1055.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="335.8" y="1125" width="0.2" height="15.0" fill="rgb(249,116,22)" rx="2" ry="2" />
<text x="338.83" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="304.2" y="597" width="0.2" height="15.0" fill="rgb(212,52,20)" rx="2" ry="2" />
<text x="307.17" y="607.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="925.6" y="725" width="0.2" height="15.0" fill="rgb(224,210,42)" rx="2" ry="2" />
<text x="928.62" y="735.5" ></text>
</g>
<g >
<title>__fdget (20,202,020 samples, 0.04%)</title><rect x="1168.8" y="1125" width="0.4" height="15.0" fill="rgb(242,136,39)" rx="2" ry="2" />
<text x="1171.75" y="1135.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="524.4" y="725" width="0.2" height="15.0" fill="rgb(207,208,36)" rx="2" ry="2" />
<text x="527.38" y="735.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="641.7" y="773" width="0.2" height="15.0" fill="rgb(248,50,42)" rx="2" ry="2" />
<text x="644.67" y="783.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="869" width="0.2" height="15.0" fill="rgb(233,187,9)" rx="2" ry="2" />
<text x="1170.08" y="879.5" ></text>
</g>
<g >
<title>zend_call_known_function (515,151,510 samples, 0.90%)</title><rect x="796.7" y="949" width="10.6" height="15.0" fill="rgb(253,168,44)" rx="2" ry="2" />
<text x="799.67" y="959.5" ></text>
</g>
<g >
<title>lockref_put_return (10,101,010 samples, 0.02%)</title><rect x="398.3" y="933" width="0.2" height="15.0" fill="rgb(211,92,24)" rx="2" ry="2" />
<text x="401.33" y="943.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="899.4" y="981" width="0.2" height="15.0" fill="rgb(213,45,36)" rx="2" ry="2" />
<text x="902.38" y="991.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="821" width="0.2" height="15.0" fill="rgb(224,147,6)" rx="2" ry="2" />
<text x="1086.33" y="831.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="539.4" y="645" width="0.2" height="15.0" fill="rgb(217,131,16)" rx="2" ry="2" />
<text x="542.38" y="655.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="427.1" y="933" width="0.2" height="15.0" fill="rgb(250,174,54)" rx="2" ry="2" />
<text x="430.08" y="943.5" ></text>
</g>
<g >
<title>TRACE-235$Wikimedia\Rdbms\LoadBalancer::getWriterIndex$1528 (30,303,030 samples, 0.05%)</title><rect x="450.6" y="1141" width="0.6" height="15.0" fill="rgb(241,211,5)" rx="2" ry="2" />
<text x="453.62" y="1151.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="217.3" y="981" width="0.2" height="15.0" fill="rgb(226,152,42)" rx="2" ry="2" />
<text x="220.29" y="991.5" ></text>
</g>
<g >
<title>TRACE-304$Wikimedia\Rdbms\{closure}$369 (20,202,020 samples, 0.04%)</title><rect x="485.0" y="1141" width="0.4" height="15.0" fill="rgb(217,85,22)" rx="2" ry="2" />
<text x="488.00" y="1151.5" ></text>
</g>
<g >
<title>__ip_finish_output (161,616,160 samples, 0.28%)</title><rect x="1184.6" y="965" width="3.3" height="15.0" fill="rgb(206,24,18)" rx="2" ry="2" />
<text x="1187.58" y="975.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (40,404,040 samples, 0.07%)</title><rect x="1178.1" y="1093" width="0.9" height="15.0" fill="rgb(225,15,9)" rx="2" ry="2" />
<text x="1181.12" y="1103.5" ></text>
</g>
<g >
<title>__ksize (10,101,010 samples, 0.02%)</title><rect x="940.6" y="245" width="0.2" height="15.0" fill="rgb(205,205,25)" rx="2" ry="2" />
<text x="943.62" y="255.5" ></text>
</g>
<g >
<title>zend_jit_leave_top_func_helper (10,101,010 samples, 0.02%)</title><rect x="268.5" y="997" width="0.3" height="15.0" fill="rgb(244,199,33)" rx="2" ry="2" />
<text x="271.54" y="1007.5" ></text>
</g>
<g >
<title>__sys_sendto (1,141,414,130 samples, 2.00%)</title><rect x="1145.6" y="1157" width="23.6" height="15.0" fill="rgb(215,57,28)" rx="2" ry="2" />
<text x="1148.62" y="1167.5" >_..</text>
</g>
<g >
<title>_php_stream_read (40,404,040 samples, 0.07%)</title><rect x="929.6" y="965" width="0.8" height="15.0" fill="rgb(245,214,17)" rx="2" ry="2" />
<text x="932.58" y="975.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="754.0" y="1013" width="0.2" height="15.0" fill="rgb(212,91,1)" rx="2" ry="2" />
<text x="756.96" y="1023.5" ></text>
</g>
<g >
<title>ZEND_INSTANCEOF_SPEC_CV_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="754.2" y="1125" width="0.4" height="15.0" fill="rgb(240,190,10)" rx="2" ry="2" />
<text x="757.17" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="511.5" y="1045" width="0.4" height="15.0" fill="rgb(242,175,21)" rx="2" ry="2" />
<text x="514.46" y="1055.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1061" width="0.2" height="15.0" fill="rgb(227,70,28)" rx="2" ry="2" />
<text x="1083.83" y="1071.5" ></text>
</g>
<g >
<title>zend_ini_get_value (20,202,020 samples, 0.04%)</title><rect x="309.8" y="1109" width="0.4" height="15.0" fill="rgb(241,180,21)" rx="2" ry="2" />
<text x="312.79" y="1119.5" ></text>
</g>
<g >
<title>_php_stream_fill_read_buffer (101,010,100 samples, 0.18%)</title><rect x="1052.5" y="997" width="2.1" height="15.0" fill="rgb(226,106,28)" rx="2" ry="2" />
<text x="1055.50" y="1007.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (1,141,414,130 samples, 2.00%)</title><rect x="1145.6" y="1173" width="23.6" height="15.0" fill="rgb(230,200,53)" rx="2" ry="2" />
<text x="1148.62" y="1183.5" >_..</text>
</g>
<g >
<title>php_output_header.part.0 (101,010,100 samples, 0.18%)</title><rect x="1030.8" y="1045" width="2.1" height="15.0" fill="rgb(246,182,32)" rx="2" ry="2" />
<text x="1033.83" y="1055.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="740.2" y="901" width="0.4" height="15.0" fill="rgb(243,71,2)" rx="2" ry="2" />
<text x="743.21" y="911.5" ></text>
</g>
<g >
<title>sock_read_iter (20,202,020 samples, 0.04%)</title><rect x="207.3" y="1029" width="0.4" height="15.0" fill="rgb(252,58,5)" rx="2" ry="2" />
<text x="210.29" y="1039.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_CONST_HANDLER (131,313,130 samples, 0.23%)</title><rect x="619.6" y="1125" width="2.7" height="15.0" fill="rgb(209,92,41)" rx="2" ry="2" />
<text x="622.58" y="1135.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="442.3" y="997" width="0.2" height="15.0" fill="rgb(212,119,7)" rx="2" ry="2" />
<text x="445.29" y="1007.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (30,303,030 samples, 0.05%)</title><rect x="1183.3" y="1061" width="0.7" height="15.0" fill="rgb(247,140,10)" rx="2" ry="2" />
<text x="1186.33" y="1071.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="731.5" y="1013" width="0.2" height="15.0" fill="rgb(252,189,3)" rx="2" ry="2" />
<text x="734.46" y="1023.5" ></text>
</g>
<g >
<title>compile_filename (40,404,040 samples, 0.07%)</title><rect x="713.3" y="981" width="0.9" height="15.0" fill="rgb(229,188,12)" rx="2" ry="2" />
<text x="716.33" y="991.5" ></text>
</g>
<g >
<title>eth_type_trans (10,101,010 samples, 0.02%)</title><rect x="1165.2" y="821" width="0.2" height="15.0" fill="rgb(249,202,17)" rx="2" ry="2" />
<text x="1168.21" y="831.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="773" width="3.3" height="15.0" fill="rgb(249,58,47)" rx="2" ry="2" />
<text x="1130.50" y="783.5" ></text>
</g>
<g >
<title>ZEND_SEND_UNPACK_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="461.9" y="1125" width="0.2" height="15.0" fill="rgb(236,219,27)" rx="2" ry="2" />
<text x="464.88" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="899.4" y="949" width="0.2" height="15.0" fill="rgb(217,214,22)" rx="2" ry="2" />
<text x="902.38" y="959.5" ></text>
</g>
<g >
<title>php_array_merge_recursive (20,202,020 samples, 0.04%)</title><rect x="520.2" y="1109" width="0.4" height="15.0" fill="rgb(214,210,5)" rx="2" ry="2" />
<text x="523.21" y="1119.5" ></text>
</g>
<g >
<title>nf_nat_setup_info (20,202,020 samples, 0.04%)</title><rect x="940.2" y="101" width="0.4" height="15.0" fill="rgb(213,168,23)" rx="2" ry="2" />
<text x="943.21" y="111.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1077" width="0.3" height="15.0" fill="rgb(244,212,7)" rx="2" ry="2" />
<text x="489.25" y="1087.5" ></text>
</g>
<g >
<title>__pthread_mutex_init (10,101,010 samples, 0.02%)</title><rect x="1103.3" y="1157" width="0.2" height="15.0" fill="rgb(229,26,19)" rx="2" ry="2" />
<text x="1106.33" y="1167.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="741" width="0.2" height="15.0" fill="rgb(238,89,21)" rx="2" ry="2" />
<text x="1085.08" y="751.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="24.0" y="741" width="0.2" height="15.0" fill="rgb(212,189,6)" rx="2" ry="2" />
<text x="26.96" y="751.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="524.4" y="693" width="0.2" height="15.0" fill="rgb(248,129,29)" rx="2" ry="2" />
<text x="527.38" y="703.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1077" width="0.2" height="15.0" fill="rgb(239,191,49)" rx="2" ry="2" />
<text x="1118.21" y="1087.5" ></text>
</g>
<g >
<title>php_openssl_sockop_io (10,101,010 samples, 0.02%)</title><rect x="927.5" y="885" width="0.2" height="15.0" fill="rgb(224,49,24)" rx="2" ry="2" />
<text x="930.50" y="895.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1093" width="0.2" height="15.0" fill="rgb(250,159,38)" rx="2" ry="2" />
<text x="893.00" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv_core.isra.20 (10,101,010 samples, 0.02%)</title><rect x="1184.8" y="613" width="0.2" height="15.0" fill="rgb(211,84,47)" rx="2" ry="2" />
<text x="1187.79" y="623.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1045" width="0.2" height="15.0" fill="rgb(223,116,36)" rx="2" ry="2" />
<text x="27.17" y="1055.5" ></text>
</g>
<g >
<title>do_page_fault (10,101,010 samples, 0.02%)</title><rect x="183.5" y="1013" width="0.3" height="15.0" fill="rgb(219,132,4)" rx="2" ry="2" />
<text x="186.54" y="1023.5" ></text>
</g>
<g >
<title>schedule (50,505,050 samples, 0.09%)</title><rect x="961.7" y="1077" width="1.0" height="15.0" fill="rgb(235,43,27)" rx="2" ry="2" />
<text x="964.67" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1125" width="0.2" height="15.0" fill="rgb(229,58,44)" rx="2" ry="2" />
<text x="221.75" y="1135.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1131.5" y="997" width="0.2" height="15.0" fill="rgb(234,125,12)" rx="2" ry="2" />
<text x="1134.46" y="1007.5" ></text>
</g>
<g >
<title>php_date_initialize (60,606,060 samples, 0.11%)</title><rect x="490.2" y="1109" width="1.3" height="15.0" fill="rgb(213,190,13)" rx="2" ry="2" />
<text x="493.21" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="305.6" y="1093" width="0.2" height="15.0" fill="rgb(207,97,50)" rx="2" ry="2" />
<text x="308.62" y="1103.5" ></text>
</g>
<g >
<title>__fdget (10,101,010 samples, 0.02%)</title><rect x="208.8" y="1061" width="0.2" height="15.0" fill="rgb(207,46,12)" rx="2" ry="2" />
<text x="211.75" y="1071.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="934.4" y="869" width="0.2" height="15.0" fill="rgb(221,99,45)" rx="2" ry="2" />
<text x="937.38" y="879.5" ></text>
</g>
<g >
<title>zend_jit_find_ns_func_helper (10,101,010 samples, 0.02%)</title><rect x="477.1" y="1125" width="0.2" height="15.0" fill="rgb(248,128,18)" rx="2" ry="2" />
<text x="480.08" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1013" width="0.2" height="15.0" fill="rgb(214,43,25)" rx="2" ry="2" />
<text x="549.46" y="1023.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="881.2" y="693" width="0.3" height="15.0" fill="rgb(217,145,50)" rx="2" ry="2" />
<text x="884.25" y="703.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (10,101,010 samples, 0.02%)</title><rect x="1186.5" y="453" width="0.2" height="15.0" fill="rgb(221,188,35)" rx="2" ry="2" />
<text x="1189.46" y="463.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="965" width="0.2" height="15.0" fill="rgb(237,117,4)" rx="2" ry="2" />
<text x="1099.04" y="975.5" ></text>
</g>
<g >
<title>__fget_light (10,101,010 samples, 0.02%)</title><rect x="925.2" y="773" width="0.2" height="15.0" fill="rgb(218,100,9)" rx="2" ry="2" />
<text x="928.21" y="783.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="378.5" y="789" width="0.3" height="15.0" fill="rgb(240,163,13)" rx="2" ry="2" />
<text x="381.54" y="799.5" ></text>
</g>
<g >
<title>connect (404,040,400 samples, 0.71%)</title><rect x="1124.0" y="1205" width="8.3" height="15.0" fill="rgb(230,109,32)" rx="2" ry="2" />
<text x="1126.96" y="1215.5" ></text>
</g>
<g >
<title>ksys_read (20,202,020 samples, 0.04%)</title><rect x="946.5" y="981" width="0.4" height="15.0" fill="rgb(212,162,4)" rx="2" ry="2" />
<text x="949.46" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (40,404,040 samples, 0.07%)</title><rect x="743.5" y="885" width="0.9" height="15.0" fill="rgb(248,78,19)" rx="2" ry="2" />
<text x="746.54" y="895.5" ></text>
</g>
<g >
<title>zif_ob_end_clean (10,101,010 samples, 0.02%)</title><rect x="1054.8" y="1125" width="0.2" height="15.0" fill="rgb(228,215,22)" rx="2" ry="2" />
<text x="1057.79" y="1135.5" ></text>
</g>
<g >
<title>zif_function_exists (30,303,030 samples, 0.05%)</title><rect x="1034.0" y="1125" width="0.6" height="15.0" fill="rgb(231,46,17)" rx="2" ry="2" />
<text x="1036.96" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (101,010,100 samples, 0.18%)</title><rect x="729.4" y="1029" width="2.1" height="15.0" fill="rgb(235,109,49)" rx="2" ry="2" />
<text x="732.38" y="1039.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1169.2" y="1141" width="0.2" height="15.0" fill="rgb(234,45,48)" rx="2" ry="2" />
<text x="1172.17" y="1151.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1133.5" y="1141" width="0.3" height="15.0" fill="rgb(242,116,20)" rx="2" ry="2" />
<text x="1136.54" y="1151.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (20,202,020 samples, 0.04%)</title><rect x="304.4" y="613" width="0.4" height="15.0" fill="rgb(214,145,9)" rx="2" ry="2" />
<text x="307.38" y="623.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="700.0" y="933" width="0.2" height="15.0" fill="rgb(251,75,51)" rx="2" ry="2" />
<text x="703.00" y="943.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="691.2" y="1109" width="0.5" height="15.0" fill="rgb(217,153,33)" rx="2" ry="2" />
<text x="694.25" y="1119.5" ></text>
</g>
<g >
<title>copy_user_generic_string (10,101,010 samples, 0.02%)</title><rect x="214.6" y="933" width="0.2" height="15.0" fill="rgb(229,49,54)" rx="2" ry="2" />
<text x="217.58" y="943.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="349.2" y="1125" width="0.2" height="15.0" fill="rgb(244,30,16)" rx="2" ry="2" />
<text x="352.17" y="1135.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="335.6" y="1125" width="0.2" height="15.0" fill="rgb(223,4,31)" rx="2" ry="2" />
<text x="338.62" y="1135.5" ></text>
</g>
<g >
<title>ip_route_input_noref (10,101,010 samples, 0.02%)</title><rect x="1026.0" y="533" width="0.2" height="15.0" fill="rgb(208,91,16)" rx="2" ry="2" />
<text x="1029.04" y="543.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_SPEC_CV_VAR_RETVAL_UNUSED_HANDLER (50,505,050 samples, 0.09%)</title><rect x="645.0" y="1125" width="1.0" height="15.0" fill="rgb(210,17,36)" rx="2" ry="2" />
<text x="648.00" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1077.7" y="1077" width="0.2" height="15.0" fill="rgb(224,137,44)" rx="2" ry="2" />
<text x="1080.71" y="1087.5" ></text>
</g>
<g >
<title>__sys_shutdown (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="1045" width="0.9" height="15.0" fill="rgb(236,118,1)" rx="2" ry="2" />
<text x="1035.92" y="1055.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (101,010,100 samples, 0.18%)</title><rect x="939.4" y="645" width="2.1" height="15.0" fill="rgb(211,150,19)" rx="2" ry="2" />
<text x="942.38" y="655.5" ></text>
</g>
<g >
<title>get_cached_acl (10,101,010 samples, 0.02%)</title><rect x="1007.9" y="805" width="0.2" height="15.0" fill="rgb(209,49,50)" rx="2" ry="2" />
<text x="1010.92" y="815.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="850.6" y="501" width="0.2" height="15.0" fill="rgb(221,217,50)" rx="2" ry="2" />
<text x="853.62" y="511.5" ></text>
</g>
<g >
<title>zend_quick_get_constant (10,101,010 samples, 0.02%)</title><rect x="1069.8" y="1141" width="0.2" height="15.0" fill="rgb(241,55,18)" rx="2" ry="2" />
<text x="1072.79" y="1151.5" ></text>
</g>
<g >
<title>nf_confirm (10,101,010 samples, 0.02%)</title><rect x="941.7" y="661" width="0.2" height="15.0" fill="rgb(219,67,39)" rx="2" ry="2" />
<text x="944.67" y="671.5" ></text>
</g>
<g >
<title>__x64_sys_read (50,505,050 samples, 0.09%)</title><rect x="217.3" y="1077" width="1.0" height="15.0" fill="rgb(228,30,30)" rx="2" ry="2" />
<text x="220.29" y="1087.5" ></text>
</g>
<g >
<title>TRACE-248$Wikimedia\Rdbms\LoadBalancer::forEachOpenPrimaryConnection$2339 (20,202,020 samples, 0.04%)</title><rect x="462.9" y="1141" width="0.4" height="15.0" fill="rgb(207,73,12)" rx="2" ry="2" />
<text x="465.92" y="1151.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="10.0" y="1205" width="0.2" height="15.0" fill="rgb(214,136,44)" rx="2" ry="2" />
<text x="13.00" y="1215.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (20,202,020 samples, 0.04%)</title><rect x="1002.9" y="757" width="0.4" height="15.0" fill="rgb(215,95,36)" rx="2" ry="2" />
<text x="1005.92" y="767.5" ></text>
</g>
<g >
<title>TRACE-204$MediaWiki\MediaWikiServices::getMainConfig$1132 (10,101,010 samples, 0.02%)</title><rect x="345.2" y="1141" width="0.2" height="15.0" fill="rgb(213,38,1)" rx="2" ry="2" />
<text x="348.21" y="1151.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="427.1" y="677" width="0.2" height="15.0" fill="rgb(240,72,4)" rx="2" ry="2" />
<text x="430.08" y="687.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="661" width="0.2" height="15.0" fill="rgb(209,34,16)" rx="2" ry="2" />
<text x="1091.33" y="671.5" ></text>
</g>
<g >
<title>zend_closure_new (10,101,010 samples, 0.02%)</title><rect x="502.7" y="1093" width="0.2" height="15.0" fill="rgb(219,138,12)" rx="2" ry="2" />
<text x="505.71" y="1103.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="486.5" y="1125" width="0.6" height="15.0" fill="rgb(236,37,24)" rx="2" ry="2" />
<text x="489.46" y="1135.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (20,202,020 samples, 0.04%)</title><rect x="628.5" y="1077" width="0.5" height="15.0" fill="rgb(223,188,39)" rx="2" ry="2" />
<text x="631.54" y="1087.5" ></text>
</g>
<g >
<title>[libmemcached.so.11.0.0] (30,303,030 samples, 0.05%)</title><rect x="22.9" y="1205" width="0.6" height="15.0" fill="rgb(226,84,25)" rx="2" ry="2" />
<text x="25.92" y="1215.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (90,909,090 samples, 0.16%)</title><rect x="1115.8" y="1125" width="1.9" height="15.0" fill="rgb(226,200,11)" rx="2" ry="2" />
<text x="1118.83" y="1135.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="480.8" y="949" width="0.2" height="15.0" fill="rgb(229,155,31)" rx="2" ry="2" />
<text x="483.83" y="959.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1157" width="0.2" height="15.0" fill="rgb(208,100,3)" rx="2" ry="2" />
<text x="205.50" y="1167.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="309.6" y="1109" width="0.2" height="15.0" fill="rgb(232,154,16)" rx="2" ry="2" />
<text x="312.58" y="1119.5" ></text>
</g>
<g >
<title>ovl_get_acl (20,202,020 samples, 0.04%)</title><rect x="1007.7" y="837" width="0.4" height="15.0" fill="rgb(246,22,8)" rx="2" ry="2" />
<text x="1010.71" y="847.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="885" width="0.2" height="15.0" fill="rgb(212,220,15)" rx="2" ry="2" />
<text x="1117.17" y="895.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="1015.0" y="1045" width="0.4" height="15.0" fill="rgb(217,28,15)" rx="2" ry="2" />
<text x="1018.00" y="1055.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="389" width="0.3" height="15.0" fill="rgb(237,150,13)" rx="2" ry="2" />
<text x="1134.25" y="399.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (60,606,060 samples, 0.11%)</title><rect x="902.5" y="1061" width="1.3" height="15.0" fill="rgb(210,30,29)" rx="2" ry="2" />
<text x="905.50" y="1071.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="1150.8" y="917" width="0.2" height="15.0" fill="rgb(224,162,10)" rx="2" ry="2" />
<text x="1153.83" y="927.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1077" width="0.2" height="15.0" fill="rgb(248,89,39)" rx="2" ry="2" />
<text x="560.29" y="1087.5" ></text>
</g>
<g >
<title>zend_std_write_property (20,202,020 samples, 0.04%)</title><rect x="287.5" y="1093" width="0.4" height="15.0" fill="rgb(217,114,46)" rx="2" ry="2" />
<text x="290.50" y="1103.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (10,101,010 samples, 0.02%)</title><rect x="684.6" y="885" width="0.2" height="15.0" fill="rgb(220,191,2)" rx="2" ry="2" />
<text x="687.58" y="895.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_dtor_priv (20,202,020 samples, 0.04%)</title><rect x="1090.8" y="981" width="0.4" height="15.0" fill="rgb(209,35,49)" rx="2" ry="2" />
<text x="1093.83" y="991.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="1031.7" y="965" width="0.2" height="15.0" fill="rgb(240,16,44)" rx="2" ry="2" />
<text x="1034.67" y="975.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1013" width="0.2" height="15.0" fill="rgb(239,219,51)" rx="2" ry="2" />
<text x="621.96" y="1023.5" ></text>
</g>
<g >
<title>put_cred_rcu (20,202,020 samples, 0.04%)</title><rect x="774.0" y="933" width="0.4" height="15.0" fill="rgb(224,64,36)" rx="2" ry="2" />
<text x="776.96" y="943.5" ></text>
</g>
<g >
<title>__do_page_fault (10,101,010 samples, 0.02%)</title><rect x="190.6" y="1013" width="0.2" height="15.0" fill="rgb(234,202,53)" rx="2" ry="2" />
<text x="193.62" y="1023.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="351.5" y="1109" width="0.2" height="15.0" fill="rgb(209,191,25)" rx="2" ry="2" />
<text x="354.46" y="1119.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (30,303,030 samples, 0.05%)</title><rect x="1006.7" y="949" width="0.6" height="15.0" fill="rgb(221,134,22)" rx="2" ry="2" />
<text x="1009.67" y="959.5" ></text>
</g>
<g >
<title>_mysqlnd_sprintf (20,202,020 samples, 0.04%)</title><rect x="944.4" y="1045" width="0.4" height="15.0" fill="rgb(247,38,52)" rx="2" ry="2" />
<text x="947.38" y="1055.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="307.9" y="1125" width="0.2" height="15.0" fill="rgb(246,62,26)" rx="2" ry="2" />
<text x="310.92" y="1135.5" ></text>
</g>
<g >
<title>TRACE-259$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$124 (10,101,010 samples, 0.02%)</title><rect x="466.7" y="1141" width="0.2" height="15.0" fill="rgb(249,91,19)" rx="2" ry="2" />
<text x="469.67" y="1151.5" ></text>
</g>
<g >
<title>nf_nat_setup_info (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="389" width="0.4" height="15.0" fill="rgb(233,55,25)" rx="2" ry="2" />
<text x="1132.58" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="948.8" y="1029" width="0.4" height="15.0" fill="rgb(205,136,25)" rx="2" ry="2" />
<text x="951.75" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_del (10,101,010 samples, 0.02%)</title><rect x="869.2" y="949" width="0.2" height="15.0" fill="rgb(245,30,42)" rx="2" ry="2" />
<text x="872.17" y="959.5" ></text>
</g>
<g >
<title>inet_stream_connect (252,525,250 samples, 0.44%)</title><rect x="937.5" y="837" width="5.2" height="15.0" fill="rgb(211,79,51)" rx="2" ry="2" />
<text x="940.50" y="847.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="517.7" y="1045" width="0.2" height="15.0" fill="rgb(215,56,20)" rx="2" ry="2" />
<text x="520.71" y="1055.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="339.0" y="1045" width="0.2" height="15.0" fill="rgb(228,170,37)" rx="2" ry="2" />
<text x="341.96" y="1055.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="887.7" y="1093" width="0.2" height="15.0" fill="rgb(231,91,16)" rx="2" ry="2" />
<text x="890.71" y="1103.5" ></text>
</g>
<g >
<title>persistent_compile_file (40,404,040 samples, 0.07%)</title><rect x="702.3" y="1093" width="0.8" height="15.0" fill="rgb(249,80,52)" rx="2" ry="2" />
<text x="705.29" y="1103.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="309.2" y="1061" width="0.2" height="15.0" fill="rgb(218,182,46)" rx="2" ry="2" />
<text x="312.17" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="744.0" y="805" width="0.2" height="15.0" fill="rgb(250,191,37)" rx="2" ry="2" />
<text x="746.96" y="815.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1132.1" y="1125" width="0.2" height="15.0" fill="rgb(224,73,34)" rx="2" ry="2" />
<text x="1135.08" y="1135.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (30,303,030 samples, 0.05%)</title><rect x="732.9" y="981" width="0.6" height="15.0" fill="rgb(250,64,41)" rx="2" ry="2" />
<text x="735.92" y="991.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="718.3" y="981" width="0.2" height="15.0" fill="rgb(209,81,54)" rx="2" ry="2" />
<text x="721.33" y="991.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="1033.3" y="789" width="0.2" height="15.0" fill="rgb(237,104,2)" rx="2" ry="2" />
<text x="1036.33" y="799.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (60,606,060 samples, 0.11%)</title><rect x="874.6" y="965" width="1.2" height="15.0" fill="rgb(220,17,54)" rx="2" ry="2" />
<text x="877.58" y="975.5" ></text>
</g>
<g >
<title>zend_parse_va_args (20,202,020 samples, 0.04%)</title><rect x="1142.7" y="1173" width="0.4" height="15.0" fill="rgb(224,175,29)" rx="2" ry="2" />
<text x="1145.71" y="1183.5" ></text>
</g>
<g >
<title>zend_replace_error_handling (10,101,010 samples, 0.02%)</title><rect x="519.6" y="1125" width="0.2" height="15.0" fill="rgb(250,178,23)" rx="2" ry="2" />
<text x="522.58" y="1135.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1013" width="0.2" height="15.0" fill="rgb(212,62,2)" rx="2" ry="2" />
<text x="693.00" y="1023.5" ></text>
</g>
<g >
<title>zend_call_known_function (696,969,690 samples, 1.22%)</title><rect x="904.8" y="1077" width="14.4" height="15.0" fill="rgb(221,79,34)" rx="2" ry="2" />
<text x="907.79" y="1087.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="692.1" y="1077" width="0.2" height="15.0" fill="rgb(250,15,28)" rx="2" ry="2" />
<text x="695.08" y="1087.5" ></text>
</g>
<g >
<title>ZEND_CAST_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="646.9" y="1125" width="0.2" height="15.0" fill="rgb(239,216,12)" rx="2" ry="2" />
<text x="649.88" y="1135.5" ></text>
</g>
<g >
<title>sigqueue_free (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1125" width="0.2" height="15.0" fill="rgb(221,188,18)" rx="2" ry="2" />
<text x="1175.50" y="1135.5" ></text>
</g>
<g >
<title>netif_receive_skb (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="357" width="0.4" height="15.0" fill="rgb(244,218,4)" rx="2" ry="2" />
<text x="1092.58" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (70,707,070 samples, 0.12%)</title><rect x="1140.8" y="1173" width="1.5" height="15.0" fill="rgb(227,35,5)" rx="2" ry="2" />
<text x="1143.83" y="1183.5" ></text>
</g>
<g >
<title>php_sockop_read (10,101,010 samples, 0.02%)</title><rect x="1054.4" y="981" width="0.2" height="15.0" fill="rgb(219,9,27)" rx="2" ry="2" />
<text x="1057.38" y="991.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (101,010,100 samples, 0.18%)</title><rect x="1002.1" y="1061" width="2.1" height="15.0" fill="rgb(239,90,32)" rx="2" ry="2" />
<text x="1005.08" y="1071.5" ></text>
</g>
<g >
<title>ZEND_INIT_ARRAY_SPEC_TMP_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="711.2" y="1125" width="0.5" height="15.0" fill="rgb(238,20,18)" rx="2" ry="2" />
<text x="714.25" y="1135.5" ></text>
</g>
<g >
<title>do_bind_class (10,101,010 samples, 0.02%)</title><rect x="732.9" y="901" width="0.2" height="15.0" fill="rgb(219,122,9)" rx="2" ry="2" />
<text x="735.92" y="911.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1033.3" y="821" width="0.2" height="15.0" fill="rgb(253,193,38)" rx="2" ry="2" />
<text x="1036.33" y="831.5" ></text>
</g>
<g >
<title>zend_hash_add_new (30,303,030 samples, 0.05%)</title><rect x="698.1" y="1093" width="0.7" height="15.0" fill="rgb(221,75,49)" rx="2" ry="2" />
<text x="701.12" y="1103.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1187.5" y="757" width="0.2" height="15.0" fill="rgb(239,63,46)" rx="2" ry="2" />
<text x="1190.50" y="767.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (20,202,020 samples, 0.04%)</title><rect x="1022.5" y="1109" width="0.4" height="15.0" fill="rgb(205,45,11)" rx="2" ry="2" />
<text x="1025.50" y="1119.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="675.4" y="1045" width="0.2" height="15.0" fill="rgb(249,225,25)" rx="2" ry="2" />
<text x="678.42" y="1055.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="645" width="0.2" height="15.0" fill="rgb(254,113,51)" rx="2" ry="2" />
<text x="1170.08" y="655.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="941.7" y="693" width="0.4" height="15.0" fill="rgb(248,132,3)" rx="2" ry="2" />
<text x="944.67" y="703.5" ></text>
</g>
<g >
<title>zend_call_known_function (373,737,370 samples, 0.65%)</title><rect x="675.2" y="1061" width="7.7" height="15.0" fill="rgb(243,163,14)" rx="2" ry="2" />
<text x="678.21" y="1071.5" ></text>
</g>
<g >
<title>security_inode_permission (10,101,010 samples, 0.02%)</title><rect x="911.0" y="885" width="0.2" height="15.0" fill="rgb(253,70,52)" rx="2" ry="2" />
<text x="914.04" y="895.5" ></text>
</g>
<g >
<title>zend_call_known_function (101,010,100 samples, 0.18%)</title><rect x="920.8" y="1077" width="2.1" height="15.0" fill="rgb(230,100,26)" rx="2" ry="2" />
<text x="923.83" y="1087.5" ></text>
</g>
<g >
<title>zend_attach_symbol_table (10,101,010 samples, 0.02%)</title><rect x="273.8" y="1109" width="0.2" height="15.0" fill="rgb(213,131,5)" rx="2" ry="2" />
<text x="276.75" y="1119.5" ></text>
</g>
<g >
<title>_php_stream_free (131,313,130 samples, 0.23%)</title><rect x="1088.1" y="981" width="2.7" height="15.0" fill="rgb(215,95,10)" rx="2" ry="2" />
<text x="1091.12" y="991.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="475.2" y="1077" width="0.2" height="15.0" fill="rgb(238,170,11)" rx="2" ry="2" />
<text x="478.21" y="1087.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="378.5" y="709" width="0.3" height="15.0" fill="rgb(232,52,35)" rx="2" ry="2" />
<text x="381.54" y="719.5" ></text>
</g>
<g >
<title>TRACE-207$MediumSpecificBagOStuff::makeGlobalKey$966 (30,303,030 samples, 0.05%)</title><rect x="351.0" y="1141" width="0.7" height="15.0" fill="rgb(236,193,2)" rx="2" ry="2" />
<text x="354.04" y="1151.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="1045" width="0.3" height="15.0" fill="rgb(212,37,10)" rx="2" ry="2" />
<text x="1044.25" y="1055.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1115.0" y="1045" width="0.2" height="15.0" fill="rgb(224,185,17)" rx="2" ry="2" />
<text x="1118.00" y="1055.5" ></text>
</g>
<g >
<title>async_page_fault (10,101,010 samples, 0.02%)</title><rect x="190.6" y="1061" width="0.2" height="15.0" fill="rgb(218,57,41)" rx="2" ry="2" />
<text x="193.62" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="196.2" y="1077" width="0.3" height="15.0" fill="rgb(210,104,19)" rx="2" ry="2" />
<text x="199.25" y="1087.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="107.1" y="1045" width="0.4" height="15.0" fill="rgb(237,118,33)" rx="2" ry="2" />
<text x="110.08" y="1055.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="733.1" y="869" width="0.4" height="15.0" fill="rgb(211,36,36)" rx="2" ry="2" />
<text x="736.12" y="879.5" ></text>
</g>
<g >
<title>ip_local_out (171,717,170 samples, 0.30%)</title><rect x="938.5" y="725" width="3.6" height="15.0" fill="rgb(252,189,37)" rx="2" ry="2" />
<text x="941.54" y="735.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="682.7" y="981" width="0.2" height="15.0" fill="rgb(209,13,48)" rx="2" ry="2" />
<text x="685.71" y="991.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (20,202,020 samples, 0.04%)</title><rect x="1119.6" y="1029" width="0.4" height="15.0" fill="rgb(218,171,14)" rx="2" ry="2" />
<text x="1122.58" y="1039.5" ></text>
</g>
<g >
<title>zim_Exception___construct (50,505,050 samples, 0.09%)</title><rect x="286.9" y="1125" width="1.0" height="15.0" fill="rgb(236,223,36)" rx="2" ry="2" />
<text x="289.88" y="1135.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="842.5" y="821" width="0.2" height="15.0" fill="rgb(211,108,32)" rx="2" ry="2" />
<text x="845.50" y="831.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="302.1" y="917" width="0.2" height="15.0" fill="rgb(213,0,23)" rx="2" ry="2" />
<text x="305.08" y="927.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="390.2" y="773" width="0.2" height="15.0" fill="rgb(219,131,7)" rx="2" ry="2" />
<text x="393.21" y="783.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="902.5" y="1029" width="0.2" height="15.0" fill="rgb(254,1,9)" rx="2" ry="2" />
<text x="905.50" y="1039.5" ></text>
</g>
<g >
<title>ip_forward_finish (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="229" width="0.4" height="15.0" fill="rgb(254,225,35)" rx="2" ry="2" />
<text x="1092.58" y="239.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="757" width="0.2" height="15.0" fill="rgb(222,218,45)" rx="2" ry="2" />
<text x="1022.79" y="767.5" ></text>
</g>
<g >
<title>zend_str_tolower_copy (10,101,010 samples, 0.02%)</title><rect x="289.2" y="1077" width="0.2" height="15.0" fill="rgb(210,57,22)" rx="2" ry="2" />
<text x="292.17" y="1087.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="789" width="0.3" height="15.0" fill="rgb(215,169,30)" rx="2" ry="2" />
<text x="1134.25" y="799.5" ></text>
</g>
<g >
<title>tcp_send_ack (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="821" width="0.2" height="15.0" fill="rgb(219,60,6)" rx="2" ry="2" />
<text x="1095.08" y="831.5" ></text>
</g>
<g >
<title>ovl_permission (10,101,010 samples, 0.02%)</title><rect x="724.4" y="885" width="0.2" height="15.0" fill="rgb(239,23,50)" rx="2" ry="2" />
<text x="727.38" y="895.5" ></text>
</g>
<g >
<title>zend_hash_merge (10,101,010 samples, 0.02%)</title><rect x="967.3" y="1093" width="0.2" height="15.0" fill="rgb(222,94,27)" rx="2" ry="2" />
<text x="970.29" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="524.4" y="789" width="0.2" height="15.0" fill="rgb(220,165,1)" rx="2" ry="2" />
<text x="527.38" y="799.5" ></text>
</g>
<g >
<title>__kmalloc (10,101,010 samples, 0.02%)</title><rect x="910.4" y="933" width="0.2" height="15.0" fill="rgb(242,126,30)" rx="2" ry="2" />
<text x="913.42" y="943.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="885" width="0.2" height="15.0" fill="rgb(251,153,28)" rx="2" ry="2" />
<text x="1150.29" y="895.5" ></text>
</g>
<g >
<title>virtqueue_kick_prepare (10,101,010 samples, 0.02%)</title><rect x="30.2" y="661" width="0.2" height="15.0" fill="rgb(222,17,10)" rx="2" ry="2" />
<text x="33.21" y="671.5" ></text>
</g>
<g >
<title>sock_def_readable (10,101,010 samples, 0.02%)</title><rect x="973.3" y="821" width="0.2" height="15.0" fill="rgb(215,49,26)" rx="2" ry="2" />
<text x="976.33" y="831.5" ></text>
</g>
<g >
<title>rcu_core (10,101,010 samples, 0.02%)</title><rect x="791.5" y="933" width="0.2" height="15.0" fill="rgb(210,54,30)" rx="2" ry="2" />
<text x="794.46" y="943.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="1019.6" y="1093" width="0.4" height="15.0" fill="rgb(252,107,31)" rx="2" ry="2" />
<text x="1022.58" y="1103.5" ></text>
</g>
<g >
<title>strncpy_from_user (10,101,010 samples, 0.02%)</title><rect x="957.7" y="981" width="0.2" height="15.0" fill="rgb(240,107,7)" rx="2" ry="2" />
<text x="960.71" y="991.5" ></text>
</g>
<g >
<title>zif_array_map (60,606,060 samples, 0.11%)</title><rect x="495.8" y="1125" width="1.3" height="15.0" fill="rgb(254,196,22)" rx="2" ry="2" />
<text x="498.83" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_fast_concat_helper (10,101,010 samples, 0.02%)</title><rect x="915.2" y="1045" width="0.2" height="15.0" fill="rgb(241,177,27)" rx="2" ry="2" />
<text x="918.21" y="1055.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (80,808,080 samples, 0.14%)</title><rect x="338.1" y="1125" width="1.7" height="15.0" fill="rgb(212,211,4)" rx="2" ry="2" />
<text x="341.12" y="1135.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (10,101,010 samples, 0.02%)</title><rect x="1130.2" y="517" width="0.2" height="15.0" fill="rgb(221,151,28)" rx="2" ry="2" />
<text x="1133.21" y="527.5" ></text>
</g>
<g >
<title>zif_substr (10,101,010 samples, 0.02%)</title><rect x="772.5" y="1029" width="0.2" height="15.0" fill="rgb(224,90,49)" rx="2" ry="2" />
<text x="775.50" y="1039.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (707,070,700 samples, 1.24%)</title><rect x="851.9" y="901" width="14.6" height="15.0" fill="rgb(252,149,3)" rx="2" ry="2" />
<text x="854.88" y="911.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="799.0" y="677" width="0.2" height="15.0" fill="rgb(240,123,3)" rx="2" ry="2" />
<text x="801.96" y="687.5" ></text>
</g>
<g >
<title>TRACE-282$Wikimedia\Rdbms\LoadBalancer::finalizePrimaryChanges$1726 (30,303,030 samples, 0.05%)</title><rect x="475.4" y="1141" width="0.6" height="15.0" fill="rgb(218,113,22)" rx="2" ry="2" />
<text x="478.42" y="1151.5" ></text>
</g>
<g >
<title>sock_sendmsg (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="949" width="2.7" height="15.0" fill="rgb(213,173,54)" rx="2" ry="2" />
<text x="1026.96" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="1103.1" y="1141" width="0.2" height="15.0" fill="rgb(248,125,18)" rx="2" ry="2" />
<text x="1106.12" y="1151.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="443.3" y="885" width="0.2" height="15.0" fill="rgb(206,161,7)" rx="2" ry="2" />
<text x="446.33" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="805" width="3.3" height="15.0" fill="rgb(253,5,16)" rx="2" ry="2" />
<text x="1130.50" y="815.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1045.6" y="1029" width="0.2" height="15.0" fill="rgb(236,47,16)" rx="2" ry="2" />
<text x="1048.62" y="1039.5" ></text>
</g>
<g >
<title>__x64_sys_socket (90,909,090 samples, 0.16%)</title><rect x="1119.0" y="1157" width="1.8" height="15.0" fill="rgb(211,170,48)" rx="2" ry="2" />
<text x="1121.96" y="1167.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="675.8" y="1013" width="0.2" height="15.0" fill="rgb(218,188,43)" rx="2" ry="2" />
<text x="678.83" y="1023.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="933" width="0.2" height="15.0" fill="rgb(212,38,49)" rx="2" ry="2" />
<text x="1150.29" y="943.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (20,202,020 samples, 0.04%)</title><rect x="777.7" y="965" width="0.4" height="15.0" fill="rgb(229,128,22)" rx="2" ry="2" />
<text x="780.71" y="975.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="969.4" y="1093" width="0.2" height="15.0" fill="rgb(209,30,41)" rx="2" ry="2" />
<text x="972.38" y="1103.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1120.8" y="1157" width="0.2" height="15.0" fill="rgb(207,99,52)" rx="2" ry="2" />
<text x="1123.83" y="1167.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="179.8" y="1029" width="0.4" height="15.0" fill="rgb(206,46,32)" rx="2" ry="2" />
<text x="182.79" y="1039.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="767.5" y="933" width="0.4" height="15.0" fill="rgb(253,133,45)" rx="2" ry="2" />
<text x="770.50" y="943.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1082.9" y="997" width="0.2" height="15.0" fill="rgb(228,83,47)" rx="2" ry="2" />
<text x="1085.92" y="1007.5" ></text>
</g>
<g >
<title>TRACE-345$Wikimedia\Rdbms\DatabaseDomain::getId$202 (70,707,070 samples, 0.12%)</title><rect x="495.6" y="1141" width="1.5" height="15.0" fill="rgb(233,198,49)" rx="2" ry="2" />
<text x="498.62" y="1151.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="733.1" y="853" width="0.2" height="15.0" fill="rgb(215,216,0)" rx="2" ry="2" />
<text x="736.12" y="863.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="834.0" y="837" width="0.2" height="15.0" fill="rgb(234,175,25)" rx="2" ry="2" />
<text x="836.96" y="847.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="973.3" y="1093" width="0.2" height="15.0" fill="rgb(218,199,19)" rx="2" ry="2" />
<text x="976.33" y="1103.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="837" width="0.2" height="15.0" fill="rgb(241,83,15)" rx="2" ry="2" />
<text x="1056.33" y="847.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="609.2" y="1077" width="0.2" height="15.0" fill="rgb(225,19,34)" rx="2" ry="2" />
<text x="612.17" y="1087.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="339.6" y="949" width="0.2" height="15.0" fill="rgb(250,56,4)" rx="2" ry="2" />
<text x="342.58" y="959.5" ></text>
</g>
<g >
<title>override_creds (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="725" width="0.2" height="15.0" fill="rgb(250,123,54)" rx="2" ry="2" />
<text x="1021.96" y="735.5" ></text>
</g>
<g >
<title>zend_objects_destroy_object (60,606,060 samples, 0.11%)</title><rect x="983.8" y="1109" width="1.2" height="15.0" fill="rgb(250,172,54)" rx="2" ry="2" />
<text x="986.75" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1109" width="0.2" height="15.0" fill="rgb(222,207,13)" rx="2" ry="2" />
<text x="621.96" y="1119.5" ></text>
</g>
<g >
<title>bictcp_cwnd_event (10,101,010 samples, 0.02%)</title><rect x="1024.8" y="821" width="0.2" height="15.0" fill="rgb(229,184,52)" rx="2" ry="2" />
<text x="1027.79" y="831.5" ></text>
</g>
<g >
<title>add_function_array (30,303,030 samples, 0.05%)</title><rect x="248.3" y="1093" width="0.7" height="15.0" fill="rgb(216,217,40)" rx="2" ry="2" />
<text x="251.33" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="201.5" y="1125" width="0.4" height="15.0" fill="rgb(213,143,52)" rx="2" ry="2" />
<text x="204.46" y="1135.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="869" width="0.3" height="15.0" fill="rgb(207,68,38)" rx="2" ry="2" />
<text x="1134.25" y="879.5" ></text>
</g>
<g >
<title>php_stream_xport_connect (626,262,620 samples, 1.09%)</title><rect x="930.8" y="997" width="13.0" height="15.0" fill="rgb(215,205,45)" rx="2" ry="2" />
<text x="933.83" y="1007.5" ></text>
</g>
<g >
<title>do_tcp_setsockopt.isra.44 (10,101,010 samples, 0.02%)</title><rect x="1141.5" y="1093" width="0.2" height="15.0" fill="rgb(240,24,45)" rx="2" ry="2" />
<text x="1144.46" y="1103.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="1084.6" y="1029" width="0.2" height="15.0" fill="rgb(253,151,17)" rx="2" ry="2" />
<text x="1087.58" y="1039.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1114.0" y="1013" width="0.2" height="15.0" fill="rgb(246,153,32)" rx="2" ry="2" />
<text x="1116.96" y="1023.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (40,404,040 samples, 0.07%)</title><rect x="1116.9" y="1109" width="0.8" height="15.0" fill="rgb(228,194,39)" rx="2" ry="2" />
<text x="1119.88" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="183.8" y="917" width="0.2" height="15.0" fill="rgb(238,182,10)" rx="2" ry="2" />
<text x="186.75" y="927.5" ></text>
</g>
<g >
<title>zend_register_class_alias_ex (20,202,020 samples, 0.04%)</title><rect x="1020.6" y="1109" width="0.4" height="15.0" fill="rgb(215,123,41)" rx="2" ry="2" />
<text x="1023.62" y="1119.5" ></text>
</g>
<g >
<title>zif_preg_replace_callback (20,202,020 samples, 0.04%)</title><rect x="1074.6" y="1141" width="0.4" height="15.0" fill="rgb(250,162,32)" rx="2" ry="2" />
<text x="1077.58" y="1151.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="806.0" y="565" width="0.2" height="15.0" fill="rgb(230,6,36)" rx="2" ry="2" />
<text x="809.04" y="575.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="805" width="0.2" height="15.0" fill="rgb(205,133,4)" rx="2" ry="2" />
<text x="1085.08" y="815.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="180.0" y="1013" width="0.2" height="15.0" fill="rgb(251,223,12)" rx="2" ry="2" />
<text x="183.00" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (10,101,010 samples, 0.02%)</title><rect x="806.9" y="853" width="0.2" height="15.0" fill="rgb(214,177,31)" rx="2" ry="2" />
<text x="809.88" y="863.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="1025.0" y="549" width="0.2" height="15.0" fill="rgb(241,14,12)" rx="2" ry="2" />
<text x="1028.00" y="559.5" ></text>
</g>
<g >
<title>zend_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="487.3" y="1093" width="0.2" height="15.0" fill="rgb(250,134,34)" rx="2" ry="2" />
<text x="490.29" y="1103.5" ></text>
</g>
<g >
<title>lockref_put_return (10,101,010 samples, 0.02%)</title><rect x="533.5" y="853" width="0.3" height="15.0" fill="rgb(232,105,46)" rx="2" ry="2" />
<text x="536.54" y="863.5" ></text>
</g>
<g >
<title>ip_finish_output2 (40,404,040 samples, 0.07%)</title><rect x="939.4" y="197" width="0.8" height="15.0" fill="rgb(211,225,33)" rx="2" ry="2" />
<text x="942.38" y="207.5" ></text>
</g>
<g >
<title>zend_jit_leave_top_func_helper (10,101,010 samples, 0.02%)</title><rect x="905.2" y="1045" width="0.2" height="15.0" fill="rgb(212,112,51)" rx="2" ry="2" />
<text x="908.21" y="1055.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_W_SPEC_VAR_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="693.1" y="1125" width="0.4" height="15.0" fill="rgb(243,52,50)" rx="2" ry="2" />
<text x="696.12" y="1135.5" ></text>
</g>
<g >
<title>init_func_run_time_cache (10,101,010 samples, 0.02%)</title><rect x="752.1" y="1109" width="0.2" height="15.0" fill="rgb(229,85,31)" rx="2" ry="2" />
<text x="755.08" y="1119.5" ></text>
</g>
<g >
<title>timelib_time_offset_dtor (10,101,010 samples, 0.02%)</title><rect x="491.0" y="1093" width="0.2" height="15.0" fill="rgb(206,41,28)" rx="2" ry="2" />
<text x="494.04" y="1103.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="453" width="0.3" height="15.0" fill="rgb(223,212,43)" rx="2" ry="2" />
<text x="1134.25" y="463.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="675.8" y="981" width="0.2" height="15.0" fill="rgb(248,58,53)" rx="2" ry="2" />
<text x="678.83" y="991.5" ></text>
</g>
<g >
<title>process_backlog (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="853" width="3.3" height="15.0" fill="rgb(235,4,16)" rx="2" ry="2" />
<text x="1130.50" y="863.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="557.5" y="1141" width="0.2" height="15.0" fill="rgb(216,126,36)" rx="2" ry="2" />
<text x="560.50" y="1151.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="501.0" y="949" width="0.5" height="15.0" fill="rgb(232,219,36)" rx="2" ry="2" />
<text x="504.04" y="959.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="936.7" y="837" width="0.2" height="15.0" fill="rgb(222,217,36)" rx="2" ry="2" />
<text x="939.67" y="847.5" ></text>
</g>
<g >
<title>_php_stream_stat_path (313,131,310 samples, 0.55%)</title><rect x="436.0" y="1109" width="6.5" height="15.0" fill="rgb(252,69,50)" rx="2" ry="2" />
<text x="439.04" y="1119.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (80,808,080 samples, 0.14%)</title><rect x="801.9" y="837" width="1.6" height="15.0" fill="rgb(216,196,38)" rx="2" ry="2" />
<text x="804.88" y="847.5" ></text>
</g>
<g >
<title>TRACE-323$BagOStuff::__construct$160 (40,404,040 samples, 0.07%)</title><rect x="488.8" y="1141" width="0.8" height="15.0" fill="rgb(211,203,20)" rx="2" ry="2" />
<text x="491.75" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1013" width="0.2" height="15.0" fill="rgb(213,209,34)" rx="2" ry="2" />
<text x="1118.42" y="1023.5" ></text>
</g>
<g >
<title>persistent_compile_file (50,505,050 samples, 0.09%)</title><rect x="727.7" y="981" width="1.1" height="15.0" fill="rgb(243,67,31)" rx="2" ry="2" />
<text x="730.71" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="805.6" y="741" width="0.2" height="15.0" fill="rgb(249,70,18)" rx="2" ry="2" />
<text x="808.62" y="751.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="284.8" y="1125" width="0.2" height="15.0" fill="rgb(211,16,12)" rx="2" ry="2" />
<text x="287.79" y="1135.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="773" width="0.2" height="15.0" fill="rgb(227,162,5)" rx="2" ry="2" />
<text x="1170.08" y="783.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="308.8" y="1077" width="0.2" height="15.0" fill="rgb(218,107,35)" rx="2" ry="2" />
<text x="311.75" y="1087.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (121,212,120 samples, 0.21%)</title><rect x="1011.0" y="1061" width="2.5" height="15.0" fill="rgb(227,117,21)" rx="2" ry="2" />
<text x="1014.04" y="1071.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="211.5" y="1061" width="0.2" height="15.0" fill="rgb(237,190,5)" rx="2" ry="2" />
<text x="214.46" y="1071.5" ></text>
</g>
<g >
<title>netlink_has_listeners (10,101,010 samples, 0.02%)</title><rect x="193.8" y="725" width="0.2" height="15.0" fill="rgb(241,187,7)" rx="2" ry="2" />
<text x="196.75" y="735.5" ></text>
</g>
<g >
<title>zend_objects_store_del (151,515,150 samples, 0.26%)</title><rect x="981.9" y="1125" width="3.1" height="15.0" fill="rgb(234,65,27)" rx="2" ry="2" />
<text x="984.88" y="1135.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="754.0" y="997" width="0.2" height="15.0" fill="rgb(225,204,11)" rx="2" ry="2" />
<text x="756.96" y="1007.5" ></text>
</g>
<g >
<title>zif_is_callable (60,606,060 samples, 0.11%)</title><rect x="509.2" y="1125" width="1.2" height="15.0" fill="rgb(234,217,42)" rx="2" ry="2" />
<text x="512.17" y="1135.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="1063.5" y="1077" width="0.3" height="15.0" fill="rgb(216,72,18)" rx="2" ry="2" />
<text x="1066.54" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="371.9" y="965" width="0.2" height="15.0" fill="rgb(237,10,24)" rx="2" ry="2" />
<text x="374.88" y="975.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="853" width="0.2" height="15.0" fill="rgb(236,198,17)" rx="2" ry="2" />
<text x="1090.50" y="863.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="530.8" y="1077" width="0.2" height="15.0" fill="rgb(242,9,0)" rx="2" ry="2" />
<text x="533.83" y="1087.5" ></text>
</g>
<g >
<title>zif_implode (10,101,010 samples, 0.02%)</title><rect x="336.0" y="1125" width="0.2" height="15.0" fill="rgb(206,202,7)" rx="2" ry="2" />
<text x="339.04" y="1135.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="485" width="0.2" height="15.0" fill="rgb(227,229,38)" rx="2" ry="2" />
<text x="1085.08" y="495.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="30.2" y="789" width="0.2" height="15.0" fill="rgb(236,131,21)" rx="2" ry="2" />
<text x="33.21" y="799.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="731.2" y="885" width="0.3" height="15.0" fill="rgb(210,154,44)" rx="2" ry="2" />
<text x="734.25" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="1104.4" y="1141" width="0.2" height="15.0" fill="rgb(229,225,32)" rx="2" ry="2" />
<text x="1107.38" y="1151.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="541.9" y="1077" width="0.2" height="15.0" fill="rgb(240,202,7)" rx="2" ry="2" />
<text x="544.88" y="1087.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (10,101,010 samples, 0.02%)</title><rect x="518.8" y="1077" width="0.2" height="15.0" fill="rgb(242,202,2)" rx="2" ry="2" />
<text x="521.75" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="32.3" y="885" width="0.2" height="15.0" fill="rgb(236,73,22)" rx="2" ry="2" />
<text x="35.29" y="895.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="837" width="0.2" height="15.0" fill="rgb(225,153,50)" rx="2" ry="2" />
<text x="1086.33" y="847.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (101,010,100 samples, 0.18%)</title><rect x="1002.1" y="1045" width="2.1" height="15.0" fill="rgb(237,76,8)" rx="2" ry="2" />
<text x="1005.08" y="1055.5" ></text>
</g>
<g >
<title>populate_subpat_array (20,202,020 samples, 0.04%)</title><rect x="954.8" y="1093" width="0.4" height="15.0" fill="rgb(249,54,23)" rx="2" ry="2" />
<text x="957.79" y="1103.5" ></text>
</g>
<g >
<title>zif_class_alias (20,202,020 samples, 0.04%)</title><rect x="682.5" y="1029" width="0.4" height="15.0" fill="rgb(242,87,53)" rx="2" ry="2" />
<text x="685.50" y="1039.5" ></text>
</g>
<g >
<title>_efree (20,202,020 samples, 0.04%)</title><rect x="969.0" y="1109" width="0.4" height="15.0" fill="rgb(232,122,45)" rx="2" ry="2" />
<text x="971.96" y="1119.5" ></text>
</g>
<g >
<title>zend_std_get_static_method (10,101,010 samples, 0.02%)</title><rect x="450.0" y="1109" width="0.2" height="15.0" fill="rgb(219,28,21)" rx="2" ry="2" />
<text x="453.00" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (50,505,050 samples, 0.09%)</title><rect x="742.5" y="837" width="1.0" height="15.0" fill="rgb(228,128,7)" rx="2" ry="2" />
<text x="745.50" y="847.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="174.6" y="1045" width="0.2" height="15.0" fill="rgb(209,173,16)" rx="2" ry="2" />
<text x="177.58" y="1055.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="245.8" y="1045" width="0.2" height="15.0" fill="rgb(213,184,27)" rx="2" ry="2" />
<text x="248.83" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="967.1" y="1029" width="0.2" height="15.0" fill="rgb(228,49,31)" rx="2" ry="2" />
<text x="970.08" y="1039.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.62 (20,202,020 samples, 0.04%)</title><rect x="1146.9" y="1045" width="0.4" height="15.0" fill="rgb(227,192,19)" rx="2" ry="2" />
<text x="1149.88" y="1055.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="534.8" y="837" width="0.2" height="15.0" fill="rgb(219,221,36)" rx="2" ry="2" />
<text x="537.79" y="847.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OP_SPEC_CV_TMPVAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="644.4" y="1125" width="0.4" height="15.0" fill="rgb(220,77,35)" rx="2" ry="2" />
<text x="647.38" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="378.5" y="837" width="0.3" height="15.0" fill="rgb(215,78,13)" rx="2" ry="2" />
<text x="381.54" y="847.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_object_factory_get_connection_pub (10,101,010 samples, 0.02%)</title><rect x="955.2" y="1093" width="0.2" height="15.0" fill="rgb(220,0,36)" rx="2" ry="2" />
<text x="958.21" y="1103.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="497.1" y="1125" width="0.2" height="15.0" fill="rgb(220,87,35)" rx="2" ry="2" />
<text x="500.08" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="773" width="0.2" height="15.0" fill="rgb(213,66,11)" rx="2" ry="2" />
<text x="1056.33" y="783.5" ></text>
</g>
<g >
<title>zend_hash_extend (10,101,010 samples, 0.02%)</title><rect x="823.5" y="965" width="0.3" height="15.0" fill="rgb(241,83,37)" rx="2" ry="2" />
<text x="826.54" y="975.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="341.2" y="1093" width="0.3" height="15.0" fill="rgb(234,67,1)" rx="2" ry="2" />
<text x="344.25" y="1103.5" ></text>
</g>
<g >
<title>__xmlGenericErrorContext (10,101,010 samples, 0.02%)</title><rect x="1171.9" y="1221" width="0.2" height="15.0" fill="rgb(219,7,52)" rx="2" ry="2" />
<text x="1174.88" y="1231.5" ></text>
</g>
<g >
<title>ovl_permission (30,303,030 samples, 0.05%)</title><rect x="526.5" y="965" width="0.6" height="15.0" fill="rgb(220,158,5)" rx="2" ry="2" />
<text x="529.46" y="975.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="757" width="0.2" height="15.0" fill="rgb(220,194,46)" rx="2" ry="2" />
<text x="1056.33" y="767.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="757" width="0.3" height="15.0" fill="rgb(246,106,13)" rx="2" ry="2" />
<text x="1044.25" y="767.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="799.8" y="629" width="0.2" height="15.0" fill="rgb(211,99,43)" rx="2" ry="2" />
<text x="802.79" y="639.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="480.8" y="917" width="0.2" height="15.0" fill="rgb(214,149,47)" rx="2" ry="2" />
<text x="483.83" y="927.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (292,929,290 samples, 0.51%)</title><rect x="427.3" y="1045" width="6.0" height="15.0" fill="rgb(225,154,15)" rx="2" ry="2" />
<text x="430.29" y="1055.5" ></text>
</g>
<g >
<title>ksys_write (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="1029" width="2.7" height="15.0" fill="rgb(217,151,54)" rx="2" ry="2" />
<text x="1026.96" y="1039.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (70,707,070 samples, 0.12%)</title><rect x="608.3" y="1109" width="1.5" height="15.0" fill="rgb(206,24,22)" rx="2" ry="2" />
<text x="611.33" y="1119.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_STATIC_PROP_OP_SPEC_HANDLER (40,404,040 samples, 0.07%)</title><rect x="516.2" y="1125" width="0.9" height="15.0" fill="rgb(236,33,4)" rx="2" ry="2" />
<text x="519.25" y="1135.5" ></text>
</g>
<g >
<title>arp_rcv (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="901" width="0.3" height="15.0" fill="rgb(235,119,5)" rx="2" ry="2" />
<text x="1044.25" y="911.5" ></text>
</g>
<g >
<title>compile_filename (30,303,030 samples, 0.05%)</title><rect x="687.9" y="997" width="0.6" height="15.0" fill="rgb(227,40,48)" rx="2" ry="2" />
<text x="690.92" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="207.9" y="1125" width="0.2" height="15.0" fill="rgb(211,71,51)" rx="2" ry="2" />
<text x="210.92" y="1135.5" ></text>
</g>
<g >
<title>destroy_op_array (10,101,010 samples, 0.02%)</title><rect x="798.3" y="933" width="0.2" height="15.0" fill="rgb(224,165,23)" rx="2" ry="2" />
<text x="801.33" y="943.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="690.2" y="1093" width="0.2" height="15.0" fill="rgb(223,44,31)" rx="2" ry="2" />
<text x="693.21" y="1103.5" ></text>
</g>
<g >
<title>zend_quick_check_constant (20,202,020 samples, 0.04%)</title><rect x="985.0" y="1125" width="0.4" height="15.0" fill="rgb(247,165,4)" rx="2" ry="2" />
<text x="988.00" y="1135.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="619.0" y="965" width="0.2" height="15.0" fill="rgb(209,30,4)" rx="2" ry="2" />
<text x="621.96" y="975.5" ></text>
</g>
<g >
<title>llseek (20,202,020 samples, 0.04%)</title><rect x="948.8" y="1061" width="0.4" height="15.0" fill="rgb(252,118,1)" rx="2" ry="2" />
<text x="951.75" y="1071.5" ></text>
</g>
<g >
<title>_php_stream_write_buffer (10,101,010 samples, 0.02%)</title><rect x="1051.9" y="1013" width="0.2" height="15.0" fill="rgb(208,61,27)" rx="2" ry="2" />
<text x="1054.88" y="1023.5" ></text>
</g>
<g >
<title>tcp_fin (10,101,010 samples, 0.02%)</title><rect x="799.0" y="581" width="0.2" height="15.0" fill="rgb(223,159,24)" rx="2" ry="2" />
<text x="801.96" y="591.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="724.8" y="869" width="0.2" height="15.0" fill="rgb(220,141,48)" rx="2" ry="2" />
<text x="727.79" y="879.5" ></text>
</g>
<g >
<title>start_xmit (30,303,030 samples, 0.05%)</title><rect x="939.4" y="117" width="0.6" height="15.0" fill="rgb(206,196,1)" rx="2" ry="2" />
<text x="942.38" y="127.5" ></text>
</g>
<g >
<title>do_interface_implementation (70,707,070 samples, 0.12%)</title><rect x="741.0" y="853" width="1.5" height="15.0" fill="rgb(235,125,54)" rx="2" ry="2" />
<text x="744.04" y="863.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_fetch_auth_plugin_by_name_pub (10,101,010 samples, 0.02%)</title><rect x="929.2" y="997" width="0.2" height="15.0" fill="rgb(244,31,50)" rx="2" ry="2" />
<text x="932.17" y="1007.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="539.4" y="837" width="0.2" height="15.0" fill="rgb(244,93,34)" rx="2" ry="2" />
<text x="542.38" y="847.5" ></text>
</g>
<g >
<title>lockref_put_return (40,404,040 samples, 0.07%)</title><rect x="397.3" y="917" width="0.8" height="15.0" fill="rgb(230,35,15)" rx="2" ry="2" />
<text x="400.29" y="927.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="649.4" y="1061" width="0.2" height="15.0" fill="rgb(233,47,29)" rx="2" ry="2" />
<text x="652.38" y="1071.5" ></text>
</g>
<g >
<title>access (20,202,020 samples, 0.04%)</title><rect x="339.2" y="1029" width="0.4" height="15.0" fill="rgb(215,127,13)" rx="2" ry="2" />
<text x="342.17" y="1039.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (60,606,060 samples, 0.11%)</title><rect x="1089.2" y="773" width="1.2" height="15.0" fill="rgb(224,124,41)" rx="2" ry="2" />
<text x="1092.17" y="783.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="970.6" y="965" width="0.2" height="15.0" fill="rgb(233,144,21)" rx="2" ry="2" />
<text x="973.62" y="975.5" ></text>
</g>
<g >
<title>__lock_text_start (50,505,050 samples, 0.09%)</title><rect x="213.5" y="917" width="1.1" height="15.0" fill="rgb(226,167,48)" rx="2" ry="2" />
<text x="216.54" y="927.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1173" width="0.4" height="15.0" fill="rgb(210,116,9)" rx="2" ry="2" />
<text x="1147.38" y="1183.5" ></text>
</g>
<g >
<title>vfs_write (40,404,040 samples, 0.07%)</title><rect x="1107.9" y="1093" width="0.9" height="15.0" fill="rgb(229,229,42)" rx="2" ry="2" />
<text x="1110.92" y="1103.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="539.4" y="597" width="0.2" height="15.0" fill="rgb(240,13,15)" rx="2" ry="2" />
<text x="542.38" y="607.5" ></text>
</g>
<g >
<title>read (90,909,090 samples, 0.16%)</title><rect x="946.0" y="1045" width="1.9" height="15.0" fill="rgb(245,111,23)" rx="2" ry="2" />
<text x="949.04" y="1055.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="1037.7" y="1013" width="0.2" height="15.0" fill="rgb(213,193,21)" rx="2" ry="2" />
<text x="1040.71" y="1023.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="1165.8" y="965" width="0.4" height="15.0" fill="rgb(217,26,40)" rx="2" ry="2" />
<text x="1168.83" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="524.4" y="917" width="0.2" height="15.0" fill="rgb(216,114,28)" rx="2" ry="2" />
<text x="527.38" y="927.5" ></text>
</g>
<g >
<title>ip_local_out (202,020,200 samples, 0.35%)</title><rect x="1184.0" y="1013" width="4.1" height="15.0" fill="rgb(251,86,31)" rx="2" ry="2" />
<text x="1186.96" y="1023.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="32.3" y="917" width="0.2" height="15.0" fill="rgb(237,124,41)" rx="2" ry="2" />
<text x="35.29" y="927.5" ></text>
</g>
<g >
<title>filename_lookup (20,202,020 samples, 0.04%)</title><rect x="797.1" y="821" width="0.4" height="15.0" fill="rgb(219,61,19)" rx="2" ry="2" />
<text x="800.08" y="831.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="535.0" y="965" width="0.2" height="15.0" fill="rgb(218,135,3)" rx="2" ry="2" />
<text x="538.00" y="975.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="534.8" y="693" width="0.2" height="15.0" fill="rgb(209,202,10)" rx="2" ry="2" />
<text x="537.79" y="703.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (50,505,050 samples, 0.09%)</title><rect x="1149.8" y="933" width="1.0" height="15.0" fill="rgb(234,63,43)" rx="2" ry="2" />
<text x="1152.79" y="943.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="925.4" y="613" width="0.2" height="15.0" fill="rgb(252,24,20)" rx="2" ry="2" />
<text x="928.42" y="623.5" ></text>
</g>
<g >
<title>_erealloc (20,202,020 samples, 0.04%)</title><rect x="311.0" y="1109" width="0.5" height="15.0" fill="rgb(212,144,34)" rx="2" ry="2" />
<text x="314.04" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="967.1" y="1045" width="0.2" height="15.0" fill="rgb(246,204,11)" rx="2" ry="2" />
<text x="970.08" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (30,303,030 samples, 0.05%)</title><rect x="23.8" y="1173" width="0.6" height="15.0" fill="rgb(245,184,53)" rx="2" ry="2" />
<text x="26.75" y="1183.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (131,313,130 samples, 0.23%)</title><rect x="676.9" y="965" width="2.7" height="15.0" fill="rgb(226,181,38)" rx="2" ry="2" />
<text x="679.88" y="975.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="443.5" y="981" width="0.3" height="15.0" fill="rgb(219,202,52)" rx="2" ry="2" />
<text x="446.54" y="991.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="973.3" y="901" width="0.2" height="15.0" fill="rgb(225,91,36)" rx="2" ry="2" />
<text x="976.33" y="911.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="789" width="0.2" height="15.0" fill="rgb(205,66,7)" rx="2" ry="2" />
<text x="1022.79" y="799.5" ></text>
</g>
<g >
<title>php_array_merge (10,101,010 samples, 0.02%)</title><rect x="952.9" y="1125" width="0.2" height="15.0" fill="rgb(253,108,4)" rx="2" ry="2" />
<text x="955.92" y="1135.5" ></text>
</g>
<g >
<title>virtnet_poll_tx (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="789" width="0.2" height="15.0" fill="rgb(238,211,10)" rx="2" ry="2" />
<text x="1010.50" y="799.5" ></text>
</g>
<g >
<title>ext4_xattr_security_get (90,909,090 samples, 0.16%)</title><rect x="376.5" y="917" width="1.8" height="15.0" fill="rgb(248,224,1)" rx="2" ry="2" />
<text x="379.46" y="927.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (30,303,030 samples, 0.05%)</title><rect x="1077.5" y="1093" width="0.6" height="15.0" fill="rgb(249,42,8)" rx="2" ry="2" />
<text x="1080.50" y="1103.5" ></text>
</g>
<g >
<title>fpm_scoreboard_proc_acquire (10,101,010 samples, 0.02%)</title><rect x="206.7" y="1141" width="0.2" height="15.0" fill="rgb(242,60,0)" rx="2" ry="2" />
<text x="209.67" y="1151.5" ></text>
</g>
<g >
<title>detach_buf_split (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="677" width="0.2" height="15.0" fill="rgb(225,196,23)" rx="2" ry="2" />
<text x="1056.33" y="687.5" ></text>
</g>
<g >
<title>vfs_getattr (10,101,010 samples, 0.02%)</title><rect x="957.9" y="1013" width="0.2" height="15.0" fill="rgb(216,78,16)" rx="2" ry="2" />
<text x="960.92" y="1023.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="32.3" y="613" width="0.2" height="15.0" fill="rgb(228,73,21)" rx="2" ry="2" />
<text x="35.29" y="623.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="106.9" y="933" width="0.2" height="15.0" fill="rgb(227,51,49)" rx="2" ry="2" />
<text x="109.88" y="943.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="246.5" y="1109" width="0.2" height="15.0" fill="rgb(241,110,24)" rx="2" ry="2" />
<text x="249.46" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="416.9" y="725" width="0.2" height="15.0" fill="rgb(208,187,42)" rx="2" ry="2" />
<text x="419.88" y="735.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (10,101,010 samples, 0.02%)</title><rect x="628.8" y="1061" width="0.2" height="15.0" fill="rgb(249,118,26)" rx="2" ry="2" />
<text x="631.75" y="1071.5" ></text>
</g>
<g >
<title>__xstat64 (3,606,060,570 samples, 6.30%)</title><rect x="361.7" y="1109" width="74.3" height="15.0" fill="rgb(210,78,38)" rx="2" ry="2" />
<text x="364.67" y="1119.5" >__xstat64</text>
</g>
<g >
<title>mysqlnd_plugin_find (10,101,010 samples, 0.02%)</title><rect x="929.2" y="981" width="0.2" height="15.0" fill="rgb(234,70,14)" rx="2" ry="2" />
<text x="932.17" y="991.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="609.8" y="1109" width="0.2" height="15.0" fill="rgb(248,168,14)" rx="2" ry="2" />
<text x="612.79" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (10,101,010 samples, 0.02%)</title><rect x="314.0" y="1109" width="0.2" height="15.0" fill="rgb(223,102,53)" rx="2" ry="2" />
<text x="316.96" y="1119.5" ></text>
</g>
<g >
<title>zend_dispatch_try_catch_finally_helper_SPEC (10,101,010 samples, 0.02%)</title><rect x="975.6" y="1125" width="0.2" height="15.0" fill="rgb(208,60,2)" rx="2" ry="2" />
<text x="978.62" y="1135.5" ></text>
</g>
<g >
<title>zif_array_keys (10,101,010 samples, 0.02%)</title><rect x="1070.6" y="1141" width="0.2" height="15.0" fill="rgb(240,1,49)" rx="2" ry="2" />
<text x="1073.62" y="1151.5" ></text>
</g>
<g >
<title>pipe_write (70,707,070 samples, 0.12%)</title><rect x="213.3" y="965" width="1.5" height="15.0" fill="rgb(252,84,33)" rx="2" ry="2" />
<text x="216.33" y="975.5" ></text>
</g>
<g >
<title>_copy_to_user (10,101,010 samples, 0.02%)</title><rect x="1103.1" y="1093" width="0.2" height="15.0" fill="rgb(241,77,4)" rx="2" ry="2" />
<text x="1106.12" y="1103.5" ></text>
</g>
<g >
<title>zend_objects_store_free_object_storage (212,121,210 samples, 0.37%)</title><rect x="1092.1" y="1125" width="4.4" height="15.0" fill="rgb(224,58,48)" rx="2" ry="2" />
<text x="1095.08" y="1135.5" ></text>
</g>
<g >
<title>access (333,333,330 samples, 0.58%)</title><rect x="907.9" y="1045" width="6.9" height="15.0" fill="rgb(250,227,32)" rx="2" ry="2" />
<text x="910.92" y="1055.5" ></text>
</g>
<g >
<title>TRACE-293$Wikimedia\Rdbms\LoadBalancer::hasPrimaryChanges$2128 (30,303,030 samples, 0.05%)</title><rect x="477.9" y="1141" width="0.6" height="15.0" fill="rgb(220,86,37)" rx="2" ry="2" />
<text x="480.92" y="1151.5" ></text>
</g>
<g >
<title>_ecalloc (10,101,010 samples, 0.02%)</title><rect x="1122.5" y="1205" width="0.2" height="15.0" fill="rgb(233,62,5)" rx="2" ry="2" />
<text x="1125.50" y="1215.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (636,363,630 samples, 1.11%)</title><rect x="1151.5" y="853" width="13.1" height="15.0" fill="rgb(208,116,23)" rx="2" ry="2" />
<text x="1154.46" y="863.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="913.1" y="837" width="0.2" height="15.0" fill="rgb(250,39,29)" rx="2" ry="2" />
<text x="916.12" y="847.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="453" width="0.4" height="15.0" fill="rgb(225,47,21)" rx="2" ry="2" />
<text x="1092.58" y="463.5" ></text>
</g>
<g >
<title>TRACE-140$ExtensionRegistry::exportExtractedData$508 (10,101,010 samples, 0.02%)</title><rect x="248.1" y="1141" width="0.2" height="15.0" fill="rgb(253,15,52)" rx="2" ry="2" />
<text x="251.12" y="1151.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="245.8" y="1125" width="0.2" height="15.0" fill="rgb(212,40,51)" rx="2" ry="2" />
<text x="248.83" y="1135.5" ></text>
</g>
<g >
<title>parse_iv2 (20,202,020 samples, 0.04%)</title><rect x="107.9" y="1093" width="0.4" height="15.0" fill="rgb(208,99,37)" rx="2" ry="2" />
<text x="110.92" y="1103.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="677.9" y="725" width="0.2" height="15.0" fill="rgb(217,83,6)" rx="2" ry="2" />
<text x="680.92" y="735.5" ></text>
</g>
<g >
<title>getname_flags (383,838,380 samples, 0.67%)</title><rect x="417.1" y="997" width="7.9" height="15.0" fill="rgb(250,142,53)" rx="2" ry="2" />
<text x="420.08" y="1007.5" ></text>
</g>
<g >
<title>memcpy@plt (10,101,010 samples, 0.02%)</title><rect x="703.5" y="1077" width="0.3" height="15.0" fill="rgb(251,211,11)" rx="2" ry="2" />
<text x="706.54" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="934.0" y="853" width="0.4" height="15.0" fill="rgb(237,193,23)" rx="2" ry="2" />
<text x="936.96" y="863.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (1,454,545,440 samples, 2.54%)</title><rect x="720.4" y="1093" width="30.0" height="15.0" fill="rgb(221,150,32)" rx="2" ry="2" />
<text x="723.42" y="1103.5" >ze..</text>
</g>
<g >
<title>TRACE-182$OOUI\FandomOOUITheme::onFandomResourceLoaderModifyCoreModules$37 (323,232,320 samples, 0.56%)</title><rect x="315.0" y="1141" width="6.7" height="15.0" fill="rgb(235,64,17)" rx="2" ry="2" />
<text x="318.00" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="378.5" y="869" width="0.3" height="15.0" fill="rgb(240,204,35)" rx="2" ry="2" />
<text x="381.54" y="879.5" ></text>
</g>
<g >
<title>vp_notify (60,606,060 samples, 0.11%)</title><rect x="1185.2" y="373" width="1.3" height="15.0" fill="rgb(251,55,22)" rx="2" ry="2" />
<text x="1188.21" y="383.5" ></text>
</g>
<g >
<title>access (10,101,010 samples, 0.02%)</title><rect x="742.7" y="773" width="0.2" height="15.0" fill="rgb(223,129,49)" rx="2" ry="2" />
<text x="745.71" y="783.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="339.2" y="949" width="0.2" height="15.0" fill="rgb(240,90,44)" rx="2" ry="2" />
<text x="342.17" y="959.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="183.8" y="965" width="0.2" height="15.0" fill="rgb(240,137,10)" rx="2" ry="2" />
<text x="186.75" y="975.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="661" width="0.2" height="15.0" fill="rgb(248,229,17)" rx="2" ry="2" />
<text x="1056.33" y="671.5" ></text>
</g>
<g >
<title>php_pcre2_jit_match (20,202,020 samples, 0.04%)</title><rect x="306.9" y="1093" width="0.4" height="15.0" fill="rgb(252,37,29)" rx="2" ry="2" />
<text x="309.88" y="1103.5" ></text>
</g>
<g >
<title>zval_ptr_dtor (10,101,010 samples, 0.02%)</title><rect x="470.4" y="1109" width="0.2" height="15.0" fill="rgb(253,18,50)" rx="2" ry="2" />
<text x="473.42" y="1119.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="682.7" y="917" width="0.2" height="15.0" fill="rgb(227,20,45)" rx="2" ry="2" />
<text x="685.71" y="927.5" ></text>
</g>
<g >
<title>tcp_v4_connect (363,636,360 samples, 0.64%)</title><rect x="1124.2" y="1093" width="7.5" height="15.0" fill="rgb(208,207,43)" rx="2" ry="2" />
<text x="1127.17" y="1103.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="799.8" y="709" width="0.2" height="15.0" fill="rgb(233,49,52)" rx="2" ry="2" />
<text x="802.79" y="719.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_open_tcp_or_unix_pub (636,363,630 samples, 1.11%)</title><rect x="930.6" y="1029" width="13.2" height="15.0" fill="rgb(219,152,32)" rx="2" ry="2" />
<text x="933.62" y="1039.5" ></text>
</g>
<g >
<title>rcu_gp_kthread_wake (10,101,010 samples, 0.02%)</title><rect x="371.9" y="885" width="0.2" height="15.0" fill="rgb(247,222,6)" rx="2" ry="2" />
<text x="374.88" y="895.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1061" width="0.2" height="15.0" fill="rgb(218,81,23)" rx="2" ry="2" />
<text x="902.38" y="1071.5" ></text>
</g>
<g >
<title>ZEND_CATCH_SPEC_CONST_HANDLER (70,707,070 samples, 0.12%)</title><rect x="647.1" y="1125" width="1.4" height="15.0" fill="rgb(251,90,36)" rx="2" ry="2" />
<text x="650.08" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1077" width="0.2" height="15.0" fill="rgb(214,196,10)" rx="2" ry="2" />
<text x="35.29" y="1087.5" ></text>
</g>
<g >
<title>zif_strtolower (10,101,010 samples, 0.02%)</title><rect x="1059.2" y="1125" width="0.2" height="15.0" fill="rgb(215,217,52)" rx="2" ry="2" />
<text x="1062.17" y="1135.5" ></text>
</g>
<g >
<title>async_page_fault (10,101,010 samples, 0.02%)</title><rect x="183.5" y="1045" width="0.3" height="15.0" fill="rgb(213,87,17)" rx="2" ry="2" />
<text x="186.54" y="1055.5" ></text>
</g>
<g >
<title>schedule (70,707,070 samples, 0.12%)</title><rect x="209.6" y="1013" width="1.4" height="15.0" fill="rgb(239,159,22)" rx="2" ry="2" />
<text x="212.58" y="1023.5" ></text>
</g>
<g >
<title>persistent_compile_file (30,303,030 samples, 0.05%)</title><rect x="743.8" y="853" width="0.6" height="15.0" fill="rgb(236,140,46)" rx="2" ry="2" />
<text x="746.75" y="863.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="789" width="0.3" height="15.0" fill="rgb(209,83,50)" rx="2" ry="2" />
<text x="1044.25" y="799.5" ></text>
</g>
<g >
<title>TRACE-236$Fandom\Includes\Cache\MemcachedBagOStuff::getMulti$73 (10,101,010 samples, 0.02%)</title><rect x="451.2" y="1141" width="0.3" height="15.0" fill="rgb(214,31,1)" rx="2" ry="2" />
<text x="454.25" y="1151.5" ></text>
</g>
<g >
<title>__audit_inode (20,202,020 samples, 0.04%)</title><rect x="1135.4" y="1093" width="0.4" height="15.0" fill="rgb(209,206,51)" rx="2" ry="2" />
<text x="1138.42" y="1103.5" ></text>
</g>
<g >
<title>zend_call_known_function (80,808,080 samples, 0.14%)</title><rect x="303.1" y="821" width="1.7" height="15.0" fill="rgb(235,217,3)" rx="2" ry="2" />
<text x="306.12" y="831.5" ></text>
</g>
<g >
<title>__x64_sys_write (131,313,130 samples, 0.23%)</title><rect x="1035.0" y="1029" width="2.7" height="15.0" fill="rgb(251,221,48)" rx="2" ry="2" />
<text x="1038.00" y="1039.5" ></text>
</g>
<g >
<title>generic_permission (10,101,010 samples, 0.02%)</title><rect x="380.8" y="949" width="0.2" height="15.0" fill="rgb(222,169,52)" rx="2" ry="2" />
<text x="383.83" y="959.5" ></text>
</g>
<g >
<title>security_socket_connect (10,101,010 samples, 0.02%)</title><rect x="1131.7" y="1125" width="0.2" height="15.0" fill="rgb(252,80,10)" rx="2" ry="2" />
<text x="1134.67" y="1135.5" ></text>
</g>
<g >
<title>spl_perform_autoload (80,808,080 samples, 0.14%)</title><rect x="712.5" y="1061" width="1.7" height="15.0" fill="rgb(216,139,5)" rx="2" ry="2" />
<text x="715.50" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (50,505,050 samples, 0.09%)</title><rect x="266.2" y="1109" width="1.1" height="15.0" fill="rgb(205,224,23)" rx="2" ry="2" />
<text x="269.25" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (10,101,010 samples, 0.02%)</title><rect x="500.2" y="1013" width="0.2" height="15.0" fill="rgb(246,44,7)" rx="2" ry="2" />
<text x="503.21" y="1023.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="183.8" y="853" width="0.2" height="15.0" fill="rgb(248,201,0)" rx="2" ry="2" />
<text x="186.75" y="863.5" ></text>
</g>
<g >
<title>__do_sys_newstat (60,606,060 samples, 0.11%)</title><rect x="956.9" y="1045" width="1.2" height="15.0" fill="rgb(236,18,36)" rx="2" ry="2" />
<text x="959.88" y="1055.5" ></text>
</g>
<g >
<title>compile_filename (111,111,110 samples, 0.19%)</title><rect x="1011.2" y="1013" width="2.3" height="15.0" fill="rgb(245,70,41)" rx="2" ry="2" />
<text x="1014.25" y="1023.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="684.6" y="837" width="0.2" height="15.0" fill="rgb(218,139,10)" rx="2" ry="2" />
<text x="687.58" y="847.5" ></text>
</g>
<g >
<title>_emalloc (50,505,050 samples, 0.09%)</title><rect x="68.5" y="1093" width="1.1" height="15.0" fill="rgb(231,93,10)" rx="2" ry="2" />
<text x="71.54" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="444.0" y="1125" width="0.2" height="15.0" fill="rgb(218,93,25)" rx="2" ry="2" />
<text x="446.96" y="1135.5" ></text>
</g>
<g >
<title>zend_mm_realloc_slow (10,101,010 samples, 0.02%)</title><rect x="1047.5" y="1013" width="0.2" height="15.0" fill="rgb(205,212,26)" rx="2" ry="2" />
<text x="1050.50" y="1023.5" ></text>
</g>
<g >
<title>__fdget (10,101,010 samples, 0.02%)</title><rect x="926.2" y="805" width="0.3" height="15.0" fill="rgb(250,77,16)" rx="2" ry="2" />
<text x="929.25" y="815.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (30,303,030 samples, 0.05%)</title><rect x="524.0" y="965" width="0.6" height="15.0" fill="rgb(254,30,6)" rx="2" ry="2" />
<text x="526.96" y="975.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="619.4" y="1093" width="0.2" height="15.0" fill="rgb(229,102,48)" rx="2" ry="2" />
<text x="622.38" y="1103.5" ></text>
</g>
<g >
<title>arp_send_dst.part.18 (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="869" width="0.3" height="15.0" fill="rgb(245,149,13)" rx="2" ry="2" />
<text x="1044.25" y="879.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="933" width="0.2" height="15.0" fill="rgb(224,145,42)" rx="2" ry="2" />
<text x="1170.08" y="943.5" ></text>
</g>
<g >
<title>tcp_write_xmit (60,606,060 samples, 0.11%)</title><rect x="1089.2" y="757" width="1.2" height="15.0" fill="rgb(210,210,30)" rx="2" ry="2" />
<text x="1092.17" y="767.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="933" width="0.2" height="15.0" fill="rgb(226,180,44)" rx="2" ry="2" />
<text x="1085.08" y="943.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="499.0" y="1109" width="0.2" height="15.0" fill="rgb(218,139,6)" rx="2" ry="2" />
<text x="501.96" y="1119.5" ></text>
</g>
<g >
<title>zend_parse_parameters (10,101,010 samples, 0.02%)</title><rect x="1057.1" y="1109" width="0.2" height="15.0" fill="rgb(232,5,9)" rx="2" ry="2" />
<text x="1060.08" y="1119.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="183.8" y="1013" width="0.2" height="15.0" fill="rgb(242,72,9)" rx="2" ry="2" />
<text x="186.75" y="1023.5" ></text>
</g>
<g >
<title>strlen@plt (10,101,010 samples, 0.02%)</title><rect x="864.4" y="853" width="0.2" height="15.0" fill="rgb(239,155,30)" rx="2" ry="2" />
<text x="867.38" y="863.5" ></text>
</g>
<g >
<title>finish_task_switch (30,303,030 samples, 0.05%)</title><rect x="935.6" y="757" width="0.6" height="15.0" fill="rgb(239,134,51)" rx="2" ry="2" />
<text x="938.62" y="767.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="557.3" y="1061" width="0.2" height="15.0" fill="rgb(214,50,49)" rx="2" ry="2" />
<text x="560.29" y="1071.5" ></text>
</g>
<g >
<title>phar_is_file (30,303,030 samples, 0.05%)</title><rect x="295.4" y="1125" width="0.6" height="15.0" fill="rgb(227,6,17)" rx="2" ry="2" />
<text x="298.42" y="1135.5" ></text>
</g>
<g >
<title>follow_managed (10,101,010 samples, 0.02%)</title><rect x="912.5" y="869" width="0.2" height="15.0" fill="rgb(226,156,51)" rx="2" ry="2" />
<text x="915.50" y="879.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="925.6" y="709" width="0.2" height="15.0" fill="rgb(250,29,37)" rx="2" ry="2" />
<text x="928.62" y="719.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="180.0" y="997" width="0.2" height="15.0" fill="rgb(240,167,41)" rx="2" ry="2" />
<text x="183.00" y="1007.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1029" width="0.2" height="15.0" fill="rgb(209,14,52)" rx="2" ry="2" />
<text x="693.62" y="1039.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="297.9" y="1109" width="0.2" height="15.0" fill="rgb(213,217,5)" rx="2" ry="2" />
<text x="300.92" y="1119.5" ></text>
</g>
<g >
<title>zend_perform_covariant_type_check (10,101,010 samples, 0.02%)</title><rect x="822.5" y="933" width="0.2" height="15.0" fill="rgb(229,30,40)" rx="2" ry="2" />
<text x="825.50" y="943.5" ></text>
</g>
<g >
<title>__fdget (20,202,020 samples, 0.04%)</title><rect x="1188.3" y="1125" width="0.5" height="15.0" fill="rgb(220,124,35)" rx="2" ry="2" />
<text x="1191.33" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="644.2" y="1029" width="0.2" height="15.0" fill="rgb(238,30,42)" rx="2" ry="2" />
<text x="647.17" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_rehash (101,010,100 samples, 0.18%)</title><rect x="642.3" y="1077" width="2.1" height="15.0" fill="rgb(205,67,19)" rx="2" ry="2" />
<text x="645.29" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="927.3" y="821" width="0.2" height="15.0" fill="rgb(226,99,25)" rx="2" ry="2" />
<text x="930.29" y="831.5" ></text>
</g>
<g >
<title>xfrm_lookup_with_ifid (10,101,010 samples, 0.02%)</title><rect x="1124.8" y="1045" width="0.2" height="15.0" fill="rgb(240,197,29)" rx="2" ry="2" />
<text x="1127.79" y="1055.5" ></text>
</g>
<g >
<title>zendi_smart_strcmp (30,303,030 samples, 0.05%)</title><rect x="511.9" y="1045" width="0.6" height="15.0" fill="rgb(209,229,17)" rx="2" ry="2" />
<text x="514.88" y="1055.5" ></text>
</g>
<g >
<title>ktime_get_with_offset (10,101,010 samples, 0.02%)</title><rect x="937.9" y="773" width="0.2" height="15.0" fill="rgb(247,139,32)" rx="2" ry="2" />
<text x="940.92" y="783.5" ></text>
</g>
<g >
<title>__schedule (20,202,020 samples, 0.04%)</title><rect x="1053.5" y="837" width="0.5" height="15.0" fill="rgb(232,141,35)" rx="2" ry="2" />
<text x="1056.54" y="847.5" ></text>
</g>
<g >
<title>zend_attach_symbol_table (131,313,130 samples, 0.23%)</title><rect x="970.8" y="1125" width="2.7" height="15.0" fill="rgb(209,85,37)" rx="2" ry="2" />
<text x="973.83" y="1135.5" ></text>
</g>
<g >
<title>sock_recvmsg (181,818,180 samples, 0.32%)</title><rect x="1176.2" y="1141" width="3.8" height="15.0" fill="rgb(254,168,22)" rx="2" ry="2" />
<text x="1179.25" y="1151.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (20,202,020 samples, 0.04%)</title><rect x="934.0" y="821" width="0.4" height="15.0" fill="rgb(217,7,11)" rx="2" ry="2" />
<text x="936.96" y="831.5" ></text>
</g>
<g >
<title>zif_strrpos (10,101,010 samples, 0.02%)</title><rect x="1018.5" y="917" width="0.3" height="15.0" fill="rgb(225,60,45)" rx="2" ry="2" />
<text x="1021.54" y="927.5" ></text>
</g>
<g >
<title>ip_finish_output (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="197" width="0.4" height="15.0" fill="rgb(218,200,47)" rx="2" ry="2" />
<text x="1092.58" y="207.5" ></text>
</g>
<g >
<title>pcre_get_compiled_regex_cache_ex (10,101,010 samples, 0.02%)</title><rect x="953.8" y="1109" width="0.2" height="15.0" fill="rgb(240,60,16)" rx="2" ry="2" />
<text x="956.75" y="1119.5" ></text>
</g>
<g >
<title>sock_sendmsg (1,111,111,100 samples, 1.94%)</title><rect x="1145.8" y="1141" width="23.0" height="15.0" fill="rgb(247,198,29)" rx="2" ry="2" />
<text x="1148.83" y="1151.5" >s..</text>
</g>
<g >
<title>sch_direct_xmit (262,626,260 samples, 0.46%)</title><rect x="1152.9" y="405" width="5.4" height="15.0" fill="rgb(243,59,34)" rx="2" ry="2" />
<text x="1155.92" y="415.5" ></text>
</g>
<g >
<title>spl_perform_autoload (70,707,070 samples, 0.12%)</title><rect x="916.5" y="981" width="1.4" height="15.0" fill="rgb(236,120,3)" rx="2" ry="2" />
<text x="919.46" y="991.5" ></text>
</g>
<g >
<title>TRACE-169${closure}$723 (20,202,020 samples, 0.04%)</title><rect x="296.0" y="1141" width="0.5" height="15.0" fill="rgb(218,114,28)" rx="2" ry="2" />
<text x="299.04" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (151,515,150 samples, 0.26%)</title><rect x="774.0" y="997" width="3.1" height="15.0" fill="rgb(251,177,30)" rx="2" ry="2" />
<text x="776.96" y="1007.5" ></text>
</g>
<g >
<title>do_async_page_fault (10,101,010 samples, 0.02%)</title><rect x="772.1" y="1013" width="0.2" height="15.0" fill="rgb(229,131,44)" rx="2" ry="2" />
<text x="775.08" y="1023.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (70,707,070 samples, 0.12%)</title><rect x="336.7" y="1125" width="1.4" height="15.0" fill="rgb(240,41,43)" rx="2" ry="2" />
<text x="339.67" y="1135.5" ></text>
</g>
<g >
<title>_php_stream_read (101,010,100 samples, 0.18%)</title><rect x="1052.5" y="1013" width="2.1" height="15.0" fill="rgb(210,164,24)" rx="2" ry="2" />
<text x="1055.50" y="1023.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="684.6" y="1013" width="0.4" height="15.0" fill="rgb(223,218,13)" rx="2" ry="2" />
<text x="687.58" y="1023.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="853" width="0.2" height="15.0" fill="rgb(242,88,7)" rx="2" ry="2" />
<text x="1056.33" y="863.5" ></text>
</g>
<g >
<title>security_inode_permission (10,101,010 samples, 0.02%)</title><rect x="901.2" y="965" width="0.3" height="15.0" fill="rgb(231,123,48)" rx="2" ry="2" />
<text x="904.25" y="975.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_query_pub (151,515,150 samples, 0.26%)</title><rect x="1051.5" y="1109" width="3.1" height="15.0" fill="rgb(217,103,42)" rx="2" ry="2" />
<text x="1054.46" y="1119.5" ></text>
</g>
<g >
<title>__close (60,606,060 samples, 0.11%)</title><rect x="1143.5" y="1221" width="1.3" height="15.0" fill="rgb(242,22,13)" rx="2" ry="2" />
<text x="1146.54" y="1231.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (30,303,030 samples, 0.05%)</title><rect x="247.3" y="1109" width="0.6" height="15.0" fill="rgb(234,26,16)" rx="2" ry="2" />
<text x="250.29" y="1119.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="687.5" y="933" width="0.4" height="15.0" fill="rgb(250,117,9)" rx="2" ry="2" />
<text x="690.50" y="943.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="677.1" y="917" width="0.2" height="15.0" fill="rgb(226,195,49)" rx="2" ry="2" />
<text x="680.08" y="927.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="837" width="0.3" height="15.0" fill="rgb(225,84,41)" rx="2" ry="2" />
<text x="1044.25" y="847.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1013" width="0.2" height="15.0" fill="rgb(206,180,33)" rx="2" ry="2" />
<text x="445.29" y="1023.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1093" width="0.2" height="15.0" fill="rgb(249,15,18)" rx="2" ry="2" />
<text x="549.46" y="1103.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1109" width="0.2" height="15.0" fill="rgb(216,193,32)" rx="2" ry="2" />
<text x="27.17" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.21%)</title><rect x="213.1" y="1077" width="2.5" height="15.0" fill="rgb(209,178,15)" rx="2" ry="2" />
<text x="216.12" y="1087.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="613" width="0.3" height="15.0" fill="rgb(248,55,13)" rx="2" ry="2" />
<text x="1134.25" y="623.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="931.0" y="805" width="0.2" height="15.0" fill="rgb(249,1,52)" rx="2" ry="2" />
<text x="934.04" y="815.5" ></text>
</g>
<g >
<title>zif_array_merge_recursive (30,303,030 samples, 0.05%)</title><rect x="520.0" y="1125" width="0.6" height="15.0" fill="rgb(228,35,47)" rx="2" ry="2" />
<text x="523.00" y="1135.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="967.1" y="869" width="0.2" height="15.0" fill="rgb(247,163,44)" rx="2" ry="2" />
<text x="970.08" y="879.5" ></text>
</g>
<g >
<title>_copy_from_iter_full (10,101,010 samples, 0.02%)</title><rect x="1146.5" y="1077" width="0.2" height="15.0" fill="rgb(218,27,5)" rx="2" ry="2" />
<text x="1149.46" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="944.0" y="997" width="0.4" height="15.0" fill="rgb(245,137,31)" rx="2" ry="2" />
<text x="946.96" y="1007.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="524.2" y="901" width="0.2" height="15.0" fill="rgb(207,55,46)" rx="2" ry="2" />
<text x="527.17" y="911.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="799.0" y="661" width="0.2" height="15.0" fill="rgb(219,198,6)" rx="2" ry="2" />
<text x="801.96" y="671.5" ></text>
</g>
<g >
<title>do_interface_implementation (20,202,020 samples, 0.04%)</title><rect x="687.1" y="981" width="0.4" height="15.0" fill="rgb(247,146,27)" rx="2" ry="2" />
<text x="690.08" y="991.5" ></text>
</g>
<g >
<title>sock_def_wakeup (10,101,010 samples, 0.02%)</title><rect x="967.1" y="805" width="0.2" height="15.0" fill="rgb(235,163,21)" rx="2" ry="2" />
<text x="970.08" y="815.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="672.5" y="933" width="0.2" height="15.0" fill="rgb(236,175,34)" rx="2" ry="2" />
<text x="675.50" y="943.5" ></text>
</g>
<g >
<title>net_rx_action (616,161,610 samples, 1.08%)</title><rect x="1151.5" y="837" width="12.7" height="15.0" fill="rgb(244,112,53)" rx="2" ry="2" />
<text x="1154.46" y="847.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="30.4" y="1013" width="0.2" height="15.0" fill="rgb(249,120,19)" rx="2" ry="2" />
<text x="33.42" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="901" width="0.2" height="15.0" fill="rgb(216,101,1)" rx="2" ry="2" />
<text x="1015.92" y="911.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="708.1" y="1061" width="0.2" height="15.0" fill="rgb(212,217,2)" rx="2" ry="2" />
<text x="711.12" y="1071.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="106.9" y="965" width="0.2" height="15.0" fill="rgb(253,69,53)" rx="2" ry="2" />
<text x="109.88" y="975.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (10,101,010 samples, 0.02%)</title><rect x="919.2" y="949" width="0.2" height="15.0" fill="rgb(240,166,44)" rx="2" ry="2" />
<text x="922.17" y="959.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="850.6" y="661" width="0.2" height="15.0" fill="rgb(244,21,34)" rx="2" ry="2" />
<text x="853.62" y="671.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="711.2" y="1109" width="0.3" height="15.0" fill="rgb(244,7,50)" rx="2" ry="2" />
<text x="714.25" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1093" width="0.2" height="15.0" fill="rgb(207,91,2)" rx="2" ry="2" />
<text x="26.96" y="1103.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_read_IS (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1109" width="0.2" height="15.0" fill="rgb(249,129,50)" rx="2" ry="2" />
<text x="693.00" y="1119.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="174.4" y="1061" width="0.2" height="15.0" fill="rgb(242,140,30)" rx="2" ry="2" />
<text x="177.38" y="1071.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="948.8" y="1045" width="0.4" height="15.0" fill="rgb(226,222,12)" rx="2" ry="2" />
<text x="951.75" y="1055.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="519.0" y="997" width="0.2" height="15.0" fill="rgb(249,17,45)" rx="2" ry="2" />
<text x="521.96" y="1007.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="689.0" y="997" width="0.2" height="15.0" fill="rgb(211,206,25)" rx="2" ry="2" />
<text x="691.96" y="1007.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1029" width="0.2" height="15.0" fill="rgb(205,69,16)" rx="2" ry="2" />
<text x="985.92" y="1039.5" ></text>
</g>
<g >
<title>__schedule (111,111,110 samples, 0.19%)</title><rect x="1112.1" y="1061" width="2.3" height="15.0" fill="rgb(232,17,19)" rx="2" ry="2" />
<text x="1115.08" y="1071.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1029" width="0.2" height="15.0" fill="rgb(219,45,29)" rx="2" ry="2" />
<text x="550.71" y="1039.5" ></text>
</g>
<g >
<title>access (30,303,030 samples, 0.05%)</title><rect x="797.1" y="917" width="0.6" height="15.0" fill="rgb(221,182,50)" rx="2" ry="2" />
<text x="800.08" y="927.5" ></text>
</g>
<g >
<title>_efree (40,404,040 samples, 0.07%)</title><rect x="1095.4" y="1077" width="0.8" height="15.0" fill="rgb(213,177,12)" rx="2" ry="2" />
<text x="1098.42" y="1087.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="686.7" y="869" width="0.2" height="15.0" fill="rgb(207,192,33)" rx="2" ry="2" />
<text x="689.67" y="879.5" ></text>
</g>
<g >
<title>__x64_sys_access (131,313,130 samples, 0.23%)</title><rect x="774.0" y="981" width="2.7" height="15.0" fill="rgb(247,47,6)" rx="2" ry="2" />
<text x="776.96" y="991.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="30.2" y="997" width="0.2" height="15.0" fill="rgb(245,103,41)" rx="2" ry="2" />
<text x="33.21" y="1007.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="881.2" y="709" width="0.3" height="15.0" fill="rgb(214,212,15)" rx="2" ry="2" />
<text x="884.25" y="719.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="796.5" y="965" width="0.2" height="15.0" fill="rgb(210,38,27)" rx="2" ry="2" />
<text x="799.46" y="975.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="389" width="0.2" height="15.0" fill="rgb(241,109,30)" rx="2" ry="2" />
<text x="1132.38" y="399.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1045" width="0.2" height="15.0" fill="rgb(254,157,6)" rx="2" ry="2" />
<text x="1083.83" y="1055.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="789.0" y="805" width="0.2" height="15.0" fill="rgb(228,165,42)" rx="2" ry="2" />
<text x="791.96" y="815.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1093" width="0.2" height="15.0" fill="rgb(237,114,23)" rx="2" ry="2" />
<text x="1118.21" y="1103.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="193.8" y="805" width="0.2" height="15.0" fill="rgb(253,44,25)" rx="2" ry="2" />
<text x="196.75" y="815.5" ></text>
</g>
<g >
<title>__slab_free (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1029" width="0.2" height="15.0" fill="rgb(221,9,23)" rx="2" ry="2" />
<text x="27.17" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="501.9" y="1029" width="0.2" height="15.0" fill="rgb(216,196,15)" rx="2" ry="2" />
<text x="504.88" y="1039.5" ></text>
</g>
<g >
<title>PHP_MD5Final (20,202,020 samples, 0.04%)</title><rect x="1048.5" y="1109" width="0.5" height="15.0" fill="rgb(236,139,2)" rx="2" ry="2" />
<text x="1051.54" y="1119.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="471.7" y="869" width="0.2" height="15.0" fill="rgb(248,14,20)" rx="2" ry="2" />
<text x="474.67" y="879.5" ></text>
</g>
<g >
<title>zif_json_decode (131,313,130 samples, 0.23%)</title><rect x="1042.7" y="1125" width="2.7" height="15.0" fill="rgb(205,127,48)" rx="2" ry="2" />
<text x="1045.71" y="1135.5" ></text>
</g>
<g >
<title>php_free_shutdown_functions (10,101,010 samples, 0.02%)</title><rect x="1078.1" y="1157" width="0.2" height="15.0" fill="rgb(213,197,13)" rx="2" ry="2" />
<text x="1081.12" y="1167.5" ></text>
</g>
<g >
<title>__vfs_read (20,202,020 samples, 0.04%)</title><rect x="207.3" y="1061" width="0.4" height="15.0" fill="rgb(233,1,31)" rx="2" ry="2" />
<text x="210.29" y="1071.5" ></text>
</g>
<g >
<title>_efree (50,505,050 samples, 0.09%)</title><rect x="1093.1" y="1093" width="1.1" height="15.0" fill="rgb(206,131,6)" rx="2" ry="2" />
<text x="1096.12" y="1103.5" ></text>
</g>
<g >
<title>zend_create_closure (20,202,020 samples, 0.04%)</title><rect x="470.8" y="1109" width="0.4" height="15.0" fill="rgb(236,31,1)" rx="2" ry="2" />
<text x="473.83" y="1119.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="503.1" y="1109" width="0.2" height="15.0" fill="rgb(224,52,47)" rx="2" ry="2" />
<text x="506.12" y="1119.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="531.5" y="1125" width="0.6" height="15.0" fill="rgb(222,160,10)" rx="2" ry="2" />
<text x="534.46" y="1135.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="343.5" y="1061" width="0.3" height="15.0" fill="rgb(243,3,22)" rx="2" ry="2" />
<text x="346.54" y="1071.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="687.7" y="885" width="0.2" height="15.0" fill="rgb(240,84,54)" rx="2" ry="2" />
<text x="690.71" y="895.5" ></text>
</g>
<g >
<title>get_acl (10,101,010 samples, 0.02%)</title><rect x="775.2" y="837" width="0.2" height="15.0" fill="rgb(228,161,24)" rx="2" ry="2" />
<text x="778.21" y="847.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="997" width="0.2" height="15.0" fill="rgb(221,190,47)" rx="2" ry="2" />
<text x="1150.29" y="1007.5" ></text>
</g>
<g >
<title>iowrite16 (60,606,060 samples, 0.11%)</title><rect x="1185.2" y="357" width="1.3" height="15.0" fill="rgb(221,111,54)" rx="2" ry="2" />
<text x="1188.21" y="367.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="480.8" y="933" width="0.2" height="15.0" fill="rgb(231,87,4)" rx="2" ry="2" />
<text x="483.83" y="943.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="682.1" y="597" width="0.2" height="15.0" fill="rgb(224,127,41)" rx="2" ry="2" />
<text x="685.08" y="607.5" ></text>
</g>
<g >
<title>auditd_test_task (20,202,020 samples, 0.04%)</title><rect x="434.0" y="1029" width="0.4" height="15.0" fill="rgb(249,54,11)" rx="2" ry="2" />
<text x="436.96" y="1039.5" ></text>
</g>
<g >
<title>sapi_cgi_register_variables (131,313,130 samples, 0.23%)</title><rect x="699.6" y="1013" width="2.7" height="15.0" fill="rgb(249,120,13)" rx="2" ry="2" />
<text x="702.58" y="1023.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="373" width="0.3" height="15.0" fill="rgb(239,184,34)" rx="2" ry="2" />
<text x="1134.25" y="383.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1189" width="0.2" height="15.0" fill="rgb(206,1,48)" rx="2" ry="2" />
<text x="1175.08" y="1199.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="905.0" y="981" width="0.2" height="15.0" fill="rgb(229,27,14)" rx="2" ry="2" />
<text x="908.00" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="283.8" y="885" width="0.2" height="15.0" fill="rgb(240,64,27)" rx="2" ry="2" />
<text x="286.75" y="895.5" ></text>
</g>
<g >
<title>execute_ex (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="885" width="1.5" height="15.0" fill="rgb(233,38,48)" rx="2" ry="2" />
<text x="1005.50" y="895.5" ></text>
</g>
<g >
<title>compile_filename (60,606,060 samples, 0.11%)</title><rect x="269.6" y="965" width="1.2" height="15.0" fill="rgb(251,40,1)" rx="2" ry="2" />
<text x="272.58" y="975.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="485" width="0.4" height="15.0" fill="rgb(241,59,52)" rx="2" ry="2" />
<text x="1132.58" y="495.5" ></text>
</g>
<g >
<title>zif_putenv (50,505,050 samples, 0.09%)</title><rect x="1056.0" y="1125" width="1.1" height="15.0" fill="rgb(207,25,46)" rx="2" ry="2" />
<text x="1059.04" y="1135.5" ></text>
</g>
<g >
<title>user_path_at_empty (90,909,090 samples, 0.16%)</title><rect x="1007.3" y="965" width="1.9" height="15.0" fill="rgb(221,182,22)" rx="2" ry="2" />
<text x="1010.29" y="975.5" ></text>
</g>
<g >
<title>_php_math_round (10,101,010 samples, 0.02%)</title><rect x="1057.5" y="1109" width="0.2" height="15.0" fill="rgb(241,35,8)" rx="2" ry="2" />
<text x="1060.50" y="1119.5" ></text>
</g>
<g >
<title>__ip_finish_output (101,010,100 samples, 0.18%)</title><rect x="1127.5" y="501" width="2.1" height="15.0" fill="rgb(245,189,9)" rx="2" ry="2" />
<text x="1130.50" y="511.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1125" width="0.2" height="15.0" fill="rgb(250,47,41)" rx="2" ry="2" />
<text x="1118.42" y="1135.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (212,121,210 samples, 0.37%)</title><rect x="1184.0" y="1093" width="4.3" height="15.0" fill="rgb(217,215,2)" rx="2" ry="2" />
<text x="1186.96" y="1103.5" ></text>
</g>
<g >
<title>spl_perform_autoload (30,303,030 samples, 0.05%)</title><rect x="767.3" y="981" width="0.6" height="15.0" fill="rgb(221,160,12)" rx="2" ry="2" />
<text x="770.29" y="991.5" ></text>
</g>
<g >
<title>__schedule (20,202,020 samples, 0.04%)</title><rect x="1176.7" y="1029" width="0.4" height="15.0" fill="rgb(254,183,21)" rx="2" ry="2" />
<text x="1179.67" y="1039.5" ></text>
</g>
<g >
<title>fcgi_hash_set (10,101,010 samples, 0.02%)</title><rect x="206.2" y="1125" width="0.3" height="15.0" fill="rgb(240,219,13)" rx="2" ry="2" />
<text x="209.25" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_verify_return_slow (10,101,010 samples, 0.02%)</title><rect x="345.2" y="1125" width="0.2" height="15.0" fill="rgb(248,48,38)" rx="2" ry="2" />
<text x="348.21" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="281.2" y="1125" width="0.3" height="15.0" fill="rgb(250,68,41)" rx="2" ry="2" />
<text x="284.25" y="1135.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="881.2" y="901" width="0.3" height="15.0" fill="rgb(240,226,29)" rx="2" ry="2" />
<text x="884.25" y="911.5" ></text>
</g>
<g >
<title>zif_strtolower (20,202,020 samples, 0.04%)</title><rect x="282.1" y="1125" width="0.4" height="15.0" fill="rgb(222,80,54)" rx="2" ry="2" />
<text x="285.08" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (30,303,030 samples, 0.05%)</title><rect x="976.9" y="1109" width="0.6" height="15.0" fill="rgb(222,154,34)" rx="2" ry="2" />
<text x="979.88" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (343,434,340 samples, 0.60%)</title><rect x="1175.4" y="1205" width="7.1" height="15.0" fill="rgb(225,95,44)" rx="2" ry="2" />
<text x="1178.42" y="1215.5" ></text>
</g>
<g >
<title>zend_sort (181,818,180 samples, 0.32%)</title><rect x="511.9" y="1077" width="3.7" height="15.0" fill="rgb(238,174,35)" rx="2" ry="2" />
<text x="514.88" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.09%)</title><rect x="926.2" y="869" width="1.1" height="15.0" fill="rgb(246,227,9)" rx="2" ry="2" />
<text x="929.25" y="879.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="678.3" y="821" width="0.2" height="15.0" fill="rgb(221,132,52)" rx="2" ry="2" />
<text x="681.33" y="831.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="1108.8" y="1109" width="0.4" height="15.0" fill="rgb(209,78,44)" rx="2" ry="2" />
<text x="1111.75" y="1119.5" ></text>
</g>
<g >
<title>__slab_alloc (10,101,010 samples, 0.02%)</title><rect x="1130.2" y="501" width="0.2" height="15.0" fill="rgb(219,102,27)" rx="2" ry="2" />
<text x="1133.21" y="511.5" ></text>
</g>
<g >
<title>zval_add_ref (10,101,010 samples, 0.02%)</title><rect x="520.4" y="1093" width="0.2" height="15.0" fill="rgb(243,5,29)" rx="2" ry="2" />
<text x="523.42" y="1103.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="850.6" y="405" width="0.2" height="15.0" fill="rgb(238,2,1)" rx="2" ry="2" />
<text x="853.62" y="415.5" ></text>
</g>
<g >
<title>cgi_php_import_environment_variables (60,606,060 samples, 0.11%)</title><rect x="699.6" y="997" width="1.2" height="15.0" fill="rgb(242,174,24)" rx="2" ry="2" />
<text x="702.58" y="1007.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="30.2" y="725" width="0.2" height="15.0" fill="rgb(240,80,31)" rx="2" ry="2" />
<text x="33.21" y="735.5" ></text>
</g>
<g >
<title>_zendi_try_convert_scalar_to_number.isra.0 (10,101,010 samples, 0.02%)</title><rect x="962.7" y="1109" width="0.2" height="15.0" fill="rgb(253,6,22)" rx="2" ry="2" />
<text x="965.71" y="1119.5" ></text>
</g>
<g >
<title>__poll (40,404,040 samples, 0.07%)</title><rect x="925.2" y="869" width="0.8" height="15.0" fill="rgb(241,15,40)" rx="2" ry="2" />
<text x="928.21" y="879.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="183.8" y="869" width="0.2" height="15.0" fill="rgb(228,29,32)" rx="2" ry="2" />
<text x="186.75" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="718.3" y="917" width="0.2" height="15.0" fill="rgb(211,194,50)" rx="2" ry="2" />
<text x="721.33" y="927.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="981" width="0.2" height="15.0" fill="rgb(234,174,19)" rx="2" ry="2" />
<text x="1170.08" y="991.5" ></text>
</g>
<g >
<title>generic_file_read_iter (20,202,020 samples, 0.04%)</title><rect x="946.5" y="901" width="0.4" height="15.0" fill="rgb(223,11,23)" rx="2" ry="2" />
<text x="949.46" y="911.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1093" width="0.2" height="15.0" fill="rgb(243,156,21)" rx="2" ry="2" />
<text x="985.92" y="1103.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="677.7" y="725" width="0.2" height="15.0" fill="rgb(219,1,47)" rx="2" ry="2" />
<text x="680.71" y="735.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="881.2" y="645" width="0.3" height="15.0" fill="rgb(215,175,50)" rx="2" ry="2" />
<text x="884.25" y="655.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="850.6" y="341" width="0.2" height="15.0" fill="rgb(231,199,6)" rx="2" ry="2" />
<text x="853.62" y="351.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="725" width="0.3" height="15.0" fill="rgb(223,33,10)" rx="2" ry="2" />
<text x="1134.25" y="735.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="677.7" y="677" width="0.2" height="15.0" fill="rgb(224,156,27)" rx="2" ry="2" />
<text x="680.71" y="687.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="933" width="0.3" height="15.0" fill="rgb(237,6,4)" rx="2" ry="2" />
<text x="1044.25" y="943.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="32.3" y="805" width="0.2" height="15.0" fill="rgb(211,135,34)" rx="2" ry="2" />
<text x="35.29" y="815.5" ></text>
</g>
<g >
<title>access (131,313,130 samples, 0.23%)</title><rect x="525.6" y="1125" width="2.7" height="15.0" fill="rgb(251,41,46)" rx="2" ry="2" />
<text x="528.62" y="1135.5" ></text>
</g>
<g >
<title>spl_perform_autoload (30,303,030 samples, 0.05%)</title><rect x="732.9" y="965" width="0.6" height="15.0" fill="rgb(226,52,34)" rx="2" ry="2" />
<text x="735.92" y="975.5" ></text>
</g>
<g >
<title>sk_destruct (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="917" width="0.3" height="15.0" fill="rgb(242,5,12)" rx="2" ry="2" />
<text x="1174.25" y="927.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="1056.9" y="1109" width="0.2" height="15.0" fill="rgb(229,216,25)" rx="2" ry="2" />
<text x="1059.88" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv (70,707,070 samples, 0.12%)</title><rect x="1025.2" y="581" width="1.5" height="15.0" fill="rgb(248,217,34)" rx="2" ry="2" />
<text x="1028.21" y="591.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (20,202,020 samples, 0.04%)</title><rect x="738.5" y="917" width="0.5" height="15.0" fill="rgb(227,68,21)" rx="2" ry="2" />
<text x="741.54" y="927.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="196.2" y="1061" width="0.3" height="15.0" fill="rgb(219,192,32)" rx="2" ry="2" />
<text x="199.25" y="1071.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (10,101,010 samples, 0.02%)</title><rect x="1108.3" y="1029" width="0.2" height="15.0" fill="rgb(214,180,5)" rx="2" ry="2" />
<text x="1111.33" y="1039.5" ></text>
</g>
<g >
<title>zif_mysqli_query (151,515,150 samples, 0.26%)</title><rect x="1051.5" y="1125" width="3.1" height="15.0" fill="rgb(206,147,14)" rx="2" ry="2" />
<text x="1054.46" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1093" width="0.3" height="15.0" fill="rgb(206,118,43)" rx="2" ry="2" />
<text x="1174.25" y="1103.5" ></text>
</g>
<g >
<title>spl_perform_autoload (727,272,720 samples, 1.27%)</title><rect x="904.6" y="1093" width="15.0" height="15.0" fill="rgb(225,73,11)" rx="2" ry="2" />
<text x="907.58" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HANDLER (373,737,370 samples, 0.65%)</title><rect x="696.7" y="1125" width="7.7" height="15.0" fill="rgb(242,223,3)" rx="2" ry="2" />
<text x="699.67" y="1135.5" ></text>
</g>
<g >
<title>do_lock_file_wait (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1045" width="0.2" height="15.0" fill="rgb(205,154,34)" rx="2" ry="2" />
<text x="1105.08" y="1055.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="997" width="0.2" height="15.0" fill="rgb(237,130,16)" rx="2" ry="2" />
<text x="1099.04" y="1007.5" ></text>
</g>
<g >
<title>zend_init_dynamic_call_string (141,414,140 samples, 0.25%)</title><rect x="712.1" y="1109" width="2.9" height="15.0" fill="rgb(247,15,47)" rx="2" ry="2" />
<text x="715.08" y="1119.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="211.0" y="1077" width="0.5" height="15.0" fill="rgb(229,154,42)" rx="2" ry="2" />
<text x="214.04" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="805.2" y="757" width="0.2" height="15.0" fill="rgb(235,71,29)" rx="2" ry="2" />
<text x="808.21" y="767.5" ></text>
</g>
<g >
<title>TRACE-377$Composer\Autoload\ClassLoader::loadClass$427 (10,101,010 samples, 0.02%)</title><rect x="779.8" y="1045" width="0.2" height="15.0" fill="rgb(236,49,4)" rx="2" ry="2" />
<text x="782.79" y="1055.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (10,101,010 samples, 0.02%)</title><rect x="941.9" y="677" width="0.2" height="15.0" fill="rgb(237,26,3)" rx="2" ry="2" />
<text x="944.88" y="687.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="453" width="0.2" height="15.0" fill="rgb(232,157,50)" rx="2" ry="2" />
<text x="1132.38" y="463.5" ></text>
</g>
<g >
<title>__schedule (30,303,030 samples, 0.05%)</title><rect x="214.8" y="1013" width="0.6" height="15.0" fill="rgb(208,113,19)" rx="2" ry="2" />
<text x="217.79" y="1023.5" ></text>
</g>
<g >
<title>get_acl (10,101,010 samples, 0.02%)</title><rect x="910.6" y="853" width="0.2" height="15.0" fill="rgb(234,80,1)" rx="2" ry="2" />
<text x="913.62" y="863.5" ></text>
</g>
<g >
<title>access (30,303,030 samples, 0.05%)</title><rect x="739.6" y="901" width="0.6" height="15.0" fill="rgb(251,114,16)" rx="2" ry="2" />
<text x="742.58" y="911.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="1093" width="0.2" height="15.0" fill="rgb(225,197,3)" rx="2" ry="2" />
<text x="1083.83" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="353.1" y="1125" width="0.2" height="15.0" fill="rgb(244,27,5)" rx="2" ry="2" />
<text x="356.12" y="1135.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="502.7" y="1109" width="0.2" height="15.0" fill="rgb(239,5,5)" rx="2" ry="2" />
<text x="505.71" y="1119.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1109" width="0.2" height="15.0" fill="rgb(242,186,30)" rx="2" ry="2" />
<text x="468.83" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="799.0" y="821" width="0.2" height="15.0" fill="rgb(234,58,19)" rx="2" ry="2" />
<text x="801.96" y="831.5" ></text>
</g>
<g >
<title>TRACE-201$Wikimedia\Services\ServiceContainer::getService$416 (30,303,030 samples, 0.05%)</title><rect x="344.0" y="1141" width="0.6" height="15.0" fill="rgb(252,105,42)" rx="2" ry="2" />
<text x="346.96" y="1151.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="789.0" y="837" width="0.2" height="15.0" fill="rgb(243,224,17)" rx="2" ry="2" />
<text x="791.96" y="847.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="518.8" y="1029" width="0.2" height="15.0" fill="rgb(249,48,42)" rx="2" ry="2" />
<text x="521.75" y="1039.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="692.1" y="1061" width="0.2" height="15.0" fill="rgb(241,197,10)" rx="2" ry="2" />
<text x="695.08" y="1071.5" ></text>
</g>
<g >
<title>php_string_toupper (10,101,010 samples, 0.02%)</title><rect x="1059.4" y="1109" width="0.2" height="15.0" fill="rgb(242,53,12)" rx="2" ry="2" />
<text x="1062.38" y="1119.5" ></text>
</g>
<g >
<title>spl_perform_autoload (90,909,090 samples, 0.16%)</title><rect x="500.2" y="1077" width="1.9" height="15.0" fill="rgb(232,156,0)" rx="2" ry="2" />
<text x="503.21" y="1087.5" ></text>
</g>
<g >
<title>ip_route_output_flow (10,101,010 samples, 0.02%)</title><rect x="1124.8" y="1077" width="0.2" height="15.0" fill="rgb(240,189,17)" rx="2" ry="2" />
<text x="1127.79" y="1087.5" ></text>
</g>
<g >
<title>path_get (40,404,040 samples, 0.07%)</title><rect x="418.5" y="965" width="0.9" height="15.0" fill="rgb(244,162,40)" rx="2" ry="2" />
<text x="421.54" y="975.5" ></text>
</g>
<g >
<title>persistent_compile_file (90,909,090 samples, 0.16%)</title><rect x="1011.2" y="997" width="1.9" height="15.0" fill="rgb(252,222,6)" rx="2" ry="2" />
<text x="1014.25" y="1007.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="872.7" y="933" width="0.2" height="15.0" fill="rgb(209,94,46)" rx="2" ry="2" />
<text x="875.71" y="943.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="850.6" y="693" width="0.2" height="15.0" fill="rgb(247,178,6)" rx="2" ry="2" />
<text x="853.62" y="703.5" ></text>
</g>
<g >
<title>zend_hash_extend (10,101,010 samples, 0.02%)</title><rect x="872.9" y="981" width="0.2" height="15.0" fill="rgb(206,32,51)" rx="2" ry="2" />
<text x="875.92" y="991.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="482.5" y="1093" width="0.2" height="15.0" fill="rgb(235,224,2)" rx="2" ry="2" />
<text x="485.50" y="1103.5" ></text>
</g>
<g >
<title>TRACE-223$Wikimedia\Services\ServiceContainer::createService$445 (30,303,030 samples, 0.05%)</title><rect x="448.8" y="1141" width="0.6" height="15.0" fill="rgb(253,156,16)" rx="2" ry="2" />
<text x="451.75" y="1151.5" ></text>
</g>
<g >
<title>zif_register_shutdown_function (10,101,010 samples, 0.02%)</title><rect x="1057.1" y="1125" width="0.2" height="15.0" fill="rgb(233,150,42)" rx="2" ry="2" />
<text x="1060.08" y="1135.5" ></text>
</g>
<g >
<title>vfs_read (20,202,020 samples, 0.04%)</title><rect x="946.5" y="965" width="0.4" height="15.0" fill="rgb(247,62,26)" rx="2" ry="2" />
<text x="949.46" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="799.0" y="837" width="0.2" height="15.0" fill="rgb(230,75,38)" rx="2" ry="2" />
<text x="801.96" y="847.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="1059.8" y="1093" width="0.2" height="15.0" fill="rgb(220,25,4)" rx="2" ry="2" />
<text x="1062.79" y="1103.5" ></text>
</g>
<g >
<title>add_function (10,101,010 samples, 0.02%)</title><rect x="644.4" y="1109" width="0.2" height="15.0" fill="rgb(205,142,7)" rx="2" ry="2" />
<text x="647.38" y="1119.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="682.1" y="709" width="0.2" height="15.0" fill="rgb(253,166,25)" rx="2" ry="2" />
<text x="685.08" y="719.5" ></text>
</g>
<g >
<title>do_bind_class (3,212,121,180 samples, 5.61%)</title><rect x="807.3" y="1013" width="66.2" height="15.0" fill="rgb(223,80,3)" rx="2" ry="2" />
<text x="810.29" y="1023.5" >do_bind..</text>
</g>
<g >
<title>prepare_creds (10,101,010 samples, 0.02%)</title><rect x="1009.2" y="981" width="0.2" height="15.0" fill="rgb(230,127,44)" rx="2" ry="2" />
<text x="1012.17" y="991.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (30,303,030 samples, 0.05%)</title><rect x="533.5" y="901" width="0.7" height="15.0" fill="rgb(235,16,27)" rx="2" ry="2" />
<text x="536.54" y="911.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="821" width="0.3" height="15.0" fill="rgb(217,136,16)" rx="2" ry="2" />
<text x="1134.25" y="831.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.46 (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="805" width="0.2" height="15.0" fill="rgb(219,215,29)" rx="2" ry="2" />
<text x="1095.08" y="815.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="885" width="0.2" height="15.0" fill="rgb(218,69,30)" rx="2" ry="2" />
<text x="1095.08" y="895.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="789.0" y="709" width="0.2" height="15.0" fill="rgb(239,123,16)" rx="2" ry="2" />
<text x="791.96" y="719.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (20,202,020 samples, 0.04%)</title><rect x="301.0" y="965" width="0.5" height="15.0" fill="rgb(241,113,32)" rx="2" ry="2" />
<text x="304.04" y="975.5" ></text>
</g>
<g >
<title>ZEND_COUNT_SPEC_CV_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="549.6" y="1141" width="0.2" height="15.0" fill="rgb(215,47,8)" rx="2" ry="2" />
<text x="552.58" y="1151.5" ></text>
</g>
<g >
<title>sch_direct_xmit (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="117" width="0.4" height="15.0" fill="rgb(219,214,33)" rx="2" ry="2" />
<text x="1092.58" y="127.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1141.7" y="1125" width="0.2" height="15.0" fill="rgb(219,26,37)" rx="2" ry="2" />
<text x="1144.67" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="629" width="1.7" height="15.0" fill="rgb(237,113,2)" rx="2" ry="2" />
<text x="1028.00" y="639.5" ></text>
</g>
<g >
<title>epoll_wait (171,717,170 samples, 0.30%)</title><rect x="208.1" y="1141" width="3.6" height="15.0" fill="rgb(252,77,46)" rx="2" ry="2" />
<text x="211.12" y="1151.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="349.6" y="1045" width="0.2" height="15.0" fill="rgb(249,187,9)" rx="2" ry="2" />
<text x="352.58" y="1055.5" ></text>
</g>
<g >
<title>netif_receive_skb (494,949,490 samples, 0.87%)</title><rect x="1152.1" y="645" width="10.2" height="15.0" fill="rgb(248,18,8)" rx="2" ry="2" />
<text x="1155.08" y="655.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="472.5" y="1109" width="0.2" height="15.0" fill="rgb(221,202,31)" rx="2" ry="2" />
<text x="475.50" y="1119.5" ></text>
</g>
<g >
<title>eth_type_trans (10,101,010 samples, 0.02%)</title><rect x="782.3" y="837" width="0.2" height="15.0" fill="rgb(231,217,5)" rx="2" ry="2" />
<text x="785.29" y="847.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="460.8" y="1109" width="0.2" height="15.0" fill="rgb(230,107,48)" rx="2" ry="2" />
<text x="463.83" y="1119.5" ></text>
</g>
<g >
<title>ip_finish_output2 (161,616,160 samples, 0.28%)</title><rect x="1184.6" y="949" width="3.3" height="15.0" fill="rgb(231,145,33)" rx="2" ry="2" />
<text x="1187.58" y="959.5" ></text>
</g>
<g >
<title>ZEND_UNSET_DIM_SPEC_CV_CONST_HANDLER (50,505,050 samples, 0.09%)</title><rect x="249.6" y="1125" width="1.0" height="15.0" fill="rgb(252,118,48)" rx="2" ry="2" />
<text x="252.58" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="967.1" y="917" width="0.2" height="15.0" fill="rgb(222,219,49)" rx="2" ry="2" />
<text x="970.08" y="927.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="997" width="0.2" height="15.0" fill="rgb(229,121,15)" rx="2" ry="2" />
<text x="1086.33" y="1007.5" ></text>
</g>
<g >
<title>TRACE-466$Wikimedia\Rdbms\GeneralizedSql::generalizeSQL$61 (30,303,030 samples, 0.05%)</title><rect x="529.2" y="1141" width="0.6" height="15.0" fill="rgb(213,73,16)" rx="2" ry="2" />
<text x="532.17" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1077.3" y="1061" width="0.2" height="15.0" fill="rgb(231,119,18)" rx="2" ry="2" />
<text x="1080.29" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="1045" width="0.2" height="15.0" fill="rgb(209,16,23)" rx="2" ry="2" />
<text x="1090.50" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_merge (737,373,730 samples, 1.29%)</title><rect x="629.2" y="1093" width="15.2" height="15.0" fill="rgb(236,116,35)" rx="2" ry="2" />
<text x="632.17" y="1103.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="689.0" y="917" width="0.2" height="15.0" fill="rgb(243,185,39)" rx="2" ry="2" />
<text x="691.96" y="927.5" ></text>
</g>
<g >
<title>ret_from_intr (20,202,020 samples, 0.04%)</title><rect x="539.4" y="1125" width="0.4" height="15.0" fill="rgb(235,11,21)" rx="2" ry="2" />
<text x="542.38" y="1135.5" ></text>
</g>
<g >
<title>zend_do_link_class (171,717,170 samples, 0.30%)</title><rect x="1015.6" y="1013" width="3.6" height="15.0" fill="rgb(215,86,12)" rx="2" ry="2" />
<text x="1018.62" y="1023.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="885" width="0.2" height="15.0" fill="rgb(235,46,10)" rx="2" ry="2" />
<text x="1022.79" y="895.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="1040.6" y="1109" width="0.2" height="15.0" fill="rgb(251,222,26)" rx="2" ry="2" />
<text x="1043.62" y="1119.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (10,101,010 samples, 0.02%)</title><rect x="547.7" y="949" width="0.2" height="15.0" fill="rgb(231,163,53)" rx="2" ry="2" />
<text x="550.71" y="959.5" ></text>
</g>
<g >
<title>zend_fcall_info_argn (10,101,010 samples, 0.02%)</title><rect x="1054.8" y="1061" width="0.2" height="15.0" fill="rgb(253,31,51)" rx="2" ry="2" />
<text x="1057.79" y="1071.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1029" width="0.3" height="15.0" fill="rgb(213,112,42)" rx="2" ry="2" />
<text x="1174.25" y="1039.5" ></text>
</g>
<g >
<title>zend_alter_ini_entry_ex (10,101,010 samples, 0.02%)</title><rect x="1040.2" y="1093" width="0.2" height="15.0" fill="rgb(236,191,29)" rx="2" ry="2" />
<text x="1043.21" y="1103.5" ></text>
</g>
<g >
<title>php_zlib_alloc (10,101,010 samples, 0.02%)</title><rect x="1140.0" y="1205" width="0.2" height="15.0" fill="rgb(233,1,17)" rx="2" ry="2" />
<text x="1143.00" y="1215.5" ></text>
</g>
<g >
<title>TRACE-391$MediumSpecificBagOStuff::trackDuplicateKeys$132 (30,303,030 samples, 0.05%)</title><rect x="502.7" y="1141" width="0.6" height="15.0" fill="rgb(248,27,18)" rx="2" ry="2" />
<text x="505.71" y="1151.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="498.3" y="1093" width="0.2" height="15.0" fill="rgb(239,88,8)" rx="2" ry="2" />
<text x="501.33" y="1103.5" ></text>
</g>
<g >
<title>spl_perform_autoload (101,010,100 samples, 0.18%)</title><rect x="920.8" y="1093" width="2.1" height="15.0" fill="rgb(210,146,41)" rx="2" ry="2" />
<text x="923.83" y="1103.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="443.5" y="869" width="0.3" height="15.0" fill="rgb(210,31,54)" rx="2" ry="2" />
<text x="446.54" y="879.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="199.0" y="1093" width="0.2" height="15.0" fill="rgb(213,76,17)" rx="2" ry="2" />
<text x="201.96" y="1103.5" ></text>
</g>
<g >
<title>zend_std_get_method (10,101,010 samples, 0.02%)</title><rect x="1087.9" y="1061" width="0.2" height="15.0" fill="rgb(226,16,27)" rx="2" ry="2" />
<text x="1090.92" y="1071.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1045" width="0.2" height="15.0" fill="rgb(221,162,41)" rx="2" ry="2" />
<text x="1142.17" y="1055.5" ></text>
</g>
<g >
<title>cap_inode_getsecurity (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="965" width="0.2" height="15.0" fill="rgb(219,63,20)" rx="2" ry="2" />
<text x="1124.67" y="975.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1061" width="0.4" height="15.0" fill="rgb(212,70,17)" rx="2" ry="2" />
<text x="1001.75" y="1071.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="682.1" y="885" width="0.2" height="15.0" fill="rgb(254,42,54)" rx="2" ry="2" />
<text x="685.08" y="895.5" ></text>
</g>
<g >
<title>zend_detach_symbol_table (80,808,080 samples, 0.14%)</title><rect x="973.8" y="1125" width="1.6" height="15.0" fill="rgb(254,114,38)" rx="2" ry="2" />
<text x="976.75" y="1135.5" ></text>
</g>
<g >
<title>follow_managed (10,101,010 samples, 0.02%)</title><rect x="398.1" y="933" width="0.2" height="15.0" fill="rgb(223,39,21)" rx="2" ry="2" />
<text x="401.12" y="943.5" ></text>
</g>
<g >
<title>syscall_trace_enter (20,202,020 samples, 0.04%)</title><rect x="726.9" y="981" width="0.4" height="15.0" fill="rgb(231,217,47)" rx="2" ry="2" />
<text x="729.88" y="991.5" ></text>
</g>
<g >
<title>spl_perform_autoload (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1077" width="1.2" height="15.0" fill="rgb(210,40,22)" rx="2" ry="2" />
<text x="526.75" y="1087.5" ></text>
</g>
<g >
<title>TRACE-138$MediumSpecificBagOStuff::set$178 (10,101,010 samples, 0.02%)</title><rect x="246.5" y="1141" width="0.2" height="15.0" fill="rgb(212,187,17)" rx="2" ry="2" />
<text x="249.46" y="1151.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (171,717,170 samples, 0.30%)</title><rect x="734.2" y="965" width="3.5" height="15.0" fill="rgb(207,13,35)" rx="2" ry="2" />
<text x="737.17" y="975.5" ></text>
</g>
<g >
<title>php_array_key_compare (40,404,040 samples, 0.07%)</title><rect x="511.0" y="1077" width="0.9" height="15.0" fill="rgb(228,22,10)" rx="2" ry="2" />
<text x="514.04" y="1087.5" ></text>
</g>
<g >
<title>__audit_getname (80,808,080 samples, 0.14%)</title><rect x="417.7" y="981" width="1.7" height="15.0" fill="rgb(242,151,31)" rx="2" ry="2" />
<text x="420.71" y="991.5" ></text>
</g>
<g >
<title>execute_ex (161,616,160 samples, 0.28%)</title><rect x="915.8" y="1061" width="3.4" height="15.0" fill="rgb(215,45,51)" rx="2" ry="2" />
<text x="918.83" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="946.9" y="917" width="0.2" height="15.0" fill="rgb(241,113,29)" rx="2" ry="2" />
<text x="949.88" y="927.5" ></text>
</g>
<g >
<title>terminate_walk (10,101,010 samples, 0.02%)</title><rect x="411.0" y="965" width="0.2" height="15.0" fill="rgb(213,189,53)" rx="2" ry="2" />
<text x="414.04" y="975.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="1187.7" y="901" width="0.2" height="15.0" fill="rgb(253,102,32)" rx="2" ry="2" />
<text x="1190.71" y="911.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="1087.7" y="1029" width="0.2" height="15.0" fill="rgb(206,118,28)" rx="2" ry="2" />
<text x="1090.71" y="1039.5" ></text>
</g>
<g >
<title>accel_new_interned_string_for_php (10,101,010 samples, 0.02%)</title><rect x="676.7" y="965" width="0.2" height="15.0" fill="rgb(252,28,49)" rx="2" ry="2" />
<text x="679.67" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="853" width="0.2" height="15.0" fill="rgb(207,184,21)" rx="2" ry="2" />
<text x="1010.50" y="863.5" ></text>
</g>
<g >
<title>zend_hash_add (101,010,100 samples, 0.18%)</title><rect x="652.3" y="1093" width="2.1" height="15.0" fill="rgb(230,204,53)" rx="2" ry="2" />
<text x="655.29" y="1103.5" ></text>
</g>
<g >
<title>user_shutdown_function_dtor (10,101,010 samples, 0.02%)</title><rect x="1078.1" y="1141" width="0.2" height="15.0" fill="rgb(222,94,5)" rx="2" ry="2" />
<text x="1081.12" y="1151.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="689.0" y="869" width="0.2" height="15.0" fill="rgb(209,49,21)" rx="2" ry="2" />
<text x="691.96" y="879.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_VAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="546.9" y="1141" width="0.4" height="15.0" fill="rgb(252,82,22)" rx="2" ry="2" />
<text x="549.88" y="1151.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="900.2" y="997" width="0.2" height="15.0" fill="rgb(218,219,52)" rx="2" ry="2" />
<text x="903.21" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="720.2" y="1093" width="0.2" height="15.0" fill="rgb(228,184,33)" rx="2" ry="2" />
<text x="723.21" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="613" width="1.7" height="15.0" fill="rgb(243,142,48)" rx="2" ry="2" />
<text x="1028.00" y="623.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="684.6" y="821" width="0.2" height="15.0" fill="rgb(254,77,31)" rx="2" ry="2" />
<text x="687.58" y="831.5" ></text>
</g>
<g >
<title>TRACE-156$Wikimedia\ObjectFactory\ObjectFactory::createObject$148 (131,313,130 samples, 0.23%)</title><rect x="282.7" y="1141" width="2.7" height="15.0" fill="rgb(233,9,28)" rx="2" ry="2" />
<text x="285.71" y="1151.5" ></text>
</g>
<g >
<title>tcp_write_xmit (111,111,110 samples, 0.19%)</title><rect x="1024.4" y="853" width="2.3" height="15.0" fill="rgb(216,209,53)" rx="2" ry="2" />
<text x="1027.38" y="863.5" ></text>
</g>
<g >
<title>php_openssl_sockop_io (10,101,010 samples, 0.02%)</title><rect x="1051.9" y="997" width="0.2" height="15.0" fill="rgb(206,195,50)" rx="2" ry="2" />
<text x="1054.88" y="1007.5" ></text>
</g>
<g >
<title>zend_do_delayed_early_binding (30,303,030 samples, 0.05%)</title><rect x="806.2" y="837" width="0.7" height="15.0" fill="rgb(216,17,30)" rx="2" ry="2" />
<text x="809.25" y="847.5" ></text>
</g>
<g >
<title>follow_managed (10,101,010 samples, 0.02%)</title><rect x="1008.8" y="869" width="0.2" height="15.0" fill="rgb(241,104,47)" rx="2" ry="2" />
<text x="1011.75" y="879.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="800.0" y="757" width="0.4" height="15.0" fill="rgb(232,106,34)" rx="2" ry="2" />
<text x="803.00" y="767.5" ></text>
</g>
<g >
<title>TRACE-423$RequestContext::getMain$486 (20,202,020 samples, 0.04%)</title><rect x="517.1" y="1141" width="0.4" height="15.0" fill="rgb(217,141,37)" rx="2" ry="2" />
<text x="520.08" y="1151.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="797.1" y="773" width="0.2" height="15.0" fill="rgb(224,48,46)" rx="2" ry="2" />
<text x="800.08" y="783.5" ></text>
</g>
<g >
<title>nf_conntrack_tuple_taken (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="357" width="0.4" height="15.0" fill="rgb(247,21,53)" rx="2" ry="2" />
<text x="1132.58" y="367.5" ></text>
</g>
<g >
<title>ovl_override_creds (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="741" width="0.2" height="15.0" fill="rgb(224,116,26)" rx="2" ry="2" />
<text x="1021.96" y="751.5" ></text>
</g>
<g >
<title>__do_page_fault (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1141" width="0.2" height="15.0" fill="rgb(232,144,51)" rx="2" ry="2" />
<text x="33.00" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_index_find (80,808,080 samples, 0.14%)</title><rect x="1064.6" y="1141" width="1.6" height="15.0" fill="rgb(229,133,5)" rx="2" ry="2" />
<text x="1067.58" y="1151.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (60,606,060 samples, 0.11%)</title><rect x="269.6" y="997" width="1.2" height="15.0" fill="rgb(250,13,54)" rx="2" ry="2" />
<text x="272.58" y="1007.5" ></text>
</g>
<g >
<title>TRACE-337$Wikimedia\Rdbms\LoadBalancer::__construct$211 (40,404,040 samples, 0.07%)</title><rect x="491.9" y="1141" width="0.8" height="15.0" fill="rgb(233,3,24)" rx="2" ry="2" />
<text x="494.88" y="1151.5" ></text>
</g>
<g >
<title>filemap_map_pages (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1013" width="0.2" height="15.0" fill="rgb(227,211,45)" rx="2" ry="2" />
<text x="1142.17" y="1023.5" ></text>
</g>
<g >
<title>__fget (10,101,010 samples, 0.02%)</title><rect x="935.2" y="805" width="0.2" height="15.0" fill="rgb(213,112,43)" rx="2" ry="2" />
<text x="938.21" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="207.1" y="1141" width="0.6" height="15.0" fill="rgb(223,100,52)" rx="2" ry="2" />
<text x="210.08" y="1151.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="443.3" y="1013" width="0.2" height="15.0" fill="rgb(216,143,18)" rx="2" ry="2" />
<text x="446.33" y="1023.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1077" width="0.2" height="15.0" fill="rgb(243,93,10)" rx="2" ry="2" />
<text x="468.83" y="1087.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="32.3" y="693" width="0.2" height="15.0" fill="rgb(249,136,7)" rx="2" ry="2" />
<text x="35.29" y="703.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="805.6" y="789" width="0.2" height="15.0" fill="rgb(227,183,1)" rx="2" ry="2" />
<text x="808.62" y="799.5" ></text>
</g>
<g >
<title>__legitimize_mnt (30,303,030 samples, 0.05%)</title><rect x="410.0" y="869" width="0.6" height="15.0" fill="rgb(215,205,7)" rx="2" ry="2" />
<text x="413.00" y="879.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="205.6" y="949" width="0.2" height="15.0" fill="rgb(233,210,40)" rx="2" ry="2" />
<text x="208.62" y="959.5" ></text>
</g>
<g >
<title>__x64_sys_setsockopt (40,404,040 samples, 0.07%)</title><rect x="1140.8" y="1157" width="0.9" height="15.0" fill="rgb(249,14,30)" rx="2" ry="2" />
<text x="1143.83" y="1167.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1077" width="0.4" height="15.0" fill="rgb(211,17,0)" rx="2" ry="2" />
<text x="33.21" y="1087.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="390.2" y="885" width="0.2" height="15.0" fill="rgb(223,157,29)" rx="2" ry="2" />
<text x="393.21" y="895.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (10,101,010 samples, 0.02%)</title><rect x="518.8" y="1093" width="0.2" height="15.0" fill="rgb(235,92,29)" rx="2" ry="2" />
<text x="521.75" y="1103.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (20,202,020 samples, 0.04%)</title><rect x="833.5" y="917" width="0.5" height="15.0" fill="rgb(208,223,0)" rx="2" ry="2" />
<text x="836.54" y="927.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="535.2" y="949" width="0.2" height="15.0" fill="rgb(208,103,43)" rx="2" ry="2" />
<text x="538.21" y="959.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="837" width="0.2" height="15.0" fill="rgb(254,71,23)" rx="2" ry="2" />
<text x="1170.08" y="847.5" ></text>
</g>
<g >
<title>timelib_unixtime2gmt (10,101,010 samples, 0.02%)</title><rect x="1021.7" y="1093" width="0.2" height="15.0" fill="rgb(206,49,27)" rx="2" ry="2" />
<text x="1024.67" y="1103.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="535.2" y="965" width="0.2" height="15.0" fill="rgb(235,57,28)" rx="2" ry="2" />
<text x="538.21" y="975.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1063.3" y="1061" width="0.2" height="15.0" fill="rgb(232,187,30)" rx="2" ry="2" />
<text x="1066.33" y="1071.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (20,202,020 samples, 0.04%)</title><rect x="743.8" y="837" width="0.4" height="15.0" fill="rgb(217,211,4)" rx="2" ry="2" />
<text x="746.75" y="847.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="750.8" y="1093" width="0.2" height="15.0" fill="rgb(214,66,46)" rx="2" ry="2" />
<text x="753.83" y="1103.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="965" width="0.2" height="15.0" fill="rgb(207,13,16)" rx="2" ry="2" />
<text x="1171.12" y="975.5" ></text>
</g>
<g >
<title>blk_done_softirq (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1045" width="0.3" height="15.0" fill="rgb(226,116,37)" rx="2" ry="2" />
<text x="699.25" y="1055.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="965" width="0.3" height="15.0" fill="rgb(216,49,53)" rx="2" ry="2" />
<text x="1134.25" y="975.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="1187.9" y="965" width="0.2" height="15.0" fill="rgb(250,177,5)" rx="2" ry="2" />
<text x="1190.92" y="975.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (30,303,030 samples, 0.05%)</title><rect x="1004.6" y="1061" width="0.6" height="15.0" fill="rgb(236,31,37)" rx="2" ry="2" />
<text x="1007.58" y="1071.5" ></text>
</g>
<g >
<title>audit_copy_inode (10,101,010 samples, 0.02%)</title><rect x="1135.6" y="1077" width="0.2" height="15.0" fill="rgb(249,148,4)" rx="2" ry="2" />
<text x="1138.62" y="1087.5" ></text>
</g>
<g >
<title>ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="555.8" y="1141" width="0.2" height="15.0" fill="rgb(207,86,32)" rx="2" ry="2" />
<text x="558.83" y="1151.5" ></text>
</g>
<g >
<title>zif_is_callable (10,101,010 samples, 0.02%)</title><rect x="285.2" y="1125" width="0.2" height="15.0" fill="rgb(206,217,2)" rx="2" ry="2" />
<text x="288.21" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_W_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="695.2" y="1125" width="0.2" height="15.0" fill="rgb(228,59,8)" rx="2" ry="2" />
<text x="698.21" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="873.8" y="1013" width="0.2" height="15.0" fill="rgb(252,127,38)" rx="2" ry="2" />
<text x="876.75" y="1023.5" ></text>
</g>
<g >
<title>ip_forward (70,707,070 samples, 0.12%)</title><rect x="939.4" y="277" width="1.4" height="15.0" fill="rgb(249,156,38)" rx="2" ry="2" />
<text x="942.38" y="287.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="753.5" y="997" width="0.5" height="15.0" fill="rgb(227,210,36)" rx="2" ry="2" />
<text x="756.54" y="1007.5" ></text>
</g>
<g >
<title>_emalloc (30,303,030 samples, 0.05%)</title><rect x="659.0" y="1109" width="0.6" height="15.0" fill="rgb(209,33,46)" rx="2" ry="2" />
<text x="661.96" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.04%)</title><rect x="1086.0" y="1013" width="0.5" height="15.0" fill="rgb(246,73,12)" rx="2" ry="2" />
<text x="1089.04" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="1189.4" y="1205" width="0.6" height="15.0" fill="rgb(236,112,13)" rx="2" ry="2" />
<text x="1192.38" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="949.4" y="1061" width="0.2" height="15.0" fill="rgb(250,27,18)" rx="2" ry="2" />
<text x="952.38" y="1071.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1077" width="0.2" height="15.0" fill="rgb(215,133,15)" rx="2" ry="2" />
<text x="521.96" y="1087.5" ></text>
</g>
<g >
<title>TRACE-324$Fandom\Includes\Logging\FandomLoggingSpi::getLogger$74 (20,202,020 samples, 0.04%)</title><rect x="489.6" y="1141" width="0.4" height="15.0" fill="rgb(233,202,49)" rx="2" ry="2" />
<text x="492.58" y="1151.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="905.0" y="869" width="0.2" height="15.0" fill="rgb(218,16,35)" rx="2" ry="2" />
<text x="908.00" y="879.5" ></text>
</g>
<g >
<title>tcp_parse_md5sig_option (10,101,010 samples, 0.02%)</title><rect x="390.2" y="661" width="0.2" height="15.0" fill="rgb(233,66,31)" rx="2" ry="2" />
<text x="393.21" y="671.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (50,505,050 samples, 0.09%)</title><rect x="1013.5" y="1061" width="1.1" height="15.0" fill="rgb(240,36,28)" rx="2" ry="2" />
<text x="1016.54" y="1071.5" ></text>
</g>
<g >
<title>tcp_new (10,101,010 samples, 0.02%)</title><rect x="941.2" y="405" width="0.3" height="15.0" fill="rgb(240,26,37)" rx="2" ry="2" />
<text x="944.25" y="415.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="534.8" y="757" width="0.2" height="15.0" fill="rgb(209,121,42)" rx="2" ry="2" />
<text x="537.79" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_access (10,101,010 samples, 0.02%)</title><rect x="742.7" y="725" width="0.2" height="15.0" fill="rgb(217,158,44)" rx="2" ry="2" />
<text x="745.71" y="735.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (1,727,272,710 samples, 3.02%)</title><rect x="72.3" y="1093" width="35.6" height="15.0" fill="rgb(234,2,4)" rx="2" ry="2" />
<text x="75.29" y="1103.5" >acc..</text>
</g>
<g >
<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="837" width="0.2" height="15.0" fill="rgb(227,155,21)" rx="2" ry="2" />
<text x="1171.12" y="847.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (868,686,860 samples, 1.52%)</title><rect x="1148.3" y="1029" width="17.9" height="15.0" fill="rgb(205,22,25)" rx="2" ry="2" />
<text x="1151.33" y="1039.5" ></text>
</g>
<g >
<title>zend_sort_5 (10,101,010 samples, 0.02%)</title><rect x="515.2" y="1029" width="0.2" height="15.0" fill="rgb(237,24,34)" rx="2" ry="2" />
<text x="518.21" y="1039.5" ></text>
</g>
<g >
<title>ksys_chdir (20,202,020 samples, 0.04%)</title><rect x="205.4" y="1109" width="0.4" height="15.0" fill="rgb(232,4,6)" rx="2" ry="2" />
<text x="208.42" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="856.9" y="773" width="0.2" height="15.0" fill="rgb(251,168,42)" rx="2" ry="2" />
<text x="859.88" y="783.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="553.5" y="1141" width="0.3" height="15.0" fill="rgb(239,189,7)" rx="2" ry="2" />
<text x="556.54" y="1151.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="823.5" y="933" width="0.3" height="15.0" fill="rgb(229,203,41)" rx="2" ry="2" />
<text x="826.54" y="943.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="1025.0" y="517" width="0.2" height="15.0" fill="rgb(233,159,28)" rx="2" ry="2" />
<text x="1028.00" y="527.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="885" width="0.2" height="15.0" fill="rgb(235,1,23)" rx="2" ry="2" />
<text x="1083.83" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1093" width="0.4" height="15.0" fill="rgb(251,186,14)" rx="2" ry="2" />
<text x="33.21" y="1103.5" ></text>
</g>
<g >
<title>copy_user_generic_string (10,101,010 samples, 0.02%)</title><rect x="1178.8" y="1029" width="0.2" height="15.0" fill="rgb(218,88,19)" rx="2" ry="2" />
<text x="1181.75" y="1039.5" ></text>
</g>
<g >
<title>mysqlnd_caching_sha2_get_auth_data (30,303,030 samples, 0.05%)</title><rect x="928.5" y="997" width="0.7" height="15.0" fill="rgb(225,126,33)" rx="2" ry="2" />
<text x="931.54" y="1007.5" ></text>
</g>
<g >
<title>net_rx_action (101,010,100 samples, 0.18%)</title><rect x="939.4" y="581" width="2.1" height="15.0" fill="rgb(226,127,35)" rx="2" ry="2" />
<text x="942.38" y="591.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="890.0" y="917" width="0.2" height="15.0" fill="rgb(239,125,11)" rx="2" ry="2" />
<text x="893.00" y="927.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (40,404,040 samples, 0.07%)</title><rect x="1180.4" y="1141" width="0.8" height="15.0" fill="rgb(212,218,0)" rx="2" ry="2" />
<text x="1183.42" y="1151.5" ></text>
</g>
<g >
<title>generic_permission (20,202,020 samples, 0.04%)</title><rect x="1122.1" y="1013" width="0.4" height="15.0" fill="rgb(225,134,2)" rx="2" ry="2" />
<text x="1125.08" y="1023.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="853" width="0.2" height="15.0" fill="rgb(230,98,6)" rx="2" ry="2" />
<text x="1117.17" y="863.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (30,303,030 samples, 0.05%)</title><rect x="1150.0" y="901" width="0.6" height="15.0" fill="rgb(238,98,53)" rx="2" ry="2" />
<text x="1153.00" y="911.5" ></text>
</g>
<g >
<title>zend_init_dynamic_call_string (20,202,020 samples, 0.04%)</title><rect x="267.3" y="1109" width="0.4" height="15.0" fill="rgb(234,3,11)" rx="2" ry="2" />
<text x="270.29" y="1119.5" ></text>
</g>
<g >
<title>php_strtr_array (10,101,010 samples, 0.02%)</title><rect x="311.7" y="1109" width="0.2" height="15.0" fill="rgb(223,37,49)" rx="2" ry="2" />
<text x="314.67" y="1119.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (10,101,010 samples, 0.02%)</title><rect x="856.9" y="501" width="0.2" height="15.0" fill="rgb(240,127,11)" rx="2" ry="2" />
<text x="859.88" y="511.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="24.0" y="885" width="0.2" height="15.0" fill="rgb(233,74,29)" rx="2" ry="2" />
<text x="26.96" y="895.5" ></text>
</g>
<g >
<title>ZEND_SEND_UNPACK_SPEC_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1081.9" y="1061" width="0.2" height="15.0" fill="rgb(227,11,28)" rx="2" ry="2" />
<text x="1084.88" y="1071.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (131,313,130 samples, 0.23%)</title><rect x="1184.8" y="741" width="2.7" height="15.0" fill="rgb(248,185,26)" rx="2" ry="2" />
<text x="1187.79" y="751.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="672.5" y="789" width="0.2" height="15.0" fill="rgb(243,39,24)" rx="2" ry="2" />
<text x="675.50" y="799.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_in (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="821" width="0.2" height="15.0" fill="rgb(230,133,40)" rx="2" ry="2" />
<text x="1127.17" y="831.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_res_read_result_metadata_pub (10,101,010 samples, 0.02%)</title><rect x="1052.1" y="1077" width="0.2" height="15.0" fill="rgb(212,79,15)" rx="2" ry="2" />
<text x="1055.08" y="1087.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="890.0" y="869" width="0.2" height="15.0" fill="rgb(220,181,5)" rx="2" ry="2" />
<text x="893.00" y="879.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="193.8" y="981" width="0.2" height="15.0" fill="rgb(240,139,37)" rx="2" ry="2" />
<text x="196.75" y="991.5" ></text>
</g>
<g >
<title>getname_flags (50,505,050 samples, 0.09%)</title><rect x="725.4" y="933" width="1.1" height="15.0" fill="rgb(241,196,26)" rx="2" ry="2" />
<text x="728.42" y="943.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="904.0" y="853" width="0.2" height="15.0" fill="rgb(210,20,8)" rx="2" ry="2" />
<text x="906.96" y="863.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="478.5" y="1125" width="0.3" height="15.0" fill="rgb(240,202,29)" rx="2" ry="2" />
<text x="481.54" y="1135.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="546.5" y="965" width="0.2" height="15.0" fill="rgb(238,132,8)" rx="2" ry="2" />
<text x="549.46" y="975.5" ></text>
</g>
<g >
<title>getenv (20,202,020 samples, 0.04%)</title><rect x="1172.7" y="1221" width="0.4" height="15.0" fill="rgb(254,90,52)" rx="2" ry="2" />
<text x="1175.71" y="1231.5" ></text>
</g>
<g >
<title>compile_filename (161,616,160 samples, 0.28%)</title><rect x="699.0" y="1093" width="3.3" height="15.0" fill="rgb(250,206,12)" rx="2" ry="2" />
<text x="701.96" y="1103.5" ></text>
</g>
<g >
<title>persistent_compile_file (363,636,360 samples, 0.64%)</title><rect x="874.4" y="981" width="7.5" height="15.0" fill="rgb(242,91,1)" rx="2" ry="2" />
<text x="877.38" y="991.5" ></text>
</g>
<g >
<title>zend_hash_add_new (40,404,040 samples, 0.07%)</title><rect x="444.2" y="1109" width="0.8" height="15.0" fill="rgb(238,59,17)" rx="2" ry="2" />
<text x="447.17" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="447.3" y="1061" width="0.2" height="15.0" fill="rgb(220,6,48)" rx="2" ry="2" />
<text x="450.29" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (10,101,010 samples, 0.02%)</title><rect x="678.1" y="821" width="0.2" height="15.0" fill="rgb(229,22,23)" rx="2" ry="2" />
<text x="681.12" y="831.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue (10,101,010 samples, 0.02%)</title><rect x="654.2" y="805" width="0.2" height="15.0" fill="rgb(226,58,35)" rx="2" ry="2" />
<text x="657.17" y="815.5" ></text>
</g>
<g >
<title>tcp_data_ready (10,101,010 samples, 0.02%)</title><rect x="973.3" y="837" width="0.2" height="15.0" fill="rgb(215,193,48)" rx="2" ry="2" />
<text x="976.33" y="847.5" ></text>
</g>
<g >
<title>zend_check_protected (10,101,010 samples, 0.02%)</title><rect x="451.5" y="1109" width="0.2" height="15.0" fill="rgb(223,152,23)" rx="2" ry="2" />
<text x="454.46" y="1119.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="523.8" y="901" width="0.2" height="15.0" fill="rgb(245,73,24)" rx="2" ry="2" />
<text x="526.75" y="911.5" ></text>
</g>
<g >
<title>do_faccessat (90,909,090 samples, 0.16%)</title><rect x="525.8" y="1061" width="1.9" height="15.0" fill="rgb(228,71,48)" rx="2" ry="2" />
<text x="528.83" y="1071.5" ></text>
</g>
<g >
<title>TRACE-372$Monolog\Formatter\NormalizerFormatter::normalize$169 (40,404,040 samples, 0.07%)</title><rect x="498.1" y="1141" width="0.9" height="15.0" fill="rgb(206,139,31)" rx="2" ry="2" />
<text x="501.12" y="1151.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (40,404,040 samples, 0.07%)</title><rect x="683.8" y="997" width="0.8" height="15.0" fill="rgb(215,218,31)" rx="2" ry="2" />
<text x="686.75" y="1007.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (40,404,040 samples, 0.07%)</title><rect x="685.6" y="1045" width="0.9" height="15.0" fill="rgb(214,74,15)" rx="2" ry="2" />
<text x="688.62" y="1055.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="464.6" y="1093" width="0.2" height="15.0" fill="rgb(236,166,22)" rx="2" ry="2" />
<text x="467.58" y="1103.5" ></text>
</g>
<g >
<title>php_pcre_replace_impl (10,101,010 samples, 0.02%)</title><rect x="529.6" y="1093" width="0.2" height="15.0" fill="rgb(218,13,25)" rx="2" ry="2" />
<text x="532.58" y="1103.5" ></text>
</g>
<g >
<title>ZEND_PRE_INC_OBJ_SPEC_UNUSED_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="888.1" y="1125" width="0.4" height="15.0" fill="rgb(208,169,12)" rx="2" ry="2" />
<text x="891.12" y="1135.5" ></text>
</g>
<g >
<title>receive_buf (10,101,010 samples, 0.02%)</title><rect x="422.7" y="885" width="0.2" height="15.0" fill="rgb(226,80,31)" rx="2" ry="2" />
<text x="425.71" y="895.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (10,101,010 samples, 0.02%)</title><rect x="1137.3" y="1141" width="0.2" height="15.0" fill="rgb(219,131,27)" rx="2" ry="2" />
<text x="1140.29" y="1151.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="899.4" y="933" width="0.2" height="15.0" fill="rgb(212,112,22)" rx="2" ry="2" />
<text x="902.38" y="943.5" ></text>
</g>
<g >
<title>TRACE-278$Wikimedia\Rdbms\LoadBalancer::commitPrimaryChanges$1861 (10,101,010 samples, 0.02%)</title><rect x="472.9" y="1141" width="0.2" height="15.0" fill="rgb(246,121,15)" rx="2" ry="2" />
<text x="475.92" y="1151.5" ></text>
</g>
<g >
<title>zend_add_helper_SPEC (232,323,230 samples, 0.41%)</title><rect x="962.7" y="1125" width="4.8" height="15.0" fill="rgb(220,228,18)" rx="2" ry="2" />
<text x="965.71" y="1135.5" ></text>
</g>
<g >
<title>__sk_free (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="933" width="0.3" height="15.0" fill="rgb(214,41,39)" rx="2" ry="2" />
<text x="1174.25" y="943.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (10,101,010 samples, 0.02%)</title><rect x="209.4" y="1013" width="0.2" height="15.0" fill="rgb(224,227,20)" rx="2" ry="2" />
<text x="212.38" y="1023.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="475.4" y="1125" width="0.6" height="15.0" fill="rgb(243,205,53)" rx="2" ry="2" />
<text x="478.42" y="1135.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="244.4" y="1045" width="0.2" height="15.0" fill="rgb(246,162,49)" rx="2" ry="2" />
<text x="247.38" y="1055.5" ></text>
</g>
<g >
<title>php_memc_get_impl (10,101,010 samples, 0.02%)</title><rect x="1062.5" y="1141" width="0.2" height="15.0" fill="rgb(243,8,4)" rx="2" ry="2" />
<text x="1065.50" y="1151.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="914.6" y="709" width="0.2" height="15.0" fill="rgb(236,206,46)" rx="2" ry="2" />
<text x="917.58" y="719.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="1127.1" y="933" width="0.2" height="15.0" fill="rgb(211,27,4)" rx="2" ry="2" />
<text x="1130.08" y="943.5" ></text>
</g>
<g >
<title>ip_queue_xmit (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="821" width="1.7" height="15.0" fill="rgb(230,167,15)" rx="2" ry="2" />
<text x="1028.00" y="831.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1187.7" y="933" width="0.2" height="15.0" fill="rgb(206,150,21)" rx="2" ry="2" />
<text x="1190.71" y="943.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (90,909,090 samples, 0.16%)</title><rect x="798.5" y="917" width="1.9" height="15.0" fill="rgb(232,49,1)" rx="2" ry="2" />
<text x="801.54" y="927.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1173" width="0.2" height="15.0" fill="rgb(236,27,44)" rx="2" ry="2" />
<text x="35.29" y="1183.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="922.5" y="821" width="0.2" height="15.0" fill="rgb(253,29,17)" rx="2" ry="2" />
<text x="925.50" y="831.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (70,707,070 samples, 0.12%)</title><rect x="431.0" y="1013" width="1.5" height="15.0" fill="rgb(214,49,8)" rx="2" ry="2" />
<text x="434.04" y="1023.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="344.4" y="1093" width="0.2" height="15.0" fill="rgb(235,71,22)" rx="2" ry="2" />
<text x="347.38" y="1103.5" ></text>
</g>
<g >
<title>zif_mysqli_report (10,101,010 samples, 0.02%)</title><rect x="1054.6" y="1125" width="0.2" height="15.0" fill="rgb(250,198,29)" rx="2" ry="2" />
<text x="1057.58" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_static_property_address_ex (10,101,010 samples, 0.02%)</title><rect x="516.9" y="1109" width="0.2" height="15.0" fill="rgb(212,45,18)" rx="2" ry="2" />
<text x="519.88" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1029" width="0.4" height="15.0" fill="rgb(211,196,25)" rx="2" ry="2" />
<text x="1001.75" y="1039.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_manip_pkt (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="741" width="0.2" height="15.0" fill="rgb(211,222,33)" rx="2" ry="2" />
<text x="1127.17" y="751.5" ></text>
</g>
<g >
<title>ext4_file_getattr (70,707,070 samples, 0.12%)</title><rect x="425.8" y="981" width="1.5" height="15.0" fill="rgb(241,50,47)" rx="2" ry="2" />
<text x="428.83" y="991.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="545.6" y="1077" width="0.2" height="15.0" fill="rgb(234,170,29)" rx="2" ry="2" />
<text x="548.62" y="1087.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="649.4" y="1077" width="0.2" height="15.0" fill="rgb(254,211,8)" rx="2" ry="2" />
<text x="652.38" y="1087.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="183.8" y="949" width="0.2" height="15.0" fill="rgb(254,124,37)" rx="2" ry="2" />
<text x="186.75" y="959.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="678.8" y="837" width="0.2" height="15.0" fill="rgb(251,55,24)" rx="2" ry="2" />
<text x="681.75" y="847.5" ></text>
</g>
<g >
<title>rcu_report_qs_rnp (10,101,010 samples, 0.02%)</title><rect x="371.9" y="901" width="0.2" height="15.0" fill="rgb(248,63,15)" rx="2" ry="2" />
<text x="374.88" y="911.5" ></text>
</g>
<g >
<title>zend_jit_zval_array_dup (10,101,010 samples, 0.02%)</title><rect x="492.5" y="1125" width="0.2" height="15.0" fill="rgb(246,110,2)" rx="2" ry="2" />
<text x="495.50" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="799.0" y="725" width="0.2" height="15.0" fill="rgb(238,73,7)" rx="2" ry="2" />
<text x="801.96" y="735.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="36.9" y="1141" width="0.2" height="15.0" fill="rgb(231,104,44)" rx="2" ry="2" />
<text x="39.88" y="1151.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="733.1" y="901" width="0.4" height="15.0" fill="rgb(247,193,9)" rx="2" ry="2" />
<text x="736.12" y="911.5" ></text>
</g>
<g >
<title>iptable_filter_hook (60,606,060 samples, 0.11%)</title><rect x="1159.2" y="501" width="1.2" height="15.0" fill="rgb(227,86,48)" rx="2" ry="2" />
<text x="1162.17" y="511.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="917" width="0.2" height="15.0" fill="rgb(205,157,47)" rx="2" ry="2" />
<text x="1099.04" y="927.5" ></text>
</g>
<g >
<title>override_creds (10,101,010 samples, 0.02%)</title><rect x="392.5" y="901" width="0.2" height="15.0" fill="rgb(235,83,43)" rx="2" ry="2" />
<text x="395.50" y="911.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (10,101,010 samples, 0.02%)</title><rect x="460.2" y="1093" width="0.2" height="15.0" fill="rgb(216,57,14)" rx="2" ry="2" />
<text x="463.21" y="1103.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="482.9" y="1125" width="0.4" height="15.0" fill="rgb(218,51,50)" rx="2" ry="2" />
<text x="485.92" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="624.2" y="1093" width="0.2" height="15.0" fill="rgb(252,37,27)" rx="2" ry="2" />
<text x="627.17" y="1103.5" ></text>
</g>
<g >
<title>zend_stack_destroy (10,101,010 samples, 0.02%)</title><rect x="1096.5" y="1125" width="0.2" height="15.0" fill="rgb(241,171,54)" rx="2" ry="2" />
<text x="1099.46" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="463.8" y="1093" width="0.2" height="15.0" fill="rgb(206,175,17)" rx="2" ry="2" />
<text x="466.75" y="1103.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1187.7" y="917" width="0.2" height="15.0" fill="rgb(217,24,20)" rx="2" ry="2" />
<text x="1190.71" y="927.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="498.8" y="1077" width="0.2" height="15.0" fill="rgb(239,175,47)" rx="2" ry="2" />
<text x="501.75" y="1087.5" ></text>
</g>
<g >
<title>ovl_permission (50,505,050 samples, 0.09%)</title><rect x="393.3" y="949" width="1.1" height="15.0" fill="rgb(247,66,8)" rx="2" ry="2" />
<text x="396.33" y="959.5" ></text>
</g>
<g >
<title>zif_fwrite (191,919,190 samples, 0.34%)</title><rect x="1034.6" y="1125" width="3.9" height="15.0" fill="rgb(244,0,4)" rx="2" ry="2" />
<text x="1037.58" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FE_FETCH_R_SPEC_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="917.9" y="1045" width="0.2" height="15.0" fill="rgb(206,194,26)" rx="2" ry="2" />
<text x="920.92" y="1055.5" ></text>
</g>
<g >
<title>finish_task_switch (111,111,110 samples, 0.19%)</title><rect x="1112.1" y="1045" width="2.3" height="15.0" fill="rgb(215,16,9)" rx="2" ry="2" />
<text x="1115.08" y="1055.5" ></text>
</g>
<g >
<title>php_output_discard (10,101,010 samples, 0.02%)</title><rect x="1054.8" y="1109" width="0.2" height="15.0" fill="rgb(220,138,51)" rx="2" ry="2" />
<text x="1057.79" y="1119.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="355.0" y="1125" width="0.2" height="15.0" fill="rgb(212,57,44)" rx="2" ry="2" />
<text x="358.00" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="480.8" y="965" width="0.2" height="15.0" fill="rgb(213,190,4)" rx="2" ry="2" />
<text x="483.83" y="975.5" ></text>
</g>
<g >
<title>zif_array_fill_keys (10,101,010 samples, 0.02%)</title><rect x="352.5" y="1125" width="0.2" height="15.0" fill="rgb(254,199,19)" rx="2" ry="2" />
<text x="355.50" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="693.3" y="1093" width="0.2" height="15.0" fill="rgb(245,179,21)" rx="2" ry="2" />
<text x="696.33" y="1103.5" ></text>
</g>
<g >
<title>_emalloc_256 (10,101,010 samples, 0.02%)</title><rect x="677.3" y="837" width="0.2" height="15.0" fill="rgb(215,18,3)" rx="2" ry="2" />
<text x="680.29" y="847.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="981" width="0.2" height="15.0" fill="rgb(209,174,33)" rx="2" ry="2" />
<text x="1085.08" y="991.5" ></text>
</g>
<g >
<title>do_group_exit (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1141" width="0.2" height="15.0" fill="rgb(211,36,30)" rx="2" ry="2" />
<text x="1175.08" y="1151.5" ></text>
</g>
<g >
<title>lookup_fast (30,303,030 samples, 0.05%)</title><rect x="527.1" y="965" width="0.6" height="15.0" fill="rgb(247,210,16)" rx="2" ry="2" />
<text x="530.08" y="975.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (40,404,040 samples, 0.07%)</title><rect x="290.8" y="1109" width="0.9" height="15.0" fill="rgb(224,213,33)" rx="2" ry="2" />
<text x="293.83" y="1119.5" ></text>
</g>
<g >
<title>prepare_creds (30,303,030 samples, 0.05%)</title><rect x="525.8" y="1045" width="0.7" height="15.0" fill="rgb(246,143,31)" rx="2" ry="2" />
<text x="528.83" y="1055.5" ></text>
</g>
<g >
<title>_zend_new_array (20,202,020 samples, 0.04%)</title><rect x="71.9" y="1093" width="0.4" height="15.0" fill="rgb(246,209,35)" rx="2" ry="2" />
<text x="74.88" y="1103.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="729.0" y="1045" width="0.2" height="15.0" fill="rgb(224,100,38)" rx="2" ry="2" />
<text x="731.96" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="443.5" y="965" width="0.3" height="15.0" fill="rgb(239,133,4)" rx="2" ry="2" />
<text x="446.54" y="975.5" ></text>
</g>
<g >
<title>copy_user_generic_string (10,101,010 samples, 0.02%)</title><rect x="1146.5" y="1061" width="0.2" height="15.0" fill="rgb(209,149,9)" rx="2" ry="2" />
<text x="1149.46" y="1071.5" ></text>
</g>
<g >
<title>zend_rebuild_symbol_table (10,101,010 samples, 0.02%)</title><rect x="906.5" y="1029" width="0.2" height="15.0" fill="rgb(241,143,12)" rx="2" ry="2" />
<text x="909.46" y="1039.5" ></text>
</g>
<g >
<title>php_array_key_compare (40,404,040 samples, 0.07%)</title><rect x="514.4" y="1029" width="0.8" height="15.0" fill="rgb(213,155,12)" rx="2" ry="2" />
<text x="517.38" y="1039.5" ></text>
</g>
<g >
<title>zend_objects_new (10,101,010 samples, 0.02%)</title><rect x="887.7" y="1109" width="0.2" height="15.0" fill="rgb(241,208,30)" rx="2" ry="2" />
<text x="890.71" y="1119.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="443.5" y="949" width="0.3" height="15.0" fill="rgb(246,55,29)" rx="2" ry="2" />
<text x="446.54" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.23%)</title><rect x="525.6" y="1109" width="2.7" height="15.0" fill="rgb(218,82,21)" rx="2" ry="2" />
<text x="528.62" y="1119.5" ></text>
</g>
<g >
<title>php_do_pcre_match (20,202,020 samples, 0.04%)</title><rect x="530.0" y="1125" width="0.4" height="15.0" fill="rgb(229,48,54)" rx="2" ry="2" />
<text x="533.00" y="1135.5" ></text>
</g>
<g >
<title>execute_ex (70,707,070 samples, 0.12%)</title><rect x="921.5" y="949" width="1.4" height="15.0" fill="rgb(244,115,49)" rx="2" ry="2" />
<text x="924.46" y="959.5" ></text>
</g>
<g >
<title>__x64_sys_access (131,313,130 samples, 0.23%)</title><rect x="899.8" y="1077" width="2.7" height="15.0" fill="rgb(209,202,16)" rx="2" ry="2" />
<text x="902.79" y="1087.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="848.1" y="885" width="0.2" height="15.0" fill="rgb(219,42,15)" rx="2" ry="2" />
<text x="851.12" y="895.5" ></text>
</g>
<g >
<title>zif_mysqli_close (161,616,160 samples, 0.28%)</title><rect x="1088.1" y="1061" width="3.4" height="15.0" fill="rgb(253,132,14)" rx="2" ry="2" />
<text x="1091.12" y="1071.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="853" width="0.2" height="15.0" fill="rgb(207,93,46)" rx="2" ry="2" />
<text x="1056.12" y="863.5" ></text>
</g>
<g >
<title>mntget (20,202,020 samples, 0.04%)</title><rect x="418.1" y="965" width="0.4" height="15.0" fill="rgb(233,147,23)" rx="2" ry="2" />
<text x="421.12" y="975.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="853" width="0.2" height="15.0" fill="rgb(223,175,16)" rx="2" ry="2" />
<text x="1150.29" y="863.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="490.2" y="1093" width="0.2" height="15.0" fill="rgb(221,225,22)" rx="2" ry="2" />
<text x="493.21" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.12%)</title><rect x="1140.8" y="1189" width="1.5" height="15.0" fill="rgb(245,208,15)" rx="2" ry="2" />
<text x="1143.83" y="1199.5" ></text>
</g>
<g >
<title>malloc (10,101,010 samples, 0.02%)</title><rect x="23.5" y="1205" width="0.3" height="15.0" fill="rgb(231,37,47)" rx="2" ry="2" />
<text x="26.54" y="1215.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="347.1" y="1109" width="0.2" height="15.0" fill="rgb(223,47,27)" rx="2" ry="2" />
<text x="350.08" y="1119.5" ></text>
</g>
<g >
<title>zif_constant (10,101,010 samples, 0.02%)</title><rect x="308.8" y="1125" width="0.2" height="15.0" fill="rgb(226,98,34)" rx="2" ry="2" />
<text x="311.75" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1061" width="1.2" height="15.0" fill="rgb(220,104,24)" rx="2" ry="2" />
<text x="526.75" y="1071.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (7,050,504,980 samples, 12.32%)</title><rect x="53.5" y="1109" width="145.5" height="15.0" fill="rgb(209,217,50)" rx="2" ry="2" />
<text x="56.54" y="1119.5" >php_var_unserializ..</text>
</g>
<g >
<title>aa_sk_perm (10,101,010 samples, 0.02%)</title><rect x="1141.2" y="1077" width="0.3" height="15.0" fill="rgb(252,139,51)" rx="2" ry="2" />
<text x="1144.25" y="1087.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="749.0" y="1029" width="0.2" height="15.0" fill="rgb(219,130,17)" rx="2" ry="2" />
<text x="751.96" y="1039.5" ></text>
</g>
<g >
<title>nf_hook_slow (40,404,040 samples, 0.07%)</title><rect x="938.5" y="693" width="0.9" height="15.0" fill="rgb(247,139,20)" rx="2" ry="2" />
<text x="941.54" y="703.5" ></text>
</g>
<g >
<title>mutex_lock (20,202,020 samples, 0.04%)</title><rect x="217.5" y="981" width="0.4" height="15.0" fill="rgb(237,130,9)" rx="2" ry="2" />
<text x="220.50" y="991.5" ></text>
</g>
<g >
<title>ip_finish_output2 (272,727,270 samples, 0.48%)</title><rect x="1152.7" y="453" width="5.6" height="15.0" fill="rgb(236,225,24)" rx="2" ry="2" />
<text x="1155.71" y="463.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="776.0" y="853" width="0.2" height="15.0" fill="rgb(206,18,47)" rx="2" ry="2" />
<text x="779.04" y="863.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="517.7" y="1093" width="0.4" height="15.0" fill="rgb(212,65,25)" rx="2" ry="2" />
<text x="520.71" y="1103.5" ></text>
</g>
<g >
<title>php_replace_in_subject_func (30,303,030 samples, 0.05%)</title><rect x="1055.4" y="1093" width="0.6" height="15.0" fill="rgb(224,180,38)" rx="2" ry="2" />
<text x="1058.42" y="1103.5" ></text>
</g>
<g >
<title>inet_proto_csum_replace4 (10,101,010 samples, 0.02%)</title><rect x="24.0" y="677" width="0.2" height="15.0" fill="rgb(207,82,2)" rx="2" ry="2" />
<text x="26.96" y="687.5" ></text>
</g>
<g >
<title>php_memc_getMulti_impl (10,101,010 samples, 0.02%)</title><rect x="1062.3" y="1141" width="0.2" height="15.0" fill="rgb(253,92,15)" rx="2" ry="2" />
<text x="1065.29" y="1151.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="791.5" y="981" width="0.2" height="15.0" fill="rgb(254,124,4)" rx="2" ry="2" />
<text x="794.46" y="991.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (626,262,620 samples, 1.09%)</title><rect x="835.0" y="901" width="12.9" height="15.0" fill="rgb(229,14,18)" rx="2" ry="2" />
<text x="838.00" y="911.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="677" width="0.3" height="15.0" fill="rgb(248,134,44)" rx="2" ry="2" />
<text x="1134.25" y="687.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="304.4" y="661" width="0.4" height="15.0" fill="rgb(230,94,20)" rx="2" ry="2" />
<text x="307.38" y="671.5" ></text>
</g>
<g >
<title>__x64_sys_setsockopt (20,202,020 samples, 0.04%)</title><rect x="944.0" y="981" width="0.4" height="15.0" fill="rgb(223,179,33)" rx="2" ry="2" />
<text x="946.96" y="991.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="853" width="0.2" height="15.0" fill="rgb(225,88,38)" rx="2" ry="2" />
<text x="1127.17" y="863.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="967.1" y="997" width="0.2" height="15.0" fill="rgb(207,142,48)" rx="2" ry="2" />
<text x="970.08" y="1007.5" ></text>
</g>
<g >
<title>spl_perform_autoload (141,414,140 samples, 0.25%)</title><rect x="685.6" y="1077" width="2.9" height="15.0" fill="rgb(215,147,33)" rx="2" ry="2" />
<text x="688.62" y="1087.5" ></text>
</g>
<g >
<title>ovl_inode_upper (20,202,020 samples, 0.04%)</title><rect x="385.4" y="933" width="0.4" height="15.0" fill="rgb(254,228,18)" rx="2" ry="2" />
<text x="388.42" y="943.5" ></text>
</g>
<g >
<title>nf_ct_deliver_cached_events (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="405" width="0.2" height="15.0" fill="rgb(251,213,34)" rx="2" ry="2" />
<text x="1035.92" y="415.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (757,575,750 samples, 1.32%)</title><rect x="1004.4" y="1109" width="15.6" height="15.0" fill="rgb(214,97,43)" rx="2" ry="2" />
<text x="1007.38" y="1119.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="740.2" y="853" width="0.2" height="15.0" fill="rgb(221,172,1)" rx="2" ry="2" />
<text x="743.21" y="863.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="925.4" y="533" width="0.2" height="15.0" fill="rgb(221,164,22)" rx="2" ry="2" />
<text x="928.42" y="543.5" ></text>
</g>
<g >
<title>__sys_getsockopt (20,202,020 samples, 0.04%)</title><rect x="942.7" y="853" width="0.4" height="15.0" fill="rgb(219,7,4)" rx="2" ry="2" />
<text x="945.71" y="863.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="885" width="0.2" height="15.0" fill="rgb(246,191,30)" rx="2" ry="2" />
<text x="1085.08" y="895.5" ></text>
</g>
<g >
<title>__x64_sys_newstat (60,606,060 samples, 0.11%)</title><rect x="956.9" y="1061" width="1.2" height="15.0" fill="rgb(250,56,0)" rx="2" ry="2" />
<text x="959.88" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (30,303,030 samples, 0.05%)</title><rect x="524.0" y="981" width="0.6" height="15.0" fill="rgb(244,3,9)" rx="2" ry="2" />
<text x="526.96" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="422.7" y="949" width="0.2" height="15.0" fill="rgb(215,181,30)" rx="2" ry="2" />
<text x="425.71" y="959.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="472.5" y="1093" width="0.2" height="15.0" fill="rgb(212,178,15)" rx="2" ry="2" />
<text x="475.50" y="1103.5" ></text>
</g>
<g >
<title>virtqueue_notify (50,505,050 samples, 0.09%)</title><rect x="1128.1" y="389" width="1.1" height="15.0" fill="rgb(232,198,11)" rx="2" ry="2" />
<text x="1131.12" y="399.5" ></text>
</g>
<g >
<title>____fput (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1029" width="0.5" height="15.0" fill="rgb(235,193,43)" rx="2" ry="2" />
<text x="1026.33" y="1039.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (252,525,250 samples, 0.44%)</title><rect x="937.5" y="901" width="5.2" height="15.0" fill="rgb(238,99,54)" rx="2" ry="2" />
<text x="940.50" y="911.5" ></text>
</g>
<g >
<title>setsockopt (20,202,020 samples, 0.04%)</title><rect x="944.0" y="1029" width="0.4" height="15.0" fill="rgb(238,31,24)" rx="2" ry="2" />
<text x="946.96" y="1039.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="390.2" y="853" width="0.2" height="15.0" fill="rgb(236,17,4)" rx="2" ry="2" />
<text x="393.21" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="295.6" y="1061" width="0.2" height="15.0" fill="rgb(252,1,44)" rx="2" ry="2" />
<text x="298.62" y="1071.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="672.5" y="757" width="0.2" height="15.0" fill="rgb(248,176,54)" rx="2" ry="2" />
<text x="675.50" y="767.5" ></text>
</g>
<g >
<title>__check_object_size (10,101,010 samples, 0.02%)</title><rect x="1178.1" y="1045" width="0.2" height="15.0" fill="rgb(231,125,11)" rx="2" ry="2" />
<text x="1181.12" y="1055.5" ></text>
</g>
<g >
<title>ctnetlink_conntrack_event (10,101,010 samples, 0.02%)</title><rect x="193.8" y="757" width="0.2" height="15.0" fill="rgb(243,64,7)" rx="2" ry="2" />
<text x="196.75" y="767.5" ></text>
</g>
<g >
<title>ovl_get_acl (10,101,010 samples, 0.02%)</title><rect x="390.4" y="901" width="0.2" height="15.0" fill="rgb(217,17,24)" rx="2" ry="2" />
<text x="393.42" y="911.5" ></text>
</g>
<g >
<title>zend_hash_find (50,505,050 samples, 0.09%)</title><rect x="995.6" y="1109" width="1.1" height="15.0" fill="rgb(233,17,39)" rx="2" ry="2" />
<text x="998.62" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (20,202,020 samples, 0.04%)</title><rect x="710.6" y="1109" width="0.4" height="15.0" fill="rgb(243,191,4)" rx="2" ry="2" />
<text x="713.62" y="1119.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="30.2" y="965" width="0.2" height="15.0" fill="rgb(207,180,10)" rx="2" ry="2" />
<text x="33.21" y="975.5" ></text>
</g>
<g >
<title>ext4_end_bio (10,101,010 samples, 0.02%)</title><rect x="696.2" y="965" width="0.3" height="15.0" fill="rgb(206,90,32)" rx="2" ry="2" />
<text x="699.25" y="975.5" ></text>
</g>
<g >
<title>do_filp_open (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1125" width="0.8" height="15.0" fill="rgb(236,214,20)" rx="2" ry="2" />
<text x="1138.42" y="1135.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="1023.3" y="997" width="0.2" height="15.0" fill="rgb(224,185,3)" rx="2" ry="2" />
<text x="1026.33" y="1007.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="941.7" y="677" width="0.2" height="15.0" fill="rgb(221,139,5)" rx="2" ry="2" />
<text x="944.67" y="687.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="973.3" y="773" width="0.2" height="15.0" fill="rgb(210,209,7)" rx="2" ry="2" />
<text x="976.33" y="783.5" ></text>
</g>
<g >
<title>zend_hash_merge (10,101,010 samples, 0.02%)</title><rect x="528.8" y="1093" width="0.2" height="15.0" fill="rgb(235,28,38)" rx="2" ry="2" />
<text x="531.75" y="1103.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="789.0" y="645" width="0.2" height="15.0" fill="rgb(253,13,53)" rx="2" ry="2" />
<text x="791.96" y="655.5" ></text>
</g>
<g >
<title>mysqli_read_property (10,101,010 samples, 0.02%)</title><rect x="944.8" y="1125" width="0.2" height="15.0" fill="rgb(249,158,44)" rx="2" ry="2" />
<text x="947.79" y="1135.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="672.5" y="1061" width="0.2" height="15.0" fill="rgb(234,117,10)" rx="2" ry="2" />
<text x="675.50" y="1071.5" ></text>
</g>
<g >
<title>__pollwait (10,101,010 samples, 0.02%)</title><rect x="926.9" y="773" width="0.2" height="15.0" fill="rgb(247,122,44)" rx="2" ry="2" />
<text x="929.88" y="783.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (40,404,040 samples, 0.07%)</title><rect x="1178.1" y="1077" width="0.9" height="15.0" fill="rgb(250,177,34)" rx="2" ry="2" />
<text x="1181.12" y="1087.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="199.0" y="1109" width="0.2" height="15.0" fill="rgb(252,215,37)" rx="2" ry="2" />
<text x="201.96" y="1119.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="416.9" y="869" width="0.2" height="15.0" fill="rgb(215,28,33)" rx="2" ry="2" />
<text x="419.88" y="879.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="925.4" y="757" width="0.2" height="15.0" fill="rgb(224,79,25)" rx="2" ry="2" />
<text x="928.42" y="767.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1061" width="0.2" height="15.0" fill="rgb(209,118,8)" rx="2" ry="2" />
<text x="554.67" y="1071.5" ></text>
</g>
<g >
<title>ovl_inode_real (10,101,010 samples, 0.02%)</title><rect x="1008.1" y="837" width="0.2" height="15.0" fill="rgb(252,110,40)" rx="2" ry="2" />
<text x="1011.12" y="847.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="32.3" y="629" width="0.2" height="15.0" fill="rgb(209,145,44)" rx="2" ry="2" />
<text x="35.29" y="639.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.11 (20,202,020 samples, 0.04%)</title><rect x="925.4" y="789" width="0.4" height="15.0" fill="rgb(206,136,50)" rx="2" ry="2" />
<text x="928.42" y="799.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1059.2" y="1093" width="0.2" height="15.0" fill="rgb(226,106,43)" rx="2" ry="2" />
<text x="1062.17" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="1013" width="0.2" height="15.0" fill="rgb(226,74,43)" rx="2" ry="2" />
<text x="1150.29" y="1023.5" ></text>
</g>
<g >
<title>__ip_finish_output (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="181" width="0.4" height="15.0" fill="rgb(229,103,32)" rx="2" ry="2" />
<text x="1092.58" y="191.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="753.5" y="1013" width="0.5" height="15.0" fill="rgb(235,115,2)" rx="2" ry="2" />
<text x="756.54" y="1023.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="789" width="0.2" height="15.0" fill="rgb(218,64,51)" rx="2" ry="2" />
<text x="1127.17" y="799.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (10,101,010 samples, 0.02%)</title><rect x="649.2" y="1077" width="0.2" height="15.0" fill="rgb(216,227,39)" rx="2" ry="2" />
<text x="652.17" y="1087.5" ></text>
</g>
<g >
<title>zend_call_known_function (40,404,040 samples, 0.07%)</title><rect x="304.0" y="693" width="0.8" height="15.0" fill="rgb(232,180,46)" rx="2" ry="2" />
<text x="306.96" y="703.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1188.8" y="1141" width="0.2" height="15.0" fill="rgb(224,28,44)" rx="2" ry="2" />
<text x="1191.75" y="1151.5" ></text>
</g>
<g >
<title>zif_is_callable (10,101,010 samples, 0.02%)</title><rect x="1081.5" y="1061" width="0.2" height="15.0" fill="rgb(244,114,9)" rx="2" ry="2" />
<text x="1084.46" y="1071.5" ></text>
</g>
<g >
<title>zend_std_get_static_method (10,101,010 samples, 0.02%)</title><rect x="493.5" y="1109" width="0.3" height="15.0" fill="rgb(206,147,20)" rx="2" ry="2" />
<text x="496.54" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1013" width="0.2" height="15.0" fill="rgb(221,97,16)" rx="2" ry="2" />
<text x="246.96" y="1023.5" ></text>
</g>
<g >
<title>TRACE-239$Monolog\Logger::debug$575 (10,101,010 samples, 0.02%)</title><rect x="452.3" y="1141" width="0.2" height="15.0" fill="rgb(220,218,23)" rx="2" ry="2" />
<text x="455.29" y="1151.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="677.5" y="837" width="0.2" height="15.0" fill="rgb(238,57,13)" rx="2" ry="2" />
<text x="680.50" y="847.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="337.1" y="1109" width="0.2" height="15.0" fill="rgb(248,186,2)" rx="2" ry="2" />
<text x="340.08" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (2,373,737,350 samples, 4.15%)</title><rect x="824.0" y="981" width="48.9" height="15.0" fill="rgb(233,130,27)" rx="2" ry="2" />
<text x="826.96" y="991.5" >zend..</text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1013" width="0.2" height="15.0" fill="rgb(243,198,28)" rx="2" ry="2" />
<text x="893.00" y="1023.5" ></text>
</g>
<g >
<title>TRACE-307$Wikimedia\Rdbms\LoadBalancer::forEachOpenConnection$2329 (10,101,010 samples, 0.02%)</title><rect x="1082.5" y="1077" width="0.2" height="15.0" fill="rgb(244,67,4)" rx="2" ry="2" />
<text x="1085.50" y="1087.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1088.8" y="805" width="0.2" height="15.0" fill="rgb(229,2,24)" rx="2" ry="2" />
<text x="1091.75" y="815.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="342.3" y="1077" width="0.2" height="15.0" fill="rgb(244,226,43)" rx="2" ry="2" />
<text x="345.29" y="1087.5" ></text>
</g>
<g >
<title>__do_page_fault (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1061" width="0.2" height="15.0" fill="rgb(218,139,15)" rx="2" ry="2" />
<text x="1106.96" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="744.0" y="821" width="0.2" height="15.0" fill="rgb(217,26,45)" rx="2" ry="2" />
<text x="746.96" y="831.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="869.0" y="933" width="0.2" height="15.0" fill="rgb(246,214,42)" rx="2" ry="2" />
<text x="871.96" y="943.5" ></text>
</g>
<g >
<title>zend_exception_restore (10,101,010 samples, 0.02%)</title><rect x="768.8" y="1093" width="0.2" height="15.0" fill="rgb(214,142,33)" rx="2" ry="2" />
<text x="771.75" y="1103.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (80,808,080 samples, 0.14%)</title><rect x="801.9" y="853" width="1.6" height="15.0" fill="rgb(222,94,12)" rx="2" ry="2" />
<text x="804.88" y="863.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (10,101,010 samples, 0.02%)</title><rect x="1111.9" y="1077" width="0.2" height="15.0" fill="rgb(211,81,11)" rx="2" ry="2" />
<text x="1114.88" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (40,404,040 samples, 0.07%)</title><rect x="1180.4" y="1157" width="0.8" height="15.0" fill="rgb(232,55,15)" rx="2" ry="2" />
<text x="1183.42" y="1167.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1082.9" y="1029" width="0.2" height="15.0" fill="rgb(205,132,33)" rx="2" ry="2" />
<text x="1085.92" y="1039.5" ></text>
</g>
<g >
<title>_emalloc_256 (10,101,010 samples, 0.02%)</title><rect x="778.1" y="965" width="0.2" height="15.0" fill="rgb(226,58,25)" rx="2" ry="2" />
<text x="781.12" y="975.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="207.9" y="1093" width="0.2" height="15.0" fill="rgb(213,98,47)" rx="2" ry="2" />
<text x="210.92" y="1103.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (20,202,020 samples, 0.04%)</title><rect x="1076.9" y="1093" width="0.4" height="15.0" fill="rgb(233,226,12)" rx="2" ry="2" />
<text x="1079.88" y="1103.5" ></text>
</g>
<g >
<title>zif_strtolower (10,101,010 samples, 0.02%)</title><rect x="310.6" y="1125" width="0.2" height="15.0" fill="rgb(205,137,6)" rx="2" ry="2" />
<text x="313.62" y="1135.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="702.9" y="1077" width="0.2" height="15.0" fill="rgb(254,202,13)" rx="2" ry="2" />
<text x="705.92" y="1087.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (30,303,030 samples, 0.05%)</title><rect x="197.7" y="1077" width="0.6" height="15.0" fill="rgb(241,64,9)" rx="2" ry="2" />
<text x="200.71" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (111,111,110 samples, 0.19%)</title><rect x="1088.5" y="933" width="2.3" height="15.0" fill="rgb(253,114,19)" rx="2" ry="2" />
<text x="1091.54" y="943.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1045" width="0.2" height="15.0" fill="rgb(249,141,52)" rx="2" ry="2" />
<text x="445.29" y="1055.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="524.4" y="869" width="0.2" height="15.0" fill="rgb(239,194,13)" rx="2" ry="2" />
<text x="527.38" y="879.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1077" width="0.2" height="15.0" fill="rgb(218,214,20)" rx="2" ry="2" />
<text x="474.67" y="1087.5" ></text>
</g>
<g >
<title>TRACE-183$OOUI\FandomOOUITheme::onFandomResourceLoaderModifyCoreModules$38 (10,101,010 samples, 0.02%)</title><rect x="321.7" y="1141" width="0.2" height="15.0" fill="rgb(212,18,27)" rx="2" ry="2" />
<text x="324.67" y="1151.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (30,303,030 samples, 0.05%)</title><rect x="708.5" y="1061" width="0.7" height="15.0" fill="rgb(208,155,44)" rx="2" ry="2" />
<text x="711.54" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="955.4" y="1061" width="0.2" height="15.0" fill="rgb(206,113,19)" rx="2" ry="2" />
<text x="958.42" y="1071.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="901" width="0.2" height="15.0" fill="rgb(209,176,23)" rx="2" ry="2" />
<text x="1127.17" y="911.5" ></text>
</g>
<g >
<title>php_json_parser_init_ex (20,202,020 samples, 0.04%)</title><rect x="1042.7" y="1077" width="0.4" height="15.0" fill="rgb(227,145,34)" rx="2" ry="2" />
<text x="1045.71" y="1087.5" ></text>
</g>
<g >
<title>zend_restore_compiled_filename (10,101,010 samples, 0.02%)</title><rect x="1091.9" y="1125" width="0.2" height="15.0" fill="rgb(242,224,7)" rx="2" ry="2" />
<text x="1094.88" y="1135.5" ></text>
</g>
<g >
<title>_cond_resched (30,303,030 samples, 0.05%)</title><rect x="396.7" y="917" width="0.6" height="15.0" fill="rgb(211,211,29)" rx="2" ry="2" />
<text x="399.67" y="927.5" ></text>
</g>
<g >
<title>TRACE-432$ExtensionRegistry::exportExtractedData$519 (30,303,030 samples, 0.05%)</title><rect x="520.0" y="1141" width="0.6" height="15.0" fill="rgb(244,26,48)" rx="2" ry="2" />
<text x="523.00" y="1151.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (7,858,585,780 samples, 13.74%)</title><rect x="39.4" y="1125" width="162.1" height="15.0" fill="rgb(212,114,33)" rx="2" ry="2" />
<text x="42.38" y="1135.5" >php_var_unserialize_..</text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="917" width="0.2" height="15.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text x="1171.12" y="927.5" ></text>
</g>
<g >
<title>ZEND_CONCAT_SPEC_CV_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="648.8" y="1125" width="0.4" height="15.0" fill="rgb(248,37,49)" rx="2" ry="2" />
<text x="651.75" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class (70,707,070 samples, 0.12%)</title><rect x="282.9" y="1109" width="1.5" height="15.0" fill="rgb(247,1,36)" rx="2" ry="2" />
<text x="285.92" y="1119.5" ></text>
</g>
<g >
<title>virtnet_poll_tx (10,101,010 samples, 0.02%)</title><rect x="806.0" y="661" width="0.2" height="15.0" fill="rgb(253,78,3)" rx="2" ry="2" />
<text x="809.04" y="671.5" ></text>
</g>
<g >
<title>zend_parse_parameters (10,101,010 samples, 0.02%)</title><rect x="1030.2" y="1013" width="0.2" height="15.0" fill="rgb(225,5,27)" rx="2" ry="2" />
<text x="1033.21" y="1023.5" ></text>
</g>
<g >
<title>tcp_recvmsg (141,414,140 samples, 0.25%)</title><rect x="1177.1" y="1109" width="2.9" height="15.0" fill="rgb(235,50,45)" rx="2" ry="2" />
<text x="1180.08" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="981" width="0.2" height="15.0" fill="rgb(248,178,20)" rx="2" ry="2" />
<text x="1095.08" y="991.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (565,656,560 samples, 0.99%)</title><rect x="780.0" y="1045" width="11.7" height="15.0" fill="rgb(245,196,24)" rx="2" ry="2" />
<text x="783.00" y="1055.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="789.0" y="885" width="0.2" height="15.0" fill="rgb(243,161,51)" rx="2" ry="2" />
<text x="791.96" y="895.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (10,101,010 samples, 0.02%)</title><rect x="1026.0" y="517" width="0.2" height="15.0" fill="rgb(212,17,33)" rx="2" ry="2" />
<text x="1029.04" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (121,212,120 samples, 0.21%)</title><rect x="213.1" y="1061" width="2.5" height="15.0" fill="rgb(241,159,2)" rx="2" ry="2" />
<text x="216.12" y="1071.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="930.8" y="901" width="0.2" height="15.0" fill="rgb(227,112,33)" rx="2" ry="2" />
<text x="933.83" y="911.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_W_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="299.6" y="1125" width="0.2" height="15.0" fill="rgb(228,29,30)" rx="2" ry="2" />
<text x="302.58" y="1135.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="218.3" y="1077" width="0.2" height="15.0" fill="rgb(233,121,10)" rx="2" ry="2" />
<text x="221.33" y="1087.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="982.7" y="1109" width="0.2" height="15.0" fill="rgb(252,87,15)" rx="2" ry="2" />
<text x="985.71" y="1119.5" ></text>
</g>
<g >
<title>TRACE-22$wfLoadExtension$52 (4,404,040,360 samples, 7.70%)</title><rect x="355.6" y="1141" width="90.9" height="15.0" fill="rgb(234,159,8)" rx="2" ry="2" />
<text x="358.62" y="1151.5" >TRACE-22$w..</text>
</g>
<g >
<title>zend_fetch_resource2_ex (10,101,010 samples, 0.02%)</title><rect x="1059.0" y="1109" width="0.2" height="15.0" fill="rgb(246,58,21)" rx="2" ry="2" />
<text x="1061.96" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (121,212,120 samples, 0.21%)</title><rect x="1184.8" y="645" width="2.5" height="15.0" fill="rgb(226,24,3)" rx="2" ry="2" />
<text x="1187.79" y="655.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="1133.1" y="1173" width="0.7" height="15.0" fill="rgb(236,50,53)" rx="2" ry="2" />
<text x="1136.12" y="1183.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="339.6" y="1045" width="0.2" height="15.0" fill="rgb(250,107,46)" rx="2" ry="2" />
<text x="342.58" y="1055.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (333,333,330 samples, 0.58%)</title><rect x="738.1" y="981" width="6.9" height="15.0" fill="rgb(241,42,2)" rx="2" ry="2" />
<text x="741.12" y="991.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="502.1" y="1109" width="0.2" height="15.0" fill="rgb(229,44,41)" rx="2" ry="2" />
<text x="505.08" y="1119.5" ></text>
</g>
<g >
<title>inet_put_port (10,101,010 samples, 0.02%)</title><rect x="799.0" y="517" width="0.2" height="15.0" fill="rgb(210,224,45)" rx="2" ry="2" />
<text x="801.96" y="527.5" ></text>
</g>
<g >
<title>vfs_getxattr (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="981" width="0.2" height="15.0" fill="rgb(248,118,5)" rx="2" ry="2" />
<text x="1124.67" y="991.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="299.8" y="1125" width="0.2" height="15.0" fill="rgb(239,33,2)" rx="2" ry="2" />
<text x="302.79" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="378.5" y="901" width="0.3" height="15.0" fill="rgb(217,95,11)" rx="2" ry="2" />
<text x="381.54" y="911.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="881.2" y="373" width="0.3" height="15.0" fill="rgb(212,132,45)" rx="2" ry="2" />
<text x="884.25" y="383.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="904.0" y="693" width="0.2" height="15.0" fill="rgb(206,176,6)" rx="2" ry="2" />
<text x="906.96" y="703.5" ></text>
</g>
<g >
<title>alloc_empty_file (10,101,010 samples, 0.02%)</title><rect x="931.5" y="805" width="0.2" height="15.0" fill="rgb(238,187,13)" rx="2" ry="2" />
<text x="934.46" y="815.5" ></text>
</g>
<g >
<title>mntput_no_expire (10,101,010 samples, 0.02%)</title><rect x="725.2" y="869" width="0.2" height="15.0" fill="rgb(226,37,36)" rx="2" ry="2" />
<text x="728.21" y="879.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="800.0" y="773" width="0.4" height="15.0" fill="rgb(242,127,29)" rx="2" ry="2" />
<text x="803.00" y="783.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="913.1" y="917" width="0.2" height="15.0" fill="rgb(221,165,43)" rx="2" ry="2" />
<text x="916.12" y="927.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="244.0" y="933" width="0.2" height="15.0" fill="rgb(252,173,36)" rx="2" ry="2" />
<text x="246.96" y="943.5" ></text>
</g>
<g >
<title>__x64_sys_read (20,202,020 samples, 0.04%)</title><rect x="946.5" y="997" width="0.4" height="15.0" fill="rgb(220,199,8)" rx="2" ry="2" />
<text x="949.46" y="1007.5" ></text>
</g>
<g >
<title>ZEND_FETCH_LIST_R_SPEC_TMPVARCV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="693.5" y="1125" width="0.3" height="15.0" fill="rgb(232,10,37)" rx="2" ry="2" />
<text x="696.54" y="1135.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="687.5" y="965" width="0.4" height="15.0" fill="rgb(208,71,10)" rx="2" ry="2" />
<text x="690.50" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (101,010,100 samples, 0.18%)</title><rect x="939.4" y="533" width="2.1" height="15.0" fill="rgb(230,18,11)" rx="2" ry="2" />
<text x="942.38" y="543.5" ></text>
</g>
<g >
<title>getsockopt (30,303,030 samples, 0.05%)</title><rect x="1133.1" y="1205" width="0.7" height="15.0" fill="rgb(232,38,21)" rx="2" ry="2" />
<text x="1136.12" y="1215.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1045" width="0.2" height="15.0" fill="rgb(235,24,25)" rx="2" ry="2" />
<text x="693.62" y="1055.5" ></text>
</g>
<g >
<title>apparmor_cred_prepare (10,101,010 samples, 0.02%)</title><rect x="1006.5" y="949" width="0.2" height="15.0" fill="rgb(208,220,24)" rx="2" ry="2" />
<text x="1009.46" y="959.5" ></text>
</g>
<g >
<title>do_IRQ (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1173" width="0.4" height="15.0" fill="rgb(223,64,22)" rx="2" ry="2" />
<text x="33.21" y="1183.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (50,505,050 samples, 0.09%)</title><rect x="360.6" y="1109" width="1.1" height="15.0" fill="rgb(212,170,29)" rx="2" ry="2" />
<text x="363.62" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1038.5" y="1109" width="0.3" height="15.0" fill="rgb(207,215,21)" rx="2" ry="2" />
<text x="1041.54" y="1119.5" ></text>
</g>
<g >
<title>php_explode (10,101,010 samples, 0.02%)</title><rect x="281.9" y="1109" width="0.2" height="15.0" fill="rgb(250,58,18)" rx="2" ry="2" />
<text x="284.88" y="1119.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="677.7" y="805" width="0.4" height="15.0" fill="rgb(234,123,4)" rx="2" ry="2" />
<text x="680.71" y="815.5" ></text>
</g>
<g >
<title>fq_codel_dequeue (10,101,010 samples, 0.02%)</title><rect x="904.0" y="613" width="0.2" height="15.0" fill="rgb(244,136,0)" rx="2" ry="2" />
<text x="906.96" y="623.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="443.3" y="1077" width="0.2" height="15.0" fill="rgb(205,168,7)" rx="2" ry="2" />
<text x="446.33" y="1087.5" ></text>
</g>
<g >
<title>zend_include_or_eval (60,606,060 samples, 0.11%)</title><rect x="269.6" y="981" width="1.2" height="15.0" fill="rgb(220,118,25)" rx="2" ry="2" />
<text x="272.58" y="991.5" ></text>
</g>
<g >
<title>zend_hash_add_new (20,202,020 samples, 0.04%)</title><rect x="288.1" y="1109" width="0.4" height="15.0" fill="rgb(241,16,53)" rx="2" ry="2" />
<text x="291.12" y="1119.5" ></text>
</g>
<g >
<title>copy_user_generic_string (10,101,010 samples, 0.02%)</title><rect x="946.5" y="869" width="0.2" height="15.0" fill="rgb(247,16,45)" rx="2" ry="2" />
<text x="949.46" y="879.5" ></text>
</g>
<g >
<title>__fxstat64@plt (10,101,010 samples, 0.02%)</title><rect x="1041.0" y="1077" width="0.2" height="15.0" fill="rgb(243,78,12)" rx="2" ry="2" />
<text x="1044.04" y="1087.5" ></text>
</g>
<g >
<title>__this_module (20,202,020 samples, 0.04%)</title><rect x="435.6" y="1029" width="0.4" height="15.0" fill="rgb(230,107,34)" rx="2" ry="2" />
<text x="438.62" y="1039.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (10,101,010 samples, 0.02%)</title><rect x="302.9" y="869" width="0.2" height="15.0" fill="rgb(238,24,29)" rx="2" ry="2" />
<text x="305.92" y="879.5" ></text>
</g>
<g >
<title>mysqlnd_run_authentication (252,525,250 samples, 0.44%)</title><rect x="924.4" y="1013" width="5.2" height="15.0" fill="rgb(215,184,54)" rx="2" ry="2" />
<text x="927.38" y="1023.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="1176.5" y="1061" width="0.2" height="15.0" fill="rgb(254,177,29)" rx="2" ry="2" />
<text x="1179.46" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (272,727,270 samples, 0.48%)</title><rect x="909.2" y="1013" width="5.6" height="15.0" fill="rgb(230,150,17)" rx="2" ry="2" />
<text x="912.17" y="1023.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="72.1" y="1077" width="0.2" height="15.0" fill="rgb(223,207,3)" rx="2" ry="2" />
<text x="75.08" y="1087.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (10,101,010 samples, 0.02%)</title><rect x="496.7" y="1061" width="0.2" height="15.0" fill="rgb(247,33,26)" rx="2" ry="2" />
<text x="499.67" y="1071.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="700.0" y="965" width="0.2" height="15.0" fill="rgb(223,43,10)" rx="2" ry="2" />
<text x="703.00" y="975.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1061" width="0.2" height="15.0" fill="rgb(248,187,29)" rx="2" ry="2" />
<text x="1081.33" y="1071.5" ></text>
</g>
<g >
<title>finish_task_switch (20,202,020 samples, 0.04%)</title><rect x="194.0" y="1013" width="0.4" height="15.0" fill="rgb(245,24,3)" rx="2" ry="2" />
<text x="196.96" y="1023.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (20,202,020 samples, 0.04%)</title><rect x="914.0" y="949" width="0.4" height="15.0" fill="rgb(237,204,40)" rx="2" ry="2" />
<text x="916.96" y="959.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="677.7" y="821" width="0.4" height="15.0" fill="rgb(244,71,9)" rx="2" ry="2" />
<text x="680.71" y="831.5" ></text>
</g>
<g >
<title>zend_hash_do_resize.part.0 (10,101,010 samples, 0.02%)</title><rect x="799.4" y="741" width="0.2" height="15.0" fill="rgb(226,169,35)" rx="2" ry="2" />
<text x="802.38" y="751.5" ></text>
</g>
<g >
<title>__libc_alloca_cutoff (20,202,020 samples, 0.04%)</title><rect x="1056.2" y="1109" width="0.5" height="15.0" fill="rgb(246,0,45)" rx="2" ry="2" />
<text x="1059.25" y="1119.5" ></text>
</g>
<g >
<title>compile_filename (383,838,380 samples, 0.67%)</title><rect x="874.0" y="997" width="7.9" height="15.0" fill="rgb(229,226,13)" rx="2" ry="2" />
<text x="876.96" y="1007.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="524.4" y="853" width="0.2" height="15.0" fill="rgb(236,214,27)" rx="2" ry="2" />
<text x="527.38" y="863.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (30,303,030 samples, 0.05%)</title><rect x="283.5" y="965" width="0.7" height="15.0" fill="rgb(233,221,7)" rx="2" ry="2" />
<text x="286.54" y="975.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (60,606,060 samples, 0.11%)</title><rect x="1125.8" y="965" width="1.3" height="15.0" fill="rgb(248,12,3)" rx="2" ry="2" />
<text x="1128.83" y="975.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="800.2" y="725" width="0.2" height="15.0" fill="rgb(213,167,46)" rx="2" ry="2" />
<text x="803.21" y="735.5" ></text>
</g>
<g >
<title>ret_from_intr (20,202,020 samples, 0.04%)</title><rect x="244.0" y="1125" width="0.4" height="15.0" fill="rgb(219,16,35)" rx="2" ry="2" />
<text x="246.96" y="1135.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_set_client_option_pub (20,202,020 samples, 0.04%)</title><rect x="1051.0" y="1109" width="0.5" height="15.0" fill="rgb(238,29,3)" rx="2" ry="2" />
<text x="1054.04" y="1119.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="344.8" y="997" width="0.2" height="15.0" fill="rgb(247,30,23)" rx="2" ry="2" />
<text x="347.79" y="1007.5" ></text>
</g>
<g >
<title>__x64_sys_newstat (2,767,676,740 samples, 4.84%)</title><rect x="370.2" y="1061" width="57.1" height="15.0" fill="rgb(224,68,29)" rx="2" ry="2" />
<text x="373.21" y="1071.5" >__x64_..</text>
</g>
<g >
<title>zend_fetch_debug_backtrace (303,030,300 samples, 0.53%)</title><rect x="760.0" y="1077" width="6.2" height="15.0" fill="rgb(209,119,48)" rx="2" ry="2" />
<text x="763.00" y="1087.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="307.7" y="1093" width="0.2" height="15.0" fill="rgb(207,25,37)" rx="2" ry="2" />
<text x="310.71" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_leave_nested_func_helper (10,101,010 samples, 0.02%)</title><rect x="772.3" y="1029" width="0.2" height="15.0" fill="rgb(251,72,18)" rx="2" ry="2" />
<text x="775.29" y="1039.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="675.8" y="965" width="0.2" height="15.0" fill="rgb(206,144,29)" rx="2" ry="2" />
<text x="678.83" y="975.5" ></text>
</g>
<g >
<title>zend_call_known_function (727,272,720 samples, 1.27%)</title><rect x="1004.4" y="1077" width="15.0" height="15.0" fill="rgb(216,87,2)" rx="2" ry="2" />
<text x="1007.38" y="1087.5" ></text>
</g>
<g >
<title>ovl_get_acl (20,202,020 samples, 0.04%)</title><rect x="900.6" y="917" width="0.4" height="15.0" fill="rgb(213,191,28)" rx="2" ry="2" />
<text x="903.62" y="927.5" ></text>
</g>
<g >
<title>__fput (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1013" width="0.5" height="15.0" fill="rgb(245,98,5)" rx="2" ry="2" />
<text x="1026.33" y="1023.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="377.9" y="869" width="0.2" height="15.0" fill="rgb(219,29,1)" rx="2" ry="2" />
<text x="380.92" y="879.5" ></text>
</g>
<g >
<title>filename_lookup (30,303,030 samples, 0.05%)</title><rect x="956.9" y="997" width="0.6" height="15.0" fill="rgb(217,152,8)" rx="2" ry="2" />
<text x="959.88" y="1007.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="310.6" y="1109" width="0.2" height="15.0" fill="rgb(206,165,2)" rx="2" ry="2" />
<text x="313.62" y="1119.5" ></text>
</g>
<g >
<title>timelib_parse_from_format (20,202,020 samples, 0.04%)</title><rect x="1021.0" y="1093" width="0.5" height="15.0" fill="rgb(205,184,32)" rx="2" ry="2" />
<text x="1024.04" y="1103.5" ></text>
</g>
<g >
<title>audit_copy_inode (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="1061" width="0.2" height="15.0" fill="rgb(228,78,27)" rx="2" ry="2" />
<text x="1124.67" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="30.2" y="869" width="0.2" height="15.0" fill="rgb(242,165,5)" rx="2" ry="2" />
<text x="33.21" y="879.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1120.8" y="1125" width="0.2" height="15.0" fill="rgb(207,207,3)" rx="2" ry="2" />
<text x="1123.83" y="1135.5" ></text>
</g>
<g >
<title>ip_output (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="885" width="0.9" height="15.0" fill="rgb(210,224,47)" rx="2" ry="2" />
<text x="1035.92" y="895.5" ></text>
</g>
<g >
<title>zif_array_map (10,101,010 samples, 0.02%)</title><rect x="498.8" y="1125" width="0.2" height="15.0" fill="rgb(253,115,25)" rx="2" ry="2" />
<text x="501.75" y="1135.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="946.9" y="789" width="0.2" height="15.0" fill="rgb(246,214,11)" rx="2" ry="2" />
<text x="949.88" y="799.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="313.1" y="1125" width="0.7" height="15.0" fill="rgb(221,216,27)" rx="2" ry="2" />
<text x="316.12" y="1135.5" ></text>
</g>
<g >
<title>zend_include_or_eval (60,606,060 samples, 0.11%)</title><rect x="704.4" y="1109" width="1.2" height="15.0" fill="rgb(240,220,5)" rx="2" ry="2" />
<text x="707.38" y="1119.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="965" width="0.2" height="15.0" fill="rgb(214,9,4)" rx="2" ry="2" />
<text x="1090.50" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="789.0" y="789" width="0.2" height="15.0" fill="rgb(254,40,22)" rx="2" ry="2" />
<text x="791.96" y="799.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (20,202,020 samples, 0.04%)</title><rect x="525.8" y="1029" width="0.4" height="15.0" fill="rgb(241,125,53)" rx="2" ry="2" />
<text x="528.83" y="1039.5" ></text>
</g>
<g >
<title>walk_component (10,101,010 samples, 0.02%)</title><rect x="205.6" y="1029" width="0.2" height="15.0" fill="rgb(233,228,5)" rx="2" ry="2" />
<text x="208.62" y="1039.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="534.8" y="869" width="0.2" height="15.0" fill="rgb(205,117,35)" rx="2" ry="2" />
<text x="537.79" y="879.5" ></text>
</g>
<g >
<title>memset (60,606,060 samples, 0.11%)</title><rect x="421.5" y="981" width="1.2" height="15.0" fill="rgb(214,129,51)" rx="2" ry="2" />
<text x="424.46" y="991.5" ></text>
</g>
<g >
<title>zend_std_cast_object_tostring (80,808,080 samples, 0.14%)</title><rect x="479.4" y="1093" width="1.6" height="15.0" fill="rgb(210,197,6)" rx="2" ry="2" />
<text x="482.38" y="1103.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="982.9" y="949" width="0.2" height="15.0" fill="rgb(254,17,46)" rx="2" ry="2" />
<text x="985.92" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.09%)</title><rect x="1032.9" y="1093" width="1.1" height="15.0" fill="rgb(220,160,38)" rx="2" ry="2" />
<text x="1035.92" y="1103.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1061" width="0.2" height="15.0" fill="rgb(236,43,41)" rx="2" ry="2" />
<text x="474.67" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_update (70,707,070 samples, 0.12%)</title><rect x="974.0" y="1109" width="1.4" height="15.0" fill="rgb(232,186,22)" rx="2" ry="2" />
<text x="976.96" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="314.2" y="1125" width="0.6" height="15.0" fill="rgb(205,150,0)" rx="2" ry="2" />
<text x="317.17" y="1135.5" ></text>
</g>
<g >
<title>virtqueue_kick_prepare (10,101,010 samples, 0.02%)</title><rect x="1089.8" y="85" width="0.2" height="15.0" fill="rgb(229,213,40)" rx="2" ry="2" />
<text x="1092.79" y="95.5" ></text>
</g>
<g >
<title>kfree_skbmem (10,101,010 samples, 0.02%)</title><rect x="1176.5" y="1077" width="0.2" height="15.0" fill="rgb(206,201,27)" rx="2" ry="2" />
<text x="1179.46" y="1087.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1048.3" y="1045" width="0.2" height="15.0" fill="rgb(213,119,10)" rx="2" ry="2" />
<text x="1051.33" y="1055.5" ></text>
</g>
<g >
<title>add_function (737,373,730 samples, 1.29%)</title><rect x="629.2" y="1109" width="15.2" height="15.0" fill="rgb(210,178,50)" rx="2" ry="2" />
<text x="632.17" y="1119.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="965" width="0.3" height="15.0" fill="rgb(238,164,14)" rx="2" ry="2" />
<text x="1044.25" y="975.5" ></text>
</g>
<g >
<title>find_get_entry (10,101,010 samples, 0.02%)</title><rect x="946.7" y="869" width="0.2" height="15.0" fill="rgb(218,1,11)" rx="2" ry="2" />
<text x="949.67" y="879.5" ></text>
</g>
<g >
<title>__sk_dst_check (10,101,010 samples, 0.02%)</title><rect x="856.9" y="469" width="0.2" height="15.0" fill="rgb(219,149,25)" rx="2" ry="2" />
<text x="859.88" y="479.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="183.8" y="677" width="0.2" height="15.0" fill="rgb(223,16,52)" rx="2" ry="2" />
<text x="186.75" y="687.5" ></text>
</g>
<g >
<title>persistent_compile_file (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="821" width="1.5" height="15.0" fill="rgb(213,199,47)" rx="2" ry="2" />
<text x="1005.50" y="831.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="196.2" y="1045" width="0.3" height="15.0" fill="rgb(244,119,9)" rx="2" ry="2" />
<text x="199.25" y="1055.5" ></text>
</g>
<g >
<title>mysqlnd_connection_init (20,202,020 samples, 0.04%)</title><rect x="955.2" y="1109" width="0.4" height="15.0" fill="rgb(209,191,9)" rx="2" ry="2" />
<text x="958.21" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (30,303,030 samples, 0.05%)</title><rect x="745.8" y="965" width="0.7" height="15.0" fill="rgb(210,221,35)" rx="2" ry="2" />
<text x="748.83" y="975.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="522.1" y="1045" width="0.2" height="15.0" fill="rgb(254,175,34)" rx="2" ry="2" />
<text x="525.08" y="1055.5" ></text>
</g>
<g >
<title>sapi_get_request_time (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1125" width="0.2" height="15.0" fill="rgb(218,83,30)" rx="2" ry="2" />
<text x="1106.96" y="1135.5" ></text>
</g>
<g >
<title>do_faccessat (20,202,020 samples, 0.04%)</title><rect x="500.6" y="965" width="0.4" height="15.0" fill="rgb(218,10,40)" rx="2" ry="2" />
<text x="503.62" y="975.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="427.1" y="821" width="0.2" height="15.0" fill="rgb(252,182,14)" rx="2" ry="2" />
<text x="430.08" y="831.5" ></text>
</g>
<g >
<title>prepare_creds (10,101,010 samples, 0.02%)</title><rect x="742.7" y="693" width="0.2" height="15.0" fill="rgb(236,21,54)" rx="2" ry="2" />
<text x="745.71" y="703.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="644.2" y="1061" width="0.2" height="15.0" fill="rgb(243,219,23)" rx="2" ry="2" />
<text x="647.17" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1141" width="0.4" height="15.0" fill="rgb(217,64,53)" rx="2" ry="2" />
<text x="33.21" y="1151.5" ></text>
</g>
<g >
<title>security_inode_permission (10,101,010 samples, 0.02%)</title><rect x="724.6" y="885" width="0.2" height="15.0" fill="rgb(246,228,48)" rx="2" ry="2" />
<text x="727.58" y="895.5" ></text>
</g>
<g >
<title>shutdown_compiler (10,101,010 samples, 0.02%)</title><rect x="1091.9" y="1141" width="0.2" height="15.0" fill="rgb(219,175,49)" rx="2" ry="2" />
<text x="1094.88" y="1151.5" ></text>
</g>
<g >
<title>TRACE-189$/usr/wikia/mw137/current/src/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php$22 (20,202,020 samples, 0.04%)</title><rect x="773.1" y="1045" width="0.4" height="15.0" fill="rgb(236,78,17)" rx="2" ry="2" />
<text x="776.12" y="1055.5" ></text>
</g>
<g >
<title>zif_is_callable (40,404,040 samples, 0.07%)</title><rect x="1041.9" y="1125" width="0.8" height="15.0" fill="rgb(249,154,46)" rx="2" ry="2" />
<text x="1044.88" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_W_SPEC_CV_CONST_HANDLER (70,707,070 samples, 0.12%)</title><rect x="691.7" y="1125" width="1.4" height="15.0" fill="rgb(214,84,5)" rx="2" ry="2" />
<text x="694.67" y="1135.5" ></text>
</g>
<g >
<title>strnlen (10,101,010 samples, 0.02%)</title><rect x="956.9" y="741" width="0.2" height="15.0" fill="rgb(249,154,27)" rx="2" ry="2" />
<text x="959.88" y="751.5" ></text>
</g>
<g >
<title>__fput (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1125" width="0.4" height="15.0" fill="rgb(244,63,15)" rx="2" ry="2" />
<text x="1147.38" y="1135.5" ></text>
</g>
<g >
<title>__kfree_skb (10,101,010 samples, 0.02%)</title><rect x="682.1" y="661" width="0.2" height="15.0" fill="rgb(240,136,26)" rx="2" ry="2" />
<text x="685.08" y="671.5" ></text>
</g>
<g >
<title>zm_deactivate_phar (10,101,010 samples, 0.02%)</title><rect x="1102.5" y="1157" width="0.2" height="15.0" fill="rgb(239,4,7)" rx="2" ry="2" />
<text x="1105.50" y="1167.5" ></text>
</g>
<g >
<title>__socket (70,707,070 samples, 0.12%)</title><rect x="931.0" y="933" width="1.5" height="15.0" fill="rgb(232,112,54)" rx="2" ry="2" />
<text x="934.04" y="943.5" ></text>
</g>
<g >
<title>rc_dtor_func (10,101,010 samples, 0.02%)</title><rect x="969.8" y="1093" width="0.2" height="15.0" fill="rgb(228,114,9)" rx="2" ry="2" />
<text x="972.79" y="1103.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="1013" width="0.3" height="15.0" fill="rgb(252,95,38)" rx="2" ry="2" />
<text x="1044.25" y="1023.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="533.5" y="869" width="0.3" height="15.0" fill="rgb(244,14,38)" rx="2" ry="2" />
<text x="536.54" y="879.5" ></text>
</g>
<g >
<title>fpm_request_reading_headers (10,101,010 samples, 0.02%)</title><rect x="206.7" y="1157" width="0.2" height="15.0" fill="rgb(244,192,11)" rx="2" ry="2" />
<text x="209.67" y="1167.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="709" width="1.7" height="15.0" fill="rgb(240,152,32)" rx="2" ry="2" />
<text x="1028.00" y="719.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="905.0" y="917" width="0.2" height="15.0" fill="rgb(239,5,3)" rx="2" ry="2" />
<text x="908.00" y="927.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1109" width="0.2" height="15.0" fill="rgb(248,123,25)" rx="2" ry="2" />
<text x="691.96" y="1119.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="285.0" y="1109" width="0.2" height="15.0" fill="rgb(246,121,12)" rx="2" ry="2" />
<text x="288.00" y="1119.5" ></text>
</g>
<g >
<title>zend_create_closure (20,202,020 samples, 0.04%)</title><rect x="482.5" y="1109" width="0.4" height="15.0" fill="rgb(247,218,11)" rx="2" ry="2" />
<text x="485.50" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1115.0" y="1077" width="0.2" height="15.0" fill="rgb(214,201,15)" rx="2" ry="2" />
<text x="1118.00" y="1087.5" ></text>
</g>
<g >
<title>tcp_data_ready (10,101,010 samples, 0.02%)</title><rect x="378.5" y="661" width="0.3" height="15.0" fill="rgb(252,162,0)" rx="2" ry="2" />
<text x="381.54" y="671.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="344.4" y="1109" width="0.2" height="15.0" fill="rgb(240,177,19)" rx="2" ry="2" />
<text x="347.38" y="1119.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (20,202,020 samples, 0.04%)</title><rect x="1114.8" y="1109" width="0.4" height="15.0" fill="rgb(212,161,46)" rx="2" ry="2" />
<text x="1117.79" y="1119.5" ></text>
</g>
<g >
<title>mntget (20,202,020 samples, 0.04%)</title><rect x="534.2" y="885" width="0.4" height="15.0" fill="rgb(244,65,41)" rx="2" ry="2" />
<text x="537.17" y="895.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="949" width="0.2" height="15.0" fill="rgb(239,31,35)" rx="2" ry="2" />
<text x="1022.79" y="959.5" ></text>
</g>
<g >
<title>zend_hash_add (40,404,040 samples, 0.07%)</title><rect x="863.5" y="821" width="0.9" height="15.0" fill="rgb(215,118,36)" rx="2" ry="2" />
<text x="866.54" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="739.6" y="885" width="0.6" height="15.0" fill="rgb(245,135,29)" rx="2" ry="2" />
<text x="742.58" y="895.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (20,202,020 samples, 0.04%)</title><rect x="941.0" y="453" width="0.5" height="15.0" fill="rgb(230,143,54)" rx="2" ry="2" />
<text x="944.04" y="463.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="517.7" y="1061" width="0.2" height="15.0" fill="rgb(253,190,19)" rx="2" ry="2" />
<text x="520.71" y="1071.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (20,202,020 samples, 0.04%)</title><rect x="675.8" y="1045" width="0.4" height="15.0" fill="rgb(237,98,40)" rx="2" ry="2" />
<text x="678.83" y="1055.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="501.5" y="965" width="0.2" height="15.0" fill="rgb(230,55,3)" rx="2" ry="2" />
<text x="504.46" y="975.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="395.4" y="757" width="0.2" height="15.0" fill="rgb(234,124,49)" rx="2" ry="2" />
<text x="398.42" y="767.5" ></text>
</g>
<g >
<title>__audit_inode (30,303,030 samples, 0.05%)</title><rect x="956.9" y="981" width="0.6" height="15.0" fill="rgb(209,35,53)" rx="2" ry="2" />
<text x="959.88" y="991.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="688.8" y="1077" width="0.2" height="15.0" fill="rgb(236,48,21)" rx="2" ry="2" />
<text x="691.75" y="1087.5" ></text>
</g>
<g >
<title>zend_compare (10,101,010 samples, 0.02%)</title><rect x="487.7" y="1109" width="0.2" height="15.0" fill="rgb(238,57,23)" rx="2" ry="2" />
<text x="490.71" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.12%)</title><rect x="933.1" y="901" width="1.5" height="15.0" fill="rgb(210,192,31)" rx="2" ry="2" />
<text x="936.12" y="911.5" ></text>
</g>
<g >
<title>passthru_features_check (10,101,010 samples, 0.02%)</title><rect x="1165.6" y="853" width="0.2" height="15.0" fill="rgb(205,190,30)" rx="2" ry="2" />
<text x="1168.62" y="863.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="949" width="0.2" height="15.0" fill="rgb(217,203,16)" rx="2" ry="2" />
<text x="1099.04" y="959.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="777.5" y="1013" width="0.2" height="15.0" fill="rgb(230,120,47)" rx="2" ry="2" />
<text x="780.50" y="1023.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="395.4" y="741" width="0.2" height="15.0" fill="rgb(220,28,30)" rx="2" ry="2" />
<text x="398.42" y="751.5" ></text>
</g>
<g >
<title>dput (80,808,080 samples, 0.14%)</title><rect x="396.5" y="933" width="1.6" height="15.0" fill="rgb(234,130,25)" rx="2" ry="2" />
<text x="399.46" y="943.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1093" width="0.3" height="15.0" fill="rgb(215,95,5)" rx="2" ry="2" />
<text x="489.25" y="1103.5" ></text>
</g>
<g >
<title>schedule (20,202,020 samples, 0.04%)</title><rect x="1176.7" y="1045" width="0.4" height="15.0" fill="rgb(236,78,52)" rx="2" ry="2" />
<text x="1179.67" y="1055.5" ></text>
</g>
<g >
<title>add_function (50,505,050 samples, 0.09%)</title><rect x="248.3" y="1109" width="1.1" height="15.0" fill="rgb(241,123,33)" rx="2" ry="2" />
<text x="251.33" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (20,202,020 samples, 0.04%)</title><rect x="799.6" y="741" width="0.4" height="15.0" fill="rgb(235,197,32)" rx="2" ry="2" />
<text x="802.58" y="751.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="684.6" y="805" width="0.2" height="15.0" fill="rgb(208,130,43)" rx="2" ry="2" />
<text x="687.58" y="815.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (30,303,030 samples, 0.05%)</title><rect x="1126.5" y="933" width="0.6" height="15.0" fill="rgb(233,216,10)" rx="2" ry="2" />
<text x="1129.46" y="943.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CV_HANDLER (131,313,130 samples, 0.23%)</title><rect x="624.4" y="1125" width="2.7" height="15.0" fill="rgb(224,11,31)" rx="2" ry="2" />
<text x="627.38" y="1135.5" ></text>
</g>
<g >
<title>nf_nat_masquerade_ipv4 (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="405" width="0.4" height="15.0" fill="rgb(222,224,8)" rx="2" ry="2" />
<text x="1132.58" y="415.5" ></text>
</g>
<g >
<title>inet_csk_destroy_sock (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="917" width="0.3" height="15.0" fill="rgb(251,20,1)" rx="2" ry="2" />
<text x="1026.54" y="927.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="922.7" y="901" width="0.2" height="15.0" fill="rgb(205,76,1)" rx="2" ry="2" />
<text x="925.71" y="911.5" ></text>
</g>
<g >
<title>var_destroy (10,101,010 samples, 0.02%)</title><rect x="202.3" y="1157" width="0.2" height="15.0" fill="rgb(208,62,12)" rx="2" ry="2" />
<text x="205.29" y="1167.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1093" width="0.9" height="15.0" fill="rgb(241,65,22)" rx="2" ry="2" />
<text x="756.33" y="1103.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (20,202,020 samples, 0.04%)</title><rect x="768.3" y="1061" width="0.5" height="15.0" fill="rgb(243,88,46)" rx="2" ry="2" />
<text x="771.33" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (434,343,430 samples, 0.76%)</title><rect x="674.6" y="1109" width="8.9" height="15.0" fill="rgb(222,15,52)" rx="2" ry="2" />
<text x="677.58" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (80,808,080 samples, 0.14%)</title><rect x="921.2" y="997" width="1.7" height="15.0" fill="rgb(254,116,22)" rx="2" ry="2" />
<text x="924.25" y="1007.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="447.1" y="1093" width="0.2" height="15.0" fill="rgb(240,157,3)" rx="2" ry="2" />
<text x="450.08" y="1103.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1045" width="0.2" height="15.0" fill="rgb(254,178,44)" rx="2" ry="2" />
<text x="26.96" y="1055.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="530.8" y="1109" width="0.2" height="15.0" fill="rgb(241,87,15)" rx="2" ry="2" />
<text x="533.83" y="1119.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="782.3" y="885" width="0.2" height="15.0" fill="rgb(215,190,52)" rx="2" ry="2" />
<text x="785.29" y="895.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (10,101,010 samples, 0.02%)</title><rect x="731.2" y="773" width="0.3" height="15.0" fill="rgb(219,58,54)" rx="2" ry="2" />
<text x="734.25" y="783.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1109" width="0.2" height="15.0" fill="rgb(244,77,16)" rx="2" ry="2" />
<text x="1081.33" y="1119.5" ></text>
</g>
<g >
<title>preg_replace_common (10,101,010 samples, 0.02%)</title><rect x="1062.7" y="1141" width="0.2" height="15.0" fill="rgb(233,92,46)" rx="2" ry="2" />
<text x="1065.71" y="1151.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="343.5" y="1077" width="0.3" height="15.0" fill="rgb(209,223,42)" rx="2" ry="2" />
<text x="346.54" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="925.4" y="709" width="0.2" height="15.0" fill="rgb(210,53,51)" rx="2" ry="2" />
<text x="928.42" y="719.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="373" width="0.4" height="15.0" fill="rgb(246,26,15)" rx="2" ry="2" />
<text x="1092.58" y="383.5" ></text>
</g>
<g >
<title>TRACE-187$ResourceLoader::register$339 (191,919,190 samples, 0.34%)</title><rect x="328.3" y="1141" width="4.0" height="15.0" fill="rgb(213,70,15)" rx="2" ry="2" />
<text x="331.33" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="427.1" y="885" width="0.2" height="15.0" fill="rgb(229,9,45)" rx="2" ry="2" />
<text x="430.08" y="895.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="622.1" y="1093" width="0.2" height="15.0" fill="rgb(217,176,30)" rx="2" ry="2" />
<text x="625.08" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1045" width="0.3" height="15.0" fill="rgb(254,0,28)" rx="2" ry="2" />
<text x="1174.25" y="1055.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1131.9" y="1125" width="0.2" height="15.0" fill="rgb(244,162,37)" rx="2" ry="2" />
<text x="1134.88" y="1135.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1180.2" y="1061" width="0.2" height="15.0" fill="rgb(227,106,42)" rx="2" ry="2" />
<text x="1183.21" y="1071.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (40,404,040 samples, 0.07%)</title><rect x="939.4" y="165" width="0.8" height="15.0" fill="rgb(244,101,7)" rx="2" ry="2" />
<text x="942.38" y="175.5" ></text>
</g>
<g >
<title>TRACE-359$Composer\Autoload\ClassLoader::findFileWithExtension$545 (393,939,390 samples, 0.69%)</title><rect x="907.3" y="1061" width="8.1" height="15.0" fill="rgb(237,149,16)" rx="2" ry="2" />
<text x="910.29" y="1071.5" ></text>
</g>
<g >
<title>sapi_header_op (10,101,010 samples, 0.02%)</title><rect x="1030.4" y="1013" width="0.2" height="15.0" fill="rgb(252,102,24)" rx="2" ry="2" />
<text x="1033.42" y="1023.5" ></text>
</g>
<g >
<title>ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="466.0" y="1125" width="0.2" height="15.0" fill="rgb(245,88,48)" rx="2" ry="2" />
<text x="469.04" y="1135.5" ></text>
</g>
<g >
<title>persistent_compile_file (161,616,160 samples, 0.28%)</title><rect x="699.0" y="1077" width="3.3" height="15.0" fill="rgb(211,9,2)" rx="2" ry="2" />
<text x="701.96" y="1087.5" ></text>
</g>
<g >
<title>zend_call_function (10,101,010 samples, 0.02%)</title><rect x="997.7" y="1109" width="0.2" height="15.0" fill="rgb(205,104,29)" rx="2" ry="2" />
<text x="1000.71" y="1119.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (20,202,020 samples, 0.04%)</title><rect x="942.1" y="773" width="0.4" height="15.0" fill="rgb(223,207,18)" rx="2" ry="2" />
<text x="945.08" y="783.5" ></text>
</g>
<g >
<title>__errno_location (20,202,020 samples, 0.04%)</title><rect x="205.8" y="1157" width="0.4" height="15.0" fill="rgb(224,226,53)" rx="2" ry="2" />
<text x="208.83" y="1167.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="933" width="0.2" height="15.0" fill="rgb(250,47,46)" rx="2" ry="2" />
<text x="1117.17" y="943.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.02%)</title><rect x="941.2" y="421" width="0.3" height="15.0" fill="rgb(214,19,8)" rx="2" ry="2" />
<text x="944.25" y="431.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="390.2" y="805" width="0.2" height="15.0" fill="rgb(254,190,5)" rx="2" ry="2" />
<text x="393.21" y="815.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="689.0" y="885" width="0.2" height="15.0" fill="rgb(224,114,45)" rx="2" ry="2" />
<text x="691.96" y="895.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (5,666,666,610 samples, 9.90%)</title><rect x="769.0" y="1093" width="116.8" height="15.0" fill="rgb(239,93,44)" rx="2" ry="2" />
<text x="771.96" y="1103.5" >zend_lookup_cl..</text>
</g>
<g >
<title>zval_update_constant_ex (60,606,060 samples, 0.11%)</title><rect x="300.4" y="1061" width="1.3" height="15.0" fill="rgb(223,108,8)" rx="2" ry="2" />
<text x="303.42" y="1071.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="742.9" y="741" width="0.2" height="15.0" fill="rgb(213,223,25)" rx="2" ry="2" />
<text x="745.92" y="751.5" ></text>
</g>
<g >
<title>ZEND_CAST_SPEC_TMP_HANDLER (30,303,030 samples, 0.05%)</title><rect x="299.0" y="1125" width="0.6" height="15.0" fill="rgb(207,7,49)" rx="2" ry="2" />
<text x="301.96" y="1135.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="950.2" y="1013" width="0.2" height="15.0" fill="rgb(220,136,29)" rx="2" ry="2" />
<text x="953.21" y="1023.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (10,101,010 samples, 0.02%)</title><rect x="773.3" y="981" width="0.2" height="15.0" fill="rgb(213,5,36)" rx="2" ry="2" />
<text x="776.33" y="991.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="405" width="0.4" height="15.0" fill="rgb(221,142,47)" rx="2" ry="2" />
<text x="1092.58" y="415.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (40,404,040 samples, 0.07%)</title><rect x="288.1" y="1125" width="0.9" height="15.0" fill="rgb(221,92,37)" rx="2" ry="2" />
<text x="291.12" y="1135.5" ></text>
</g>
<g >
<title>TRACE-141$wfArrayPlus2d$2654 (50,505,050 samples, 0.09%)</title><rect x="248.3" y="1141" width="1.1" height="15.0" fill="rgb(253,34,27)" rx="2" ry="2" />
<text x="251.33" y="1151.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="422.7" y="901" width="0.2" height="15.0" fill="rgb(235,72,14)" rx="2" ry="2" />
<text x="425.71" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (50,505,050 samples, 0.09%)</title><rect x="204.8" y="1141" width="1.0" height="15.0" fill="rgb(235,156,30)" rx="2" ry="2" />
<text x="207.79" y="1151.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="244.0" y="901" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="246.96" y="911.5" ></text>
</g>
<g >
<title>php_mysqlnd_cmd_write (30,303,030 samples, 0.05%)</title><rect x="1051.5" y="1061" width="0.6" height="15.0" fill="rgb(207,141,20)" rx="2" ry="2" />
<text x="1054.46" y="1071.5" ></text>
</g>
<g >
<title>cgi_php_import_environment_variables (30,303,030 samples, 0.05%)</title><rect x="709.2" y="1029" width="0.6" height="15.0" fill="rgb(241,160,3)" rx="2" ry="2" />
<text x="712.17" y="1039.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="916.2" y="997" width="0.3" height="15.0" fill="rgb(207,23,8)" rx="2" ry="2" />
<text x="919.25" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="942.7" y="885" width="0.6" height="15.0" fill="rgb(235,116,8)" rx="2" ry="2" />
<text x="945.71" y="895.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="919.2" y="981" width="0.2" height="15.0" fill="rgb(217,201,45)" rx="2" ry="2" />
<text x="922.17" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="973.3" y="1061" width="0.2" height="15.0" fill="rgb(213,52,37)" rx="2" ry="2" />
<text x="976.33" y="1071.5" ></text>
</g>
<g >
<title>TRACE-396$Fandom\Includes\Logging\FandomLoggingSpi::getFormatter$112 (10,101,010 samples, 0.02%)</title><rect x="503.3" y="1141" width="0.2" height="15.0" fill="rgb(205,143,29)" rx="2" ry="2" />
<text x="506.33" y="1151.5" ></text>
</g>
<g >
<title>TRACE-30$Wikimedia\Services\ServiceContainer::destroy$101 (50,505,050 samples, 0.09%)</title><rect x="483.5" y="1141" width="1.1" height="15.0" fill="rgb(214,38,15)" rx="2" ry="2" />
<text x="486.54" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="981" width="0.2" height="15.0" fill="rgb(220,35,18)" rx="2" ry="2" />
<text x="1150.29" y="991.5" ></text>
</g>
<g >
<title>read (40,404,040 samples, 0.07%)</title><rect x="206.9" y="1157" width="0.8" height="15.0" fill="rgb(248,88,24)" rx="2" ry="2" />
<text x="209.88" y="1167.5" ></text>
</g>
<g >
<title>execute_ex (70,707,070 samples, 0.12%)</title><rect x="916.5" y="949" width="1.4" height="15.0" fill="rgb(217,201,1)" rx="2" ry="2" />
<text x="919.46" y="959.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="501.0" y="965" width="0.5" height="15.0" fill="rgb(226,10,48)" rx="2" ry="2" />
<text x="504.04" y="975.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="711.0" y="1109" width="0.2" height="15.0" fill="rgb(251,156,15)" rx="2" ry="2" />
<text x="714.04" y="1119.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="32.3" y="965" width="0.2" height="15.0" fill="rgb(212,160,51)" rx="2" ry="2" />
<text x="35.29" y="975.5" ></text>
</g>
<g >
<title>tcp_send_mss (30,303,030 samples, 0.05%)</title><rect x="1167.5" y="1077" width="0.6" height="15.0" fill="rgb(225,134,45)" rx="2" ry="2" />
<text x="1170.50" y="1087.5" ></text>
</g>
<g >
<title>zend_throw_exception_object (10,101,010 samples, 0.02%)</title><rect x="997.1" y="1125" width="0.2" height="15.0" fill="rgb(218,219,35)" rx="2" ry="2" />
<text x="1000.08" y="1135.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (10,101,010 samples, 0.02%)</title><rect x="916.2" y="1013" width="0.3" height="15.0" fill="rgb(215,226,6)" rx="2" ry="2" />
<text x="919.25" y="1023.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1037.7" y="997" width="0.2" height="15.0" fill="rgb(226,44,36)" rx="2" ry="2" />
<text x="1040.71" y="1007.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_STATIC_PROP_SPEC_OP_DATA_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="646.2" y="1125" width="0.3" height="15.0" fill="rgb(218,147,26)" rx="2" ry="2" />
<text x="649.25" y="1135.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="946.9" y="885" width="0.2" height="15.0" fill="rgb(254,201,17)" rx="2" ry="2" />
<text x="949.88" y="895.5" ></text>
</g>
<g >
<title>accel_make_persistent_key (10,101,010 samples, 0.02%)</title><rect x="745.6" y="981" width="0.2" height="15.0" fill="rgb(214,97,5)" rx="2" ry="2" />
<text x="748.62" y="991.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1029" width="0.3" height="15.0" fill="rgb(234,145,1)" rx="2" ry="2" />
<text x="446.54" y="1039.5" ></text>
</g>
<g >
<title>ep_send_events_proc (10,101,010 samples, 0.02%)</title><rect x="209.2" y="1029" width="0.2" height="15.0" fill="rgb(229,20,47)" rx="2" ry="2" />
<text x="212.17" y="1039.5" ></text>
</g>
<g >
<title>zend_call_known_function (50,505,050 samples, 0.09%)</title><rect x="742.5" y="805" width="1.0" height="15.0" fill="rgb(244,52,41)" rx="2" ry="2" />
<text x="745.50" y="815.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="545.8" y="1141" width="0.4" height="15.0" fill="rgb(213,140,7)" rx="2" ry="2" />
<text x="548.83" y="1151.5" ></text>
</g>
<g >
<title>TRACE-260$Wikimedia\Rdbms\LoadBalancer::runPrimaryTransactionIdleCallbacks$1909 (20,202,020 samples, 0.04%)</title><rect x="469.0" y="1141" width="0.4" height="15.0" fill="rgb(210,137,29)" rx="2" ry="2" />
<text x="471.96" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1180.2" y="1077" width="0.2" height="15.0" fill="rgb(209,116,4)" rx="2" ry="2" />
<text x="1183.21" y="1087.5" ></text>
</g>
<g >
<title>zend_do_link_class (585,858,580 samples, 1.02%)</title><rect x="733.5" y="997" width="12.1" height="15.0" fill="rgb(226,19,6)" rx="2" ry="2" />
<text x="736.54" y="1007.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="764.6" y="1045" width="0.2" height="15.0" fill="rgb(242,170,9)" rx="2" ry="2" />
<text x="767.58" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="266.9" y="1077" width="0.2" height="15.0" fill="rgb(220,41,47)" rx="2" ry="2" />
<text x="269.88" y="1087.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1077" width="0.3" height="15.0" fill="rgb(219,172,49)" rx="2" ry="2" />
<text x="526.54" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (40,404,040 samples, 0.07%)</title><rect x="1011.5" y="981" width="0.8" height="15.0" fill="rgb(213,105,18)" rx="2" ry="2" />
<text x="1014.46" y="991.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (10,101,010 samples, 0.02%)</title><rect x="619.0" y="853" width="0.2" height="15.0" fill="rgb(215,173,49)" rx="2" ry="2" />
<text x="621.96" y="863.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="756.9" y="1125" width="0.2" height="15.0" fill="rgb(234,79,34)" rx="2" ry="2" />
<text x="759.88" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="881.2" y="773" width="0.3" height="15.0" fill="rgb(238,125,16)" rx="2" ry="2" />
<text x="884.25" y="783.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="718.3" y="725" width="0.2" height="15.0" fill="rgb(215,9,30)" rx="2" ry="2" />
<text x="721.33" y="735.5" ></text>
</g>
<g >
<title>zend_closure_new (141,414,140 samples, 0.25%)</title><rect x="667.5" y="1077" width="2.9" height="15.0" fill="rgb(236,20,45)" rx="2" ry="2" />
<text x="670.50" y="1087.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (151,515,150 samples, 0.26%)</title><rect x="729.2" y="1045" width="3.1" height="15.0" fill="rgb(214,80,25)" rx="2" ry="2" />
<text x="732.17" y="1055.5" ></text>
</g>
<g >
<title>dput (20,202,020 samples, 0.04%)</title><rect x="1088.5" y="853" width="0.5" height="15.0" fill="rgb(242,11,15)" rx="2" ry="2" />
<text x="1091.54" y="863.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1093" width="0.2" height="15.0" fill="rgb(248,45,1)" rx="2" ry="2" />
<text x="1095.08" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1125" width="0.3" height="15.0" fill="rgb(247,211,37)" rx="2" ry="2" />
<text x="526.54" y="1135.5" ></text>
</g>
<g >
<title>lookup_fast (10,101,010 samples, 0.02%)</title><rect x="205.6" y="1013" width="0.2" height="15.0" fill="rgb(207,139,18)" rx="2" ry="2" />
<text x="208.62" y="1023.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (20,202,020 samples, 0.04%)</title><rect x="721.9" y="1045" width="0.4" height="15.0" fill="rgb(215,51,6)" rx="2" ry="2" />
<text x="724.88" y="1055.5" ></text>
</g>
<g >
<title>__fget (20,202,020 samples, 0.04%)</title><rect x="1111.5" y="1093" width="0.4" height="15.0" fill="rgb(252,219,27)" rx="2" ry="2" />
<text x="1114.46" y="1103.5" ></text>
</g>
<g >
<title>iowrite16 (212,121,210 samples, 0.37%)</title><rect x="1153.5" y="325" width="4.4" height="15.0" fill="rgb(232,47,41)" rx="2" ry="2" />
<text x="1156.54" y="335.5" ></text>
</g>
<g >
<title>filename_lookup (10,101,010 samples, 0.02%)</title><rect x="205.6" y="1077" width="0.2" height="15.0" fill="rgb(241,119,22)" rx="2" ry="2" />
<text x="208.62" y="1087.5" ></text>
</g>
<g >
<title>_php_stream_write (191,919,190 samples, 0.34%)</title><rect x="1034.6" y="1109" width="3.9" height="15.0" fill="rgb(240,20,47)" rx="2" ry="2" />
<text x="1037.58" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="476.9" y="997" width="0.2" height="15.0" fill="rgb(211,171,28)" rx="2" ry="2" />
<text x="479.88" y="1007.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="390.2" y="837" width="0.2" height="15.0" fill="rgb(241,27,48)" rx="2" ry="2" />
<text x="393.21" y="847.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="904.0" y="949" width="0.2" height="15.0" fill="rgb(235,2,48)" rx="2" ry="2" />
<text x="906.96" y="959.5" ></text>
</g>
<g >
<title>async_page_fault (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1109" width="0.2" height="15.0" fill="rgb(208,41,7)" rx="2" ry="2" />
<text x="1106.96" y="1119.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="805.8" y="805" width="0.4" height="15.0" fill="rgb(230,48,39)" rx="2" ry="2" />
<text x="808.83" y="815.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="917" width="3.1" height="15.0" fill="rgb(220,159,38)" rx="2" ry="2" />
<text x="1187.58" y="927.5" ></text>
</g>
<g >
<title>ZEND_ROPE_ADD_SPEC_TMP_CV_HANDLER (30,303,030 samples, 0.05%)</title><rect x="452.9" y="1125" width="0.6" height="15.0" fill="rgb(207,215,9)" rx="2" ry="2" />
<text x="455.92" y="1135.5" ></text>
</g>
<g >
<title>skb_ext_add (10,101,010 samples, 0.02%)</title><rect x="1163.8" y="725" width="0.2" height="15.0" fill="rgb(247,29,4)" rx="2" ry="2" />
<text x="1166.75" y="735.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (161,616,160 samples, 0.28%)</title><rect x="532.3" y="1093" width="3.3" height="15.0" fill="rgb(254,29,48)" rx="2" ry="2" />
<text x="535.29" y="1103.5" ></text>
</g>
<g >
<title>__schedule (50,505,050 samples, 0.09%)</title><rect x="961.7" y="1061" width="1.0" height="15.0" fill="rgb(246,60,11)" rx="2" ry="2" />
<text x="964.67" y="1071.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="457.3" y="1061" width="0.2" height="15.0" fill="rgb(212,151,11)" rx="2" ry="2" />
<text x="460.29" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_update (141,414,140 samples, 0.25%)</title><rect x="611.7" y="1109" width="2.9" height="15.0" fill="rgb(250,222,35)" rx="2" ry="2" />
<text x="614.67" y="1119.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="622.3" y="1125" width="0.2" height="15.0" fill="rgb(239,9,18)" rx="2" ry="2" />
<text x="625.29" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="945.8" y="1045" width="0.2" height="15.0" fill="rgb(252,38,15)" rx="2" ry="2" />
<text x="948.83" y="1055.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="523.8" y="965" width="0.2" height="15.0" fill="rgb(225,147,42)" rx="2" ry="2" />
<text x="526.75" y="975.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="449.8" y="1109" width="0.2" height="15.0" fill="rgb(250,169,46)" rx="2" ry="2" />
<text x="452.79" y="1119.5" ></text>
</g>
<g >
<title>php_json_encode_zval (151,515,150 samples, 0.26%)</title><rect x="1045.4" y="1109" width="3.1" height="15.0" fill="rgb(247,82,17)" rx="2" ry="2" />
<text x="1048.42" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="729.8" y="965" width="0.2" height="15.0" fill="rgb(254,201,18)" rx="2" ry="2" />
<text x="732.79" y="975.5" ></text>
</g>
<g >
<title>lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="912.5" y="853" width="0.2" height="15.0" fill="rgb(251,136,25)" rx="2" ry="2" />
<text x="915.50" y="863.5" ></text>
</g>
<g >
<title>start_xmit (60,606,060 samples, 0.11%)</title><rect x="1185.2" y="405" width="1.3" height="15.0" fill="rgb(245,99,24)" rx="2" ry="2" />
<text x="1188.21" y="415.5" ></text>
</g>
<g >
<title>do_interface_implementation (10,101,010 samples, 0.02%)</title><rect x="270.8" y="949" width="0.2" height="15.0" fill="rgb(210,66,27)" rx="2" ry="2" />
<text x="273.83" y="959.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="654.2" y="1013" width="0.2" height="15.0" fill="rgb(215,113,1)" rx="2" ry="2" />
<text x="657.17" y="1023.5" ></text>
</g>
<g >
<title>spl_perform_autoload (80,808,080 samples, 0.14%)</title><rect x="303.1" y="837" width="1.7" height="15.0" fill="rgb(232,147,10)" rx="2" ry="2" />
<text x="306.12" y="847.5" ></text>
</g>
<g >
<title>php_mysqlnd_auth_response_read (80,808,080 samples, 0.14%)</title><rect x="926.2" y="981" width="1.7" height="15.0" fill="rgb(211,214,33)" rx="2" ry="2" />
<text x="929.25" y="991.5" ></text>
</g>
<g >
<title>getaddrinfo (10,101,010 samples, 0.02%)</title><rect x="1132.5" y="1205" width="0.2" height="15.0" fill="rgb(221,129,17)" rx="2" ry="2" />
<text x="1135.50" y="1215.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="524.4" y="901" width="0.2" height="15.0" fill="rgb(212,28,5)" rx="2" ry="2" />
<text x="527.38" y="911.5" ></text>
</g>
<g >
<title>generic_permission (20,202,020 samples, 0.04%)</title><rect x="390.8" y="901" width="0.4" height="15.0" fill="rgb(236,26,13)" rx="2" ry="2" />
<text x="393.83" y="911.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="193.8" y="997" width="0.2" height="15.0" fill="rgb(218,158,20)" rx="2" ry="2" />
<text x="196.75" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (50,505,050 samples, 0.09%)</title><rect x="500.6" y="997" width="1.1" height="15.0" fill="rgb(211,46,53)" rx="2" ry="2" />
<text x="503.62" y="1007.5" ></text>
</g>
<g >
<title>__x64_sys_accept (20,202,020 samples, 0.04%)</title><rect x="204.2" y="1125" width="0.4" height="15.0" fill="rgb(236,3,27)" rx="2" ry="2" />
<text x="207.17" y="1135.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="1032.7" y="965" width="0.2" height="15.0" fill="rgb(249,221,39)" rx="2" ry="2" />
<text x="1035.71" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="822.7" y="869" width="0.2" height="15.0" fill="rgb(228,185,3)" rx="2" ry="2" />
<text x="825.71" y="879.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="718.3" y="949" width="0.2" height="15.0" fill="rgb(240,123,49)" rx="2" ry="2" />
<text x="721.33" y="959.5" ></text>
</g>
<g >
<title>syscall_trace_enter (20,202,020 samples, 0.04%)</title><rect x="1063.5" y="1093" width="0.5" height="15.0" fill="rgb(233,188,54)" rx="2" ry="2" />
<text x="1066.54" y="1103.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1048.3" y="1061" width="0.2" height="15.0" fill="rgb(248,226,44)" rx="2" ry="2" />
<text x="1051.33" y="1071.5" ></text>
</g>
<g >
<title>__close (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1109" width="0.5" height="15.0" fill="rgb(211,213,22)" rx="2" ry="2" />
<text x="1026.33" y="1119.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="672.5" y="1013" width="0.2" height="15.0" fill="rgb(225,77,16)" rx="2" ry="2" />
<text x="675.50" y="1023.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="304.2" y="677" width="0.2" height="15.0" fill="rgb(227,106,38)" rx="2" ry="2" />
<text x="307.17" y="687.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="30.2" y="853" width="0.2" height="15.0" fill="rgb(245,9,36)" rx="2" ry="2" />
<text x="33.21" y="863.5" ></text>
</g>
<g >
<title>_php_stream_fopen_from_fd (10,101,010 samples, 0.02%)</title><rect x="950.4" y="1061" width="0.2" height="15.0" fill="rgb(243,209,53)" rx="2" ry="2" />
<text x="953.42" y="1071.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (20,202,020 samples, 0.04%)</title><rect x="184.2" y="1077" width="0.4" height="15.0" fill="rgb(213,185,32)" rx="2" ry="2" />
<text x="187.17" y="1087.5" ></text>
</g>
<g >
<title>[unknown] (50,505,050 samples, 0.09%)</title><rect x="34.4" y="1189" width="1.0" height="15.0" fill="rgb(239,39,1)" rx="2" ry="2" />
<text x="37.38" y="1199.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="475.2" y="1061" width="0.2" height="15.0" fill="rgb(210,13,34)" rx="2" ry="2" />
<text x="478.21" y="1071.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="202.5" y="981" width="0.2" height="15.0" fill="rgb(240,164,10)" rx="2" ry="2" />
<text x="205.50" y="991.5" ></text>
</g>
<g >
<title>zif_file_exists (10,101,010 samples, 0.02%)</title><rect x="727.5" y="1029" width="0.2" height="15.0" fill="rgb(236,194,16)" rx="2" ry="2" />
<text x="730.50" y="1039.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="534.8" y="805" width="0.2" height="15.0" fill="rgb(207,67,38)" rx="2" ry="2" />
<text x="537.79" y="815.5" ></text>
</g>
<g >
<title>receive_mergeable (10,101,010 samples, 0.02%)</title><rect x="539.6" y="1013" width="0.2" height="15.0" fill="rgb(222,41,27)" rx="2" ry="2" />
<text x="542.58" y="1023.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="448.5" y="1045" width="0.3" height="15.0" fill="rgb(218,4,12)" rx="2" ry="2" />
<text x="451.54" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (20,202,020 samples, 0.04%)</title><rect x="193.5" y="1061" width="0.5" height="15.0" fill="rgb(210,78,27)" rx="2" ry="2" />
<text x="196.54" y="1071.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="499.4" y="1093" width="0.2" height="15.0" fill="rgb(246,86,33)" rx="2" ry="2" />
<text x="502.38" y="1103.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_protocol_send_command_pub (30,303,030 samples, 0.05%)</title><rect x="1051.5" y="1077" width="0.6" height="15.0" fill="rgb(229,216,24)" rx="2" ry="2" />
<text x="1054.46" y="1087.5" ></text>
</g>
<g >
<title>netif_skb_features (10,101,010 samples, 0.02%)</title><rect x="1165.4" y="853" width="0.2" height="15.0" fill="rgb(226,223,40)" rx="2" ry="2" />
<text x="1168.42" y="863.5" ></text>
</g>
<g >
<title>timer_settime (40,404,040 samples, 0.07%)</title><rect x="1063.1" y="1141" width="0.9" height="15.0" fill="rgb(217,87,1)" rx="2" ry="2" />
<text x="1066.12" y="1151.5" ></text>
</g>
<g >
<title>receive_buf (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="869" width="0.2" height="15.0" fill="rgb(243,145,48)" rx="2" ry="2" />
<text x="1015.92" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="904.0" y="821" width="0.2" height="15.0" fill="rgb(244,9,22)" rx="2" ry="2" />
<text x="906.96" y="831.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="672.5" y="741" width="0.2" height="15.0" fill="rgb(237,173,44)" rx="2" ry="2" />
<text x="675.50" y="751.5" ></text>
</g>
<g >
<title>blk_update_request (10,101,010 samples, 0.02%)</title><rect x="696.2" y="997" width="0.3" height="15.0" fill="rgb(250,81,34)" rx="2" ry="2" />
<text x="699.25" y="1007.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="30.2" y="677" width="0.2" height="15.0" fill="rgb(240,211,12)" rx="2" ry="2" />
<text x="33.21" y="687.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (10,101,010 samples, 0.02%)</title><rect x="1150.8" y="933" width="0.2" height="15.0" fill="rgb(217,38,6)" rx="2" ry="2" />
<text x="1153.83" y="943.5" ></text>
</g>
<g >
<title>zend_accel_set_auto_globals (10,101,010 samples, 0.02%)</title><rect x="685.8" y="981" width="0.2" height="15.0" fill="rgb(232,97,13)" rx="2" ry="2" />
<text x="688.83" y="991.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="1119.2" y="1077" width="0.2" height="15.0" fill="rgb(250,9,0)" rx="2" ry="2" />
<text x="1122.17" y="1087.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="901" width="0.2" height="15.0" fill="rgb(225,200,5)" rx="2" ry="2" />
<text x="1022.79" y="911.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="946.9" y="901" width="0.2" height="15.0" fill="rgb(242,179,39)" rx="2" ry="2" />
<text x="949.88" y="911.5" ></text>
</g>
<g >
<title>zend_include_or_eval (121,212,120 samples, 0.21%)</title><rect x="1011.0" y="1029" width="2.5" height="15.0" fill="rgb(230,33,31)" rx="2" ry="2" />
<text x="1014.04" y="1039.5" ></text>
</g>
<g >
<title>zend_string_hash_func (10,101,010 samples, 0.02%)</title><rect x="767.3" y="917" width="0.2" height="15.0" fill="rgb(218,169,35)" rx="2" ry="2" />
<text x="770.29" y="927.5" ></text>
</g>
<g >
<title>rc_dtor_func (10,101,010 samples, 0.02%)</title><rect x="961.2" y="1125" width="0.3" height="15.0" fill="rgb(246,128,25)" rx="2" ry="2" />
<text x="964.25" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1029" width="0.2" height="15.0" fill="rgb(218,214,19)" rx="2" ry="2" />
<text x="1118.42" y="1039.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="773" width="0.2" height="15.0" fill="rgb(249,225,25)" rx="2" ry="2" />
<text x="1091.96" y="783.5" ></text>
</g>
<g >
<title>finish_task_switch (30,303,030 samples, 0.05%)</title><rect x="214.8" y="997" width="0.6" height="15.0" fill="rgb(218,175,29)" rx="2" ry="2" />
<text x="217.79" y="1007.5" ></text>
</g>
<g >
<title>pcre_get_compiled_regex_cache_ex (30,303,030 samples, 0.05%)</title><rect x="305.2" y="1109" width="0.6" height="15.0" fill="rgb(244,221,30)" rx="2" ry="2" />
<text x="308.21" y="1119.5" ></text>
</g>
<g >
<title>zend_objects_destroy_object (70,707,070 samples, 0.12%)</title><rect x="447.3" y="1109" width="1.5" height="15.0" fill="rgb(208,64,0)" rx="2" ry="2" />
<text x="450.29" y="1119.5" ></text>
</g>
<g >
<title>spl_perform_autoload (151,515,150 samples, 0.26%)</title><rect x="267.9" y="1045" width="3.1" height="15.0" fill="rgb(226,78,23)" rx="2" ry="2" />
<text x="270.92" y="1055.5" ></text>
</g>
<g >
<title>inode_permission (30,303,030 samples, 0.05%)</title><rect x="1121.9" y="1045" width="0.6" height="15.0" fill="rgb(241,203,31)" rx="2" ry="2" />
<text x="1124.88" y="1055.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1077" width="0.2" height="15.0" fill="rgb(247,64,50)" rx="2" ry="2" />
<text x="1118.42" y="1087.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="495.4" y="1109" width="0.2" height="15.0" fill="rgb(239,156,48)" rx="2" ry="2" />
<text x="498.42" y="1119.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="219.6" y="1061" width="0.2" height="15.0" fill="rgb(214,70,17)" rx="2" ry="2" />
<text x="222.58" y="1071.5" ></text>
</g>
<g >
<title>destroy_inode (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="773" width="0.3" height="15.0" fill="rgb(243,107,42)" rx="2" ry="2" />
<text x="1091.54" y="783.5" ></text>
</g>
<g >
<title>path_lookupat (20,202,020 samples, 0.04%)</title><rect x="797.1" y="805" width="0.4" height="15.0" fill="rgb(231,9,54)" rx="2" ry="2" />
<text x="800.08" y="815.5" ></text>
</g>
<g >
<title>ZEND_BIND_STATIC_SPEC_CV_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="447.9" y="1029" width="0.2" height="15.0" fill="rgb(205,194,49)" rx="2" ry="2" />
<text x="450.92" y="1039.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="856.9" y="581" width="0.2" height="15.0" fill="rgb(208,59,4)" rx="2" ry="2" />
<text x="859.88" y="591.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1077" width="0.2" height="15.0" fill="rgb(252,156,45)" rx="2" ry="2" />
<text x="26.96" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="976.9" y="1061" width="0.2" height="15.0" fill="rgb(224,107,0)" rx="2" ry="2" />
<text x="979.88" y="1071.5" ></text>
</g>
<g >
<title>body (20,202,020 samples, 0.04%)</title><rect x="1048.5" y="1093" width="0.5" height="15.0" fill="rgb(241,212,7)" rx="2" ry="2" />
<text x="1051.54" y="1103.5" ></text>
</g>
<g >
<title>getname_flags (10,101,010 samples, 0.02%)</title><rect x="902.3" y="1029" width="0.2" height="15.0" fill="rgb(245,171,52)" rx="2" ry="2" />
<text x="905.29" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (70,707,070 samples, 0.12%)</title><rect x="939.4" y="357" width="1.4" height="15.0" fill="rgb(253,105,15)" rx="2" ry="2" />
<text x="942.38" y="367.5" ></text>
</g>
<g >
<title>ovl_inode_upper (10,101,010 samples, 0.02%)</title><rect x="1135.8" y="1061" width="0.2" height="15.0" fill="rgb(232,159,2)" rx="2" ry="2" />
<text x="1138.83" y="1071.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="535.8" y="1109" width="0.2" height="15.0" fill="rgb(236,14,47)" rx="2" ry="2" />
<text x="538.83" y="1119.5" ></text>
</g>
<g >
<title>__sys_setsockopt (20,202,020 samples, 0.04%)</title><rect x="944.0" y="965" width="0.4" height="15.0" fill="rgb(249,105,10)" rx="2" ry="2" />
<text x="946.96" y="975.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="1023.3" y="949" width="0.2" height="15.0" fill="rgb(244,129,9)" rx="2" ry="2" />
<text x="1026.33" y="959.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (90,909,090 samples, 0.16%)</title><rect x="1002.1" y="981" width="1.9" height="15.0" fill="rgb(222,90,53)" rx="2" ry="2" />
<text x="1005.08" y="991.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="183.8" y="1029" width="0.2" height="15.0" fill="rgb(219,76,49)" rx="2" ry="2" />
<text x="186.75" y="1039.5" ></text>
</g>
<g >
<title>persistent_compile_file (60,606,060 samples, 0.11%)</title><rect x="704.4" y="1077" width="1.2" height="15.0" fill="rgb(234,164,35)" rx="2" ry="2" />
<text x="707.38" y="1087.5" ></text>
</g>
<g >
<title>__close (20,202,020 samples, 0.04%)</title><rect x="1086.0" y="1029" width="0.5" height="15.0" fill="rgb(249,51,47)" rx="2" ry="2" />
<text x="1089.04" y="1039.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (40,404,040 samples, 0.07%)</title><rect x="1053.1" y="869" width="0.9" height="15.0" fill="rgb(209,127,37)" rx="2" ry="2" />
<text x="1056.12" y="879.5" ></text>
</g>
<g >
<title>zif_strtr (10,101,010 samples, 0.02%)</title><rect x="777.3" y="1029" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="780.29" y="1039.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1045" width="0.3" height="15.0" fill="rgb(215,60,24)" rx="2" ry="2" />
<text x="489.25" y="1055.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="782.3" y="933" width="0.2" height="15.0" fill="rgb(243,139,20)" rx="2" ry="2" />
<text x="785.29" y="943.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (40,404,040 samples, 0.07%)</title><rect x="649.8" y="1109" width="0.8" height="15.0" fill="rgb(208,198,32)" rx="2" ry="2" />
<text x="652.79" y="1119.5" ></text>
</g>
<g >
<title>l3mdev_master_ifindex_rcu (10,101,010 samples, 0.02%)</title><rect x="1162.1" y="453" width="0.2" height="15.0" fill="rgb(249,136,12)" rx="2" ry="2" />
<text x="1165.08" y="463.5" ></text>
</g>
<g >
<title>do_bind_class (30,303,030 samples, 0.05%)</title><rect x="524.0" y="1013" width="0.6" height="15.0" fill="rgb(252,182,52)" rx="2" ry="2" />
<text x="526.96" y="1023.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="692.3" y="1093" width="0.2" height="15.0" fill="rgb(232,219,36)" rx="2" ry="2" />
<text x="695.29" y="1103.5" ></text>
</g>
<g >
<title>__sys_recvfrom (202,020,200 samples, 0.35%)</title><rect x="1176.2" y="1157" width="4.2" height="15.0" fill="rgb(214,26,33)" rx="2" ry="2" />
<text x="1179.25" y="1167.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="967.1" y="933" width="0.2" height="15.0" fill="rgb(253,61,20)" rx="2" ry="2" />
<text x="970.08" y="943.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="689.0" y="901" width="0.2" height="15.0" fill="rgb(211,170,44)" rx="2" ry="2" />
<text x="691.96" y="911.5" ></text>
</g>
<g >
<title>excimer_timer_thread_init (10,101,010 samples, 0.02%)</title><rect x="1103.5" y="1157" width="0.3" height="15.0" fill="rgb(223,134,21)" rx="2" ry="2" />
<text x="1106.54" y="1167.5" ></text>
</g>
<g >
<title>inet6_recvmsg (10,101,010 samples, 0.02%)</title><rect x="207.3" y="997" width="0.2" height="15.0" fill="rgb(228,86,10)" rx="2" ry="2" />
<text x="210.29" y="1007.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="970.0" y="1093" width="0.2" height="15.0" fill="rgb(247,152,17)" rx="2" ry="2" />
<text x="973.00" y="1103.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="1105.4" y="1125" width="0.2" height="15.0" fill="rgb(253,185,30)" rx="2" ry="2" />
<text x="1108.42" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="524.4" y="837" width="0.2" height="15.0" fill="rgb(244,178,49)" rx="2" ry="2" />
<text x="527.38" y="847.5" ></text>
</g>
<g >
<title>TRACE-455$Fandom\Includes\Cache\MemcachedBagOStuff::getMulti$80 (20,202,020 samples, 0.04%)</title><rect x="528.3" y="1141" width="0.5" height="15.0" fill="rgb(217,177,18)" rx="2" ry="2" />
<text x="531.33" y="1151.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (20,202,020 samples, 0.04%)</title><rect x="940.2" y="213" width="0.4" height="15.0" fill="rgb(212,82,8)" rx="2" ry="2" />
<text x="943.21" y="223.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="753.5" y="933" width="0.3" height="15.0" fill="rgb(233,47,3)" rx="2" ry="2" />
<text x="756.54" y="943.5" ></text>
</g>
<g >
<title>zend_jit_find_method_tmp_helper (10,101,010 samples, 0.02%)</title><rect x="530.8" y="1125" width="0.2" height="15.0" fill="rgb(251,202,45)" rx="2" ry="2" />
<text x="533.83" y="1135.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (40,404,040 samples, 0.07%)</title><rect x="913.5" y="965" width="0.9" height="15.0" fill="rgb(244,127,10)" rx="2" ry="2" />
<text x="916.54" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,393,939,360 samples, 5.93%)</title><rect x="366.0" y="1093" width="70.0" height="15.0" fill="rgb(225,3,27)" rx="2" ry="2" />
<text x="369.04" y="1103.5" >entry_S..</text>
</g>
<g >
<title>cfree (10,101,010 samples, 0.02%)</title><rect x="1091.0" y="949" width="0.2" height="15.0" fill="rgb(234,141,11)" rx="2" ry="2" />
<text x="1094.04" y="959.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="649.4" y="1045" width="0.2" height="15.0" fill="rgb(229,146,5)" rx="2" ry="2" />
<text x="652.38" y="1055.5" ></text>
</g>
<g >
<title>zend_quick_get_constant (10,101,010 samples, 0.02%)</title><rect x="918.5" y="1045" width="0.3" height="15.0" fill="rgb(244,37,10)" rx="2" ry="2" />
<text x="921.54" y="1055.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1045" width="0.2" height="15.0" fill="rgb(230,216,24)" rx="2" ry="2" />
<text x="35.29" y="1055.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="925.4" y="693" width="0.2" height="15.0" fill="rgb(210,136,29)" rx="2" ry="2" />
<text x="928.42" y="703.5" ></text>
</g>
<g >
<title>ip_route_input_slow (10,101,010 samples, 0.02%)</title><rect x="442.3" y="837" width="0.2" height="15.0" fill="rgb(222,55,29)" rx="2" ry="2" />
<text x="445.29" y="847.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="981" width="0.2" height="15.0" fill="rgb(245,196,45)" rx="2" ry="2" />
<text x="1083.83" y="991.5" ></text>
</g>
<g >
<title>zval_ptr_dtor (10,101,010 samples, 0.02%)</title><rect x="919.4" y="1077" width="0.2" height="15.0" fill="rgb(213,229,25)" rx="2" ry="2" />
<text x="922.38" y="1087.5" ></text>
</g>
<g >
<title>generic_permission (10,101,010 samples, 0.02%)</title><rect x="797.1" y="741" width="0.2" height="15.0" fill="rgb(218,115,51)" rx="2" ry="2" />
<text x="800.08" y="751.5" ></text>
</g>
<g >
<title>inflate (10,101,010 samples, 0.02%)</title><rect x="1173.1" y="1221" width="0.2" height="15.0" fill="rgb(217,130,42)" rx="2" ry="2" />
<text x="1176.12" y="1231.5" ></text>
</g>
<g >
<title>iptable_nat_do_chain (10,101,010 samples, 0.02%)</title><rect x="1130.6" y="693" width="0.2" height="15.0" fill="rgb(244,80,30)" rx="2" ry="2" />
<text x="1133.62" y="703.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (10,101,010 samples, 0.02%)</title><rect x="941.9" y="645" width="0.2" height="15.0" fill="rgb(209,85,34)" rx="2" ry="2" />
<text x="944.88" y="655.5" ></text>
</g>
<g >
<title>walk_component (10,101,010 samples, 0.02%)</title><rect x="724.8" y="885" width="0.2" height="15.0" fill="rgb(209,70,54)" rx="2" ry="2" />
<text x="727.79" y="895.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="981" width="0.2" height="15.0" fill="rgb(245,8,26)" rx="2" ry="2" />
<text x="1118.42" y="991.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (30,303,030 samples, 0.05%)</title><rect x="892.5" y="1109" width="0.6" height="15.0" fill="rgb(233,143,33)" rx="2" ry="2" />
<text x="895.50" y="1119.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="476.5" y="1125" width="0.6" height="15.0" fill="rgb(244,169,50)" rx="2" ry="2" />
<text x="479.46" y="1135.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="284.2" y="1045" width="0.2" height="15.0" fill="rgb(207,144,47)" rx="2" ry="2" />
<text x="287.17" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb (494,949,490 samples, 0.87%)</title><rect x="1152.1" y="629" width="10.2" height="15.0" fill="rgb(244,186,36)" rx="2" ry="2" />
<text x="1155.08" y="639.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1033.3" y="805" width="0.2" height="15.0" fill="rgb(238,97,14)" rx="2" ry="2" />
<text x="1036.33" y="815.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="307.7" y="1045" width="0.2" height="15.0" fill="rgb(220,105,36)" rx="2" ry="2" />
<text x="310.71" y="1055.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_RW_SPEC_VAR_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="690.6" y="1125" width="0.2" height="15.0" fill="rgb(252,18,12)" rx="2" ry="2" />
<text x="693.62" y="1135.5" ></text>
</g>
<g >
<title>task_work_run (111,111,110 samples, 0.19%)</title><rect x="1088.5" y="901" width="2.3" height="15.0" fill="rgb(212,201,38)" rx="2" ry="2" />
<text x="1091.54" y="911.5" ></text>
</g>
<g >
<title>tcp_rcv_established (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="469" width="0.4" height="15.0" fill="rgb(219,109,26)" rx="2" ry="2" />
<text x="1028.62" y="479.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="304.4" y="565" width="0.4" height="15.0" fill="rgb(207,15,47)" rx="2" ry="2" />
<text x="307.38" y="575.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="535.2" y="981" width="0.2" height="15.0" fill="rgb(235,115,29)" rx="2" ry="2" />
<text x="538.21" y="991.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="442.3" y="917" width="0.2" height="15.0" fill="rgb(253,15,47)" rx="2" ry="2" />
<text x="445.29" y="927.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="443.5" y="901" width="0.3" height="15.0" fill="rgb(214,49,40)" rx="2" ry="2" />
<text x="446.54" y="911.5" ></text>
</g>
<g >
<title>tsrm_realpath_r (10,101,010 samples, 0.02%)</title><rect x="1107.7" y="1141" width="0.2" height="15.0" fill="rgb(229,30,5)" rx="2" ry="2" />
<text x="1110.71" y="1151.5" ></text>
</g>
<g >
<title>__fget (10,101,010 samples, 0.02%)</title><rect x="942.9" y="789" width="0.2" height="15.0" fill="rgb(245,172,32)" rx="2" ry="2" />
<text x="945.92" y="799.5" ></text>
</g>
<g >
<title>smart_str_erealloc (10,101,010 samples, 0.02%)</title><rect x="1047.5" y="1029" width="0.2" height="15.0" fill="rgb(234,212,46)" rx="2" ry="2" />
<text x="1050.50" y="1039.5" ></text>
</g>
<g >
<title>ip_finish_output (717,171,710 samples, 1.25%)</title><rect x="1151.0" y="949" width="14.8" height="15.0" fill="rgb(253,181,20)" rx="2" ry="2" />
<text x="1154.04" y="959.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1106.9" y="1093" width="0.2" height="15.0" fill="rgb(244,188,23)" rx="2" ry="2" />
<text x="1109.88" y="1103.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="527.7" y="1045" width="0.4" height="15.0" fill="rgb(207,13,48)" rx="2" ry="2" />
<text x="530.71" y="1055.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1029" width="0.2" height="15.0" fill="rgb(221,184,2)" rx="2" ry="2" />
<text x="1106.96" y="1039.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="447.3" y="1077" width="0.2" height="15.0" fill="rgb(240,72,12)" rx="2" ry="2" />
<text x="450.29" y="1087.5" ></text>
</g>
<g >
<title>do_faccessat (10,101,010 samples, 0.02%)</title><rect x="742.7" y="709" width="0.2" height="15.0" fill="rgb(220,115,32)" rx="2" ry="2" />
<text x="745.71" y="719.5" ></text>
</g>
<g >
<title>ip_queue_xmit (828,282,820 samples, 1.45%)</title><rect x="1149.2" y="1013" width="17.0" height="15.0" fill="rgb(230,227,53)" rx="2" ry="2" />
<text x="1152.17" y="1023.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="32.3" y="853" width="0.2" height="15.0" fill="rgb(241,120,8)" rx="2" ry="2" />
<text x="35.29" y="863.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="1037.3" y="901" width="0.2" height="15.0" fill="rgb(217,159,6)" rx="2" ry="2" />
<text x="1040.29" y="911.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="427.1" y="789" width="0.2" height="15.0" fill="rgb(222,13,51)" rx="2" ry="2" />
<text x="430.08" y="799.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="805.6" y="757" width="0.2" height="15.0" fill="rgb(231,150,1)" rx="2" ry="2" />
<text x="808.62" y="767.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="378.5" y="885" width="0.3" height="15.0" fill="rgb(219,68,12)" rx="2" ry="2" />
<text x="381.54" y="895.5" ></text>
</g>
<g >
<title>tcp_new (10,101,010 samples, 0.02%)</title><rect x="1126.9" y="917" width="0.2" height="15.0" fill="rgb(223,172,52)" rx="2" ry="2" />
<text x="1129.88" y="927.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="875.6" y="949" width="0.2" height="15.0" fill="rgb(223,215,15)" rx="2" ry="2" />
<text x="878.62" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="1077" width="2.7" height="15.0" fill="rgb(213,147,29)" rx="2" ry="2" />
<text x="1026.96" y="1087.5" ></text>
</g>
<g >
<title>onig_error_code_to_str@plt (10,101,010 samples, 0.02%)</title><rect x="515.8" y="1109" width="0.2" height="15.0" fill="rgb(239,15,52)" rx="2" ry="2" />
<text x="518.83" y="1119.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="805.4" y="805" width="0.2" height="15.0" fill="rgb(227,75,24)" rx="2" ry="2" />
<text x="808.42" y="815.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1093" width="0.2" height="15.0" fill="rgb(218,70,53)" rx="2" ry="2" />
<text x="621.96" y="1103.5" ></text>
</g>
<g >
<title>OnUpdateBool (10,101,010 samples, 0.02%)</title><rect x="1040.2" y="1077" width="0.2" height="15.0" fill="rgb(207,38,9)" rx="2" ry="2" />
<text x="1043.21" y="1087.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="873.5" y="981" width="0.3" height="15.0" fill="rgb(220,165,43)" rx="2" ry="2" />
<text x="876.54" y="991.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.16%)</title><rect x="956.7" y="1093" width="1.8" height="15.0" fill="rgb(224,125,48)" rx="2" ry="2" />
<text x="959.67" y="1103.5" ></text>
</g>
<g >
<title>_php_stream_write_buffer (181,818,180 samples, 0.32%)</title><rect x="1034.8" y="1093" width="3.7" height="15.0" fill="rgb(231,51,40)" rx="2" ry="2" />
<text x="1037.79" y="1103.5" ></text>
</g>
<g >
<title>pcre_get_compiled_regex_cache_ex (10,101,010 samples, 0.02%)</title><rect x="529.4" y="1093" width="0.2" height="15.0" fill="rgb(221,129,8)" rx="2" ry="2" />
<text x="532.38" y="1103.5" ></text>
</g>
<g >
<title>br_dev_xmit (10,101,010 samples, 0.02%)</title><rect x="718.3" y="709" width="0.2" height="15.0" fill="rgb(231,44,11)" rx="2" ry="2" />
<text x="721.33" y="719.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.11 (40,404,040 samples, 0.07%)</title><rect x="1053.1" y="901" width="0.9" height="15.0" fill="rgb(225,130,3)" rx="2" ry="2" />
<text x="1056.12" y="911.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="517" width="0.2" height="15.0" fill="rgb(239,110,16)" rx="2" ry="2" />
<text x="1035.92" y="527.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="547.7" y="981" width="0.2" height="15.0" fill="rgb(218,43,42)" rx="2" ry="2" />
<text x="550.71" y="991.5" ></text>
</g>
<g >
<title>php_formatted_print (10,101,010 samples, 0.02%)</title><rect x="1032.5" y="965" width="0.2" height="15.0" fill="rgb(250,24,11)" rx="2" ry="2" />
<text x="1035.50" y="975.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (80,808,080 samples, 0.14%)</title><rect x="209.4" y="1029" width="1.6" height="15.0" fill="rgb(245,88,54)" rx="2" ry="2" />
<text x="212.38" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_merge (30,303,030 samples, 0.05%)</title><rect x="516.2" y="1093" width="0.7" height="15.0" fill="rgb(215,142,45)" rx="2" ry="2" />
<text x="519.25" y="1103.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="925.8" y="805" width="0.2" height="15.0" fill="rgb(209,162,8)" rx="2" ry="2" />
<text x="928.83" y="815.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="741" width="0.3" height="15.0" fill="rgb(207,205,2)" rx="2" ry="2" />
<text x="1134.25" y="751.5" ></text>
</g>
<g >
<title>security_socket_setsockopt (20,202,020 samples, 0.04%)</title><rect x="1141.0" y="1125" width="0.5" height="15.0" fill="rgb(218,95,24)" rx="2" ry="2" />
<text x="1144.04" y="1135.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (20,202,020 samples, 0.04%)</title><rect x="194.0" y="1077" width="0.4" height="15.0" fill="rgb(246,15,22)" rx="2" ry="2" />
<text x="196.96" y="1087.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (111,111,110 samples, 0.19%)</title><rect x="444.2" y="1125" width="2.3" height="15.0" fill="rgb(221,105,1)" rx="2" ry="2" />
<text x="447.17" y="1135.5" ></text>
</g>
<g >
<title>sapi_cgi_read_cookies (10,101,010 samples, 0.02%)</title><rect x="1104.2" y="1157" width="0.2" height="15.0" fill="rgb(220,196,30)" rx="2" ry="2" />
<text x="1107.17" y="1167.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="687.1" y="965" width="0.2" height="15.0" fill="rgb(242,45,53)" rx="2" ry="2" />
<text x="690.08" y="975.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="405" width="0.2" height="15.0" fill="rgb(221,72,41)" rx="2" ry="2" />
<text x="1132.38" y="415.5" ></text>
</g>
<g >
<title>__cgroup_bpf_run_filter_getsockopt (10,101,010 samples, 0.02%)</title><rect x="1133.1" y="1125" width="0.2" height="15.0" fill="rgb(217,145,5)" rx="2" ry="2" />
<text x="1136.12" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_read_IS (10,101,010 samples, 0.02%)</title><rect x="976.2" y="1125" width="0.3" height="15.0" fill="rgb(219,216,44)" rx="2" ry="2" />
<text x="979.25" y="1135.5" ></text>
</g>
<g >
<title>nbp_switchdev_frame_mark (10,101,010 samples, 0.02%)</title><rect x="1162.5" y="693" width="0.2" height="15.0" fill="rgb(205,85,8)" rx="2" ry="2" />
<text x="1165.50" y="703.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="921.7" y="885" width="0.2" height="15.0" fill="rgb(254,66,19)" rx="2" ry="2" />
<text x="924.67" y="895.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="773.3" y="997" width="0.2" height="15.0" fill="rgb(210,147,54)" rx="2" ry="2" />
<text x="776.33" y="1007.5" ></text>
</g>
<g >
<title>apparmor_socket_connect (10,101,010 samples, 0.02%)</title><rect x="1131.7" y="1109" width="0.2" height="15.0" fill="rgb(224,159,39)" rx="2" ry="2" />
<text x="1134.67" y="1119.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (10,101,010 samples, 0.02%)</title><rect x="1147.7" y="1077" width="0.2" height="15.0" fill="rgb(236,5,15)" rx="2" ry="2" />
<text x="1150.71" y="1087.5" ></text>
</g>
<g >
<title>zend_array_destroy (30,303,030 samples, 0.05%)</title><rect x="647.9" y="1045" width="0.6" height="15.0" fill="rgb(230,14,2)" rx="2" ry="2" />
<text x="650.92" y="1055.5" ></text>
</g>
<g >
<title>zend_objects_store_del (121,212,120 samples, 0.21%)</title><rect x="457.9" y="1125" width="2.5" height="15.0" fill="rgb(250,138,13)" rx="2" ry="2" />
<text x="460.92" y="1135.5" ></text>
</g>
<g >
<title>TRACE-258$Wikimedia\Rdbms\LoadBalancer::runPrimaryTransactionIdleCallbacks$1899 (30,303,030 samples, 0.05%)</title><rect x="466.0" y="1141" width="0.7" height="15.0" fill="rgb(219,132,49)" rx="2" ry="2" />
<text x="469.04" y="1151.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="806.0" y="709" width="0.2" height="15.0" fill="rgb(237,188,52)" rx="2" ry="2" />
<text x="809.04" y="719.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_CV_CONST_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="623.5" y="1125" width="0.3" height="15.0" fill="rgb(205,33,34)" rx="2" ry="2" />
<text x="626.54" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="649.4" y="1093" width="0.2" height="15.0" fill="rgb(240,192,3)" rx="2" ry="2" />
<text x="652.38" y="1103.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="837" width="0.2" height="15.0" fill="rgb(210,187,32)" rx="2" ry="2" />
<text x="1010.50" y="847.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="861.0" y="709" width="0.2" height="15.0" fill="rgb(222,222,22)" rx="2" ry="2" />
<text x="864.04" y="719.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="672.5" y="901" width="0.2" height="15.0" fill="rgb(220,209,19)" rx="2" ry="2" />
<text x="675.50" y="911.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (131,313,130 samples, 0.23%)</title><rect x="1184.8" y="725" width="2.7" height="15.0" fill="rgb(244,27,36)" rx="2" ry="2" />
<text x="1187.79" y="735.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_W (70,707,070 samples, 0.12%)</title><rect x="691.7" y="1109" width="1.4" height="15.0" fill="rgb(211,63,18)" rx="2" ry="2" />
<text x="694.67" y="1119.5" ></text>
</g>
<g >
<title>nf_hook_slow (70,707,070 samples, 0.12%)</title><rect x="939.4" y="325" width="1.4" height="15.0" fill="rgb(219,47,26)" rx="2" ry="2" />
<text x="942.38" y="335.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="713.3" y="949" width="0.2" height="15.0" fill="rgb(212,2,2)" rx="2" ry="2" />
<text x="716.33" y="959.5" ></text>
</g>
<g >
<title>sock_poll (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1141" width="0.2" height="15.0" fill="rgb(218,118,47)" rx="2" ry="2" />
<text x="1118.42" y="1151.5" ></text>
</g>
<g >
<title>zend_objects_store_del (10,101,010 samples, 0.02%)</title><rect x="1082.5" y="1061" width="0.2" height="15.0" fill="rgb(228,49,13)" rx="2" ry="2" />
<text x="1085.50" y="1071.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="797.5" y="869" width="0.2" height="15.0" fill="rgb(231,19,13)" rx="2" ry="2" />
<text x="800.50" y="879.5" ></text>
</g>
<g >
<title>zif_is_resource (10,101,010 samples, 0.02%)</title><rect x="1073.5" y="1141" width="0.3" height="15.0" fill="rgb(238,123,37)" rx="2" ry="2" />
<text x="1076.54" y="1151.5" ></text>
</g>
<g >
<title>resolve_class_name (10,101,010 samples, 0.02%)</title><rect x="732.9" y="805" width="0.2" height="15.0" fill="rgb(206,209,15)" rx="2" ry="2" />
<text x="735.92" y="815.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (50,505,050 samples, 0.09%)</title><rect x="647.5" y="1093" width="1.0" height="15.0" fill="rgb(213,149,43)" rx="2" ry="2" />
<text x="650.50" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="287.9" y="1125" width="0.2" height="15.0" fill="rgb(206,62,12)" rx="2" ry="2" />
<text x="290.92" y="1135.5" ></text>
</g>
<g >
<title>zend_stream_init_filename (10,101,010 samples, 0.02%)</title><rect x="881.9" y="997" width="0.2" height="15.0" fill="rgb(209,209,12)" rx="2" ry="2" />
<text x="884.88" y="1007.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="446.7" y="1109" width="0.2" height="15.0" fill="rgb(252,190,0)" rx="2" ry="2" />
<text x="449.67" y="1119.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="970.0" y="1077" width="0.2" height="15.0" fill="rgb(219,190,26)" rx="2" ry="2" />
<text x="973.00" y="1087.5" ></text>
</g>
<g >
<title>php_search_array (10,101,010 samples, 0.02%)</title><rect x="955.6" y="1125" width="0.2" height="15.0" fill="rgb(212,100,16)" rx="2" ry="2" />
<text x="958.62" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="834.0" y="901" width="0.4" height="15.0" fill="rgb(235,118,14)" rx="2" ry="2" />
<text x="836.96" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.07%)</title><rect x="925.2" y="853" width="0.8" height="15.0" fill="rgb(228,34,25)" rx="2" ry="2" />
<text x="928.21" y="863.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (30,303,030 samples, 0.05%)</title><rect x="1163.1" y="677" width="0.7" height="15.0" fill="rgb(229,134,53)" rx="2" ry="2" />
<text x="1166.12" y="687.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="1032.7" y="981" width="0.2" height="15.0" fill="rgb(208,225,16)" rx="2" ry="2" />
<text x="1035.71" y="991.5" ></text>
</g>
<g >
<title>zif_explode (10,101,010 samples, 0.02%)</title><rect x="1028.3" y="1029" width="0.2" height="15.0" fill="rgb(224,203,41)" rx="2" ry="2" />
<text x="1031.33" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="332.9" y="1093" width="0.2" height="15.0" fill="rgb(222,216,30)" rx="2" ry="2" />
<text x="335.92" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1040.0" y="1109" width="0.2" height="15.0" fill="rgb(241,103,12)" rx="2" ry="2" />
<text x="1043.00" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="534.8" y="885" width="0.2" height="15.0" fill="rgb(237,229,24)" rx="2" ry="2" />
<text x="537.79" y="895.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="511.7" y="965" width="0.2" height="15.0" fill="rgb(235,130,30)" rx="2" ry="2" />
<text x="514.67" y="975.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (292,929,290 samples, 0.51%)</title><rect x="427.3" y="1061" width="6.0" height="15.0" fill="rgb(242,55,5)" rx="2" ry="2" />
<text x="430.29" y="1071.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (121,212,120 samples, 0.21%)</title><rect x="1111.9" y="1109" width="2.5" height="15.0" fill="rgb(216,167,5)" rx="2" ry="2" />
<text x="1114.88" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="443.3" y="1045" width="0.2" height="15.0" fill="rgb(251,224,7)" rx="2" ry="2" />
<text x="446.33" y="1055.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1013" width="0.2" height="15.0" fill="rgb(230,171,38)" rx="2" ry="2" />
<text x="521.96" y="1023.5" ></text>
</g>
<g >
<title>fcgi_get_params (10,101,010 samples, 0.02%)</title><rect x="206.2" y="1141" width="0.3" height="15.0" fill="rgb(224,74,42)" rx="2" ry="2" />
<text x="209.25" y="1151.5" ></text>
</g>
<g >
<title>TRACE-313$Fandom\Includes\Logging\FandomLoggingSpi::getLogger$74 (101,010,100 samples, 0.18%)</title><rect x="485.6" y="1141" width="2.1" height="15.0" fill="rgb(230,194,18)" rx="2" ry="2" />
<text x="488.62" y="1151.5" ></text>
</g>
<g >
<title>php-fpm (57,212,120,640 samples, 100.00%)</title><rect x="10.0" y="1237" width="1180.0" height="15.0" fill="rgb(229,89,33)" rx="2" ry="2" />
<text x="13.00" y="1247.5" >php-fpm</text>
</g>
<g >
<title>execute_ex (101,010,100 samples, 0.18%)</title><rect x="920.8" y="1061" width="2.1" height="15.0" fill="rgb(237,83,17)" rx="2" ry="2" />
<text x="923.83" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1115.0" y="1061" width="0.2" height="15.0" fill="rgb(231,60,14)" rx="2" ry="2" />
<text x="1118.00" y="1071.5" ></text>
</g>
<g >
<title>TRACE-20$ExtensionRegistry::getInstance$142 (90,909,090 samples, 0.16%)</title><rect x="342.1" y="1141" width="1.9" height="15.0" fill="rgb(233,120,21)" rx="2" ry="2" />
<text x="345.08" y="1151.5" ></text>
</g>
<g >
<title>__x64_sys_poll (252,525,250 samples, 0.44%)</title><rect x="1110.4" y="1157" width="5.2" height="15.0" fill="rgb(211,95,3)" rx="2" ry="2" />
<text x="1113.42" y="1167.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="918.3" y="1045" width="0.2" height="15.0" fill="rgb(216,57,40)" rx="2" ry="2" />
<text x="921.33" y="1055.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (30,303,030 samples, 0.05%)</title><rect x="462.1" y="1125" width="0.6" height="15.0" fill="rgb(208,208,15)" rx="2" ry="2" />
<text x="465.08" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1061" width="0.3" height="15.0" fill="rgb(213,190,11)" rx="2" ry="2" />
<text x="526.54" y="1071.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (10,101,010 samples, 0.02%)</title><rect x="1124.4" y="1045" width="0.2" height="15.0" fill="rgb(207,99,2)" rx="2" ry="2" />
<text x="1127.38" y="1055.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (10,101,010 samples, 0.02%)</title><rect x="207.3" y="965" width="0.2" height="15.0" fill="rgb(239,106,36)" rx="2" ry="2" />
<text x="210.29" y="975.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="887.5" y="1029" width="0.2" height="15.0" fill="rgb(246,227,40)" rx="2" ry="2" />
<text x="890.50" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="729.0" y="1029" width="0.2" height="15.0" fill="rgb(224,203,41)" rx="2" ry="2" />
<text x="731.96" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="998.8" y="949" width="0.2" height="15.0" fill="rgb(224,11,28)" rx="2" ry="2" />
<text x="1001.75" y="959.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="982.9" y="933" width="0.2" height="15.0" fill="rgb(236,3,36)" rx="2" ry="2" />
<text x="985.92" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="981" width="0.2" height="15.0" fill="rgb(215,111,39)" rx="2" ry="2" />
<text x="1022.79" y="991.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (10,101,010 samples, 0.02%)</title><rect x="250.8" y="1125" width="0.2" height="15.0" fill="rgb(230,88,33)" rx="2" ry="2" />
<text x="253.83" y="1135.5" ></text>
</g>
<g >
<title>do_faccessat (131,313,130 samples, 0.23%)</title><rect x="899.8" y="1061" width="2.7" height="15.0" fill="rgb(250,123,43)" rx="2" ry="2" />
<text x="902.79" y="1071.5" ></text>
</g>
<g >
<title>php_stream_locate_url_wrapper (10,101,010 samples, 0.02%)</title><rect x="727.3" y="1029" width="0.2" height="15.0" fill="rgb(228,213,8)" rx="2" ry="2" />
<text x="730.29" y="1039.5" ></text>
</g>
<g >
<title>virtnet_poll_tx (10,101,010 samples, 0.02%)</title><rect x="999.0" y="965" width="0.2" height="15.0" fill="rgb(242,95,17)" rx="2" ry="2" />
<text x="1001.96" y="975.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (20,202,020 samples, 0.04%)</title><rect x="609.4" y="1093" width="0.4" height="15.0" fill="rgb(233,140,16)" rx="2" ry="2" />
<text x="612.38" y="1103.5" ></text>
</g>
<g >
<title>receive_buf (10,101,010 samples, 0.02%)</title><rect x="539.6" y="1029" width="0.2" height="15.0" fill="rgb(240,211,44)" rx="2" ry="2" />
<text x="542.58" y="1039.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="687.7" y="853" width="0.2" height="15.0" fill="rgb(209,157,40)" rx="2" ry="2" />
<text x="690.71" y="863.5" ></text>
</g>
<g >
<title>mysqlnd_auth_handshake (202,020,200 samples, 0.35%)</title><rect x="924.4" y="997" width="4.1" height="15.0" fill="rgb(246,191,4)" rx="2" ry="2" />
<text x="927.38" y="1007.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1093" width="0.2" height="15.0" fill="rgb(223,78,13)" rx="2" ry="2" />
<text x="474.67" y="1103.5" ></text>
</g>
<g >
<title>zend_clean_and_cache_symbol_table (10,101,010 samples, 0.02%)</title><rect x="772.3" y="1013" width="0.2" height="15.0" fill="rgb(217,155,46)" rx="2" ry="2" />
<text x="775.29" y="1023.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="545.6" y="1109" width="0.2" height="15.0" fill="rgb(217,177,17)" rx="2" ry="2" />
<text x="548.62" y="1119.5" ></text>
</g>
<g >
<title>mysqlnd_connection_connect (1,020,202,010 samples, 1.78%)</title><rect x="923.8" y="1109" width="21.0" height="15.0" fill="rgb(231,135,4)" rx="2" ry="2" />
<text x="926.75" y="1119.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (20,202,020 samples, 0.04%)</title><rect x="179.8" y="1061" width="0.4" height="15.0" fill="rgb(237,132,10)" rx="2" ry="2" />
<text x="182.79" y="1071.5" ></text>
</g>
<g >
<title>lookup_mnt (121,212,120 samples, 0.21%)</title><rect x="408.1" y="901" width="2.5" height="15.0" fill="rgb(230,206,48)" rx="2" ry="2" />
<text x="411.12" y="911.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="211.5" y="1077" width="0.2" height="15.0" fill="rgb(220,128,39)" rx="2" ry="2" />
<text x="214.46" y="1087.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1040.4" y="1109" width="0.2" height="15.0" fill="rgb(227,175,3)" rx="2" ry="2" />
<text x="1043.42" y="1119.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1037.7" y="1029" width="0.2" height="15.0" fill="rgb(250,45,11)" rx="2" ry="2" />
<text x="1040.71" y="1039.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="967.1" y="853" width="0.2" height="15.0" fill="rgb(230,57,8)" rx="2" ry="2" />
<text x="970.08" y="863.5" ></text>
</g>
<g >
<title>zend_fetch_var_address_helper_SPEC_CONST_UNUSED (10,101,010 samples, 0.02%)</title><rect x="340.6" y="1125" width="0.2" height="15.0" fill="rgb(233,110,25)" rx="2" ry="2" />
<text x="343.62" y="1135.5" ></text>
</g>
<g >
<title>execute_ex (2,343,434,320 samples, 4.10%)</title><rect x="557.7" y="1141" width="48.3" height="15.0" fill="rgb(220,188,11)" rx="2" ry="2" />
<text x="560.71" y="1151.5" >exec..</text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="204.6" y="1109" width="0.2" height="15.0" fill="rgb(248,113,41)" rx="2" ry="2" />
<text x="207.58" y="1119.5" ></text>
</g>
<g >
<title>ZEND_FREE_SPEC_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="552.9" y="1141" width="0.2" height="15.0" fill="rgb(217,115,51)" rx="2" ry="2" />
<text x="555.92" y="1151.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="332.7" y="1093" width="0.2" height="15.0" fill="rgb(205,145,15)" rx="2" ry="2" />
<text x="335.71" y="1103.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="285.2" y="1109" width="0.2" height="15.0" fill="rgb(219,126,28)" rx="2" ry="2" />
<text x="288.21" y="1119.5" ></text>
</g>
<g >
<title>zend_std_write_property (60,606,060 samples, 0.11%)</title><rect x="625.8" y="1109" width="1.3" height="15.0" fill="rgb(243,27,17)" rx="2" ry="2" />
<text x="628.83" y="1119.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (20,202,020 samples, 0.04%)</title><rect x="296.7" y="1093" width="0.4" height="15.0" fill="rgb(241,202,52)" rx="2" ry="2" />
<text x="299.67" y="1103.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (30,303,030 samples, 0.05%)</title><rect x="1025.4" y="501" width="0.6" height="15.0" fill="rgb(215,59,4)" rx="2" ry="2" />
<text x="1028.42" y="511.5" ></text>
</g>
<g >
<title>lookup_fast (585,858,580 samples, 1.02%)</title><rect x="398.5" y="933" width="12.1" height="15.0" fill="rgb(218,104,17)" rx="2" ry="2" />
<text x="401.54" y="943.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="349.6" y="1061" width="0.2" height="15.0" fill="rgb(228,37,25)" rx="2" ry="2" />
<text x="352.58" y="1071.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="350.0" y="1029" width="0.2" height="15.0" fill="rgb(214,178,24)" rx="2" ry="2" />
<text x="353.00" y="1039.5" ></text>
</g>
<g >
<title>zend_jit_fast_assign_concat_helper (10,101,010 samples, 0.02%)</title><rect x="349.6" y="1093" width="0.2" height="15.0" fill="rgb(228,222,8)" rx="2" ry="2" />
<text x="352.58" y="1103.5" ></text>
</g>
<g >
<title>__vfs_write (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="997" width="2.7" height="15.0" fill="rgb(247,34,49)" rx="2" ry="2" />
<text x="1026.96" y="1007.5" ></text>
</g>
<g >
<title>zend_fetch_debug_backtrace (10,101,010 samples, 0.02%)</title><rect x="766.5" y="1093" width="0.2" height="15.0" fill="rgb(239,56,47)" rx="2" ry="2" />
<text x="769.46" y="1103.5" ></text>
</g>
<g >
<title>do_epoll_wait (111,111,110 samples, 0.19%)</title><rect x="208.8" y="1077" width="2.2" height="15.0" fill="rgb(251,8,36)" rx="2" ry="2" />
<text x="211.75" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_extend (10,101,010 samples, 0.02%)</title><rect x="847.7" y="869" width="0.2" height="15.0" fill="rgb(223,209,29)" rx="2" ry="2" />
<text x="850.71" y="879.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="899.6" y="1093" width="0.2" height="15.0" fill="rgb(244,178,35)" rx="2" ry="2" />
<text x="902.58" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="416.9" y="885" width="0.2" height="15.0" fill="rgb(238,130,38)" rx="2" ry="2" />
<text x="419.88" y="895.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="411.9" y="933" width="0.2" height="15.0" fill="rgb(211,32,42)" rx="2" ry="2" />
<text x="414.88" y="943.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="955.4" y="1029" width="0.2" height="15.0" fill="rgb(238,126,18)" rx="2" ry="2" />
<text x="958.42" y="1039.5" ></text>
</g>
<g >
<title>tcp_sendmsg (1,070,707,060 samples, 1.87%)</title><rect x="1146.0" y="1109" width="22.1" height="15.0" fill="rgb(207,221,42)" rx="2" ry="2" />
<text x="1149.04" y="1119.5" >t..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.09%)</title><rect x="204.8" y="1157" width="1.0" height="15.0" fill="rgb(205,153,29)" rx="2" ry="2" />
<text x="207.79" y="1167.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="549" width="0.2" height="15.0" fill="rgb(241,23,24)" rx="2" ry="2" />
<text x="1170.08" y="559.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="492.9" y="1125" width="0.2" height="15.0" fill="rgb(248,41,48)" rx="2" ry="2" />
<text x="495.92" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="973.3" y="965" width="0.2" height="15.0" fill="rgb(218,202,31)" rx="2" ry="2" />
<text x="976.33" y="975.5" ></text>
</g>
<g >
<title>add_function (30,303,030 samples, 0.05%)</title><rect x="516.2" y="1109" width="0.7" height="15.0" fill="rgb(222,91,42)" rx="2" ry="2" />
<text x="519.25" y="1119.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,101,010 samples, 0.02%)</title><rect x="183.5" y="981" width="0.3" height="15.0" fill="rgb(251,15,44)" rx="2" ry="2" />
<text x="186.54" y="991.5" ></text>
</g>
<g >
<title>zend_include_or_eval (30,303,030 samples, 0.05%)</title><rect x="687.9" y="1013" width="0.6" height="15.0" fill="rgb(238,82,21)" rx="2" ry="2" />
<text x="690.92" y="1023.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="902.1" y="965" width="0.2" height="15.0" fill="rgb(240,32,13)" rx="2" ry="2" />
<text x="905.08" y="975.5" ></text>
</g>
<g >
<title>zend_std_get_method (20,202,020 samples, 0.04%)</title><rect x="536.2" y="1093" width="0.5" height="15.0" fill="rgb(217,129,36)" rx="2" ry="2" />
<text x="539.25" y="1103.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (20,202,020 samples, 0.04%)</title><rect x="936.2" y="821" width="0.5" height="15.0" fill="rgb(209,214,17)" rx="2" ry="2" />
<text x="939.25" y="831.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="296.5" y="1125" width="0.2" height="15.0" fill="rgb(211,50,38)" rx="2" ry="2" />
<text x="299.46" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="283.1" y="1029" width="0.2" height="15.0" fill="rgb(207,11,16)" rx="2" ry="2" />
<text x="286.12" y="1039.5" ></text>
</g>
<g >
<title>TRACE-265$Wikimedia\Rdbms\LoadBalancer::runPrimaryTransactionListenerCallbacks$1947 (60,606,060 samples, 0.11%)</title><rect x="470.2" y="1141" width="1.3" height="15.0" fill="rgb(209,220,23)" rx="2" ry="2" />
<text x="473.21" y="1151.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1109" width="1.2" height="15.0" fill="rgb(212,36,44)" rx="2" ry="2" />
<text x="526.75" y="1119.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="532.1" y="1109" width="0.2" height="15.0" fill="rgb(216,170,44)" rx="2" ry="2" />
<text x="535.08" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (40,404,040 samples, 0.07%)</title><rect x="705.8" y="1093" width="0.9" height="15.0" fill="rgb(214,216,48)" rx="2" ry="2" />
<text x="708.83" y="1103.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="101" width="0.4" height="15.0" fill="rgb(216,26,38)" rx="2" ry="2" />
<text x="1092.58" y="111.5" ></text>
</g>
<g >
<title>zend_accel_load_script (121,212,120 samples, 0.21%)</title><rect x="746.5" y="965" width="2.5" height="15.0" fill="rgb(240,77,0)" rx="2" ry="2" />
<text x="749.46" y="975.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (171,717,170 samples, 0.30%)</title><rect x="267.9" y="1061" width="3.6" height="15.0" fill="rgb(210,211,31)" rx="2" ry="2" />
<text x="270.92" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (80,808,080 samples, 0.14%)</title><rect x="1149.4" y="949" width="1.6" height="15.0" fill="rgb(236,119,49)" rx="2" ry="2" />
<text x="1152.38" y="959.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="453" width="0.2" height="15.0" fill="rgb(245,101,25)" rx="2" ry="2" />
<text x="1035.92" y="463.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (242,424,240 samples, 0.42%)</title><rect x="1152.9" y="389" width="5.0" height="15.0" fill="rgb(251,2,35)" rx="2" ry="2" />
<text x="1155.92" y="399.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="682.7" y="965" width="0.2" height="15.0" fill="rgb(218,105,42)" rx="2" ry="2" />
<text x="685.71" y="975.5" ></text>
</g>
<g >
<title>zend_update_class_constants (20,202,020 samples, 0.04%)</title><rect x="768.3" y="1093" width="0.5" height="15.0" fill="rgb(241,2,1)" rx="2" ry="2" />
<text x="771.33" y="1103.5" ></text>
</g>
<g >
<title>br_forward_finish (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="501" width="0.2" height="15.0" fill="rgb(236,223,17)" rx="2" ry="2" />
<text x="1035.92" y="511.5" ></text>
</g>
<g >
<title>TRACE-312$Language::__destruct$513 (30,303,030 samples, 0.05%)</title><rect x="1083.3" y="1077" width="0.7" height="15.0" fill="rgb(231,19,22)" rx="2" ry="2" />
<text x="1086.33" y="1087.5" ></text>
</g>
<g >
<title>do_bind_class (10,101,010 samples, 0.02%)</title><rect x="524.0" y="885" width="0.2" height="15.0" fill="rgb(247,91,45)" rx="2" ry="2" />
<text x="526.96" y="895.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="787.7" y="949" width="0.2" height="15.0" fill="rgb(222,101,27)" rx="2" ry="2" />
<text x="790.71" y="959.5" ></text>
</g>
<g >
<title>ovl_permission (30,303,030 samples, 0.05%)</title><rect x="1007.7" y="885" width="0.6" height="15.0" fill="rgb(238,10,43)" rx="2" ry="2" />
<text x="1010.71" y="895.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="744.0" y="629" width="0.2" height="15.0" fill="rgb(207,126,42)" rx="2" ry="2" />
<text x="746.96" y="639.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="405" width="0.3" height="15.0" fill="rgb(222,106,23)" rx="2" ry="2" />
<text x="1134.25" y="415.5" ></text>
</g>
<g >
<title>tcp_close (80,808,080 samples, 0.14%)</title><rect x="1089.0" y="805" width="1.6" height="15.0" fill="rgb(210,54,51)" rx="2" ry="2" />
<text x="1091.96" y="815.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="581" width="0.2" height="15.0" fill="rgb(210,212,20)" rx="2" ry="2" />
<text x="1170.08" y="591.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1109" width="0.2" height="15.0" fill="rgb(249,10,15)" rx="2" ry="2" />
<text x="554.67" y="1119.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="805" width="0.2" height="15.0" fill="rgb(253,71,19)" rx="2" ry="2" />
<text x="1117.17" y="815.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1029" width="0.2" height="15.0" fill="rgb(246,80,46)" rx="2" ry="2" />
<text x="1171.12" y="1039.5" ></text>
</g>
<g >
<title>TRACE-498$Wikimedia\Rdbms\Database::commenceCriticalSection$5923 (272,727,270 samples, 0.48%)</title><rect x="531.2" y="1141" width="5.7" height="15.0" fill="rgb(231,58,12)" rx="2" ry="2" />
<text x="534.25" y="1151.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="524.0" y="805" width="0.2" height="15.0" fill="rgb(220,217,30)" rx="2" ry="2" />
<text x="526.96" y="815.5" ></text>
</g>
<g >
<title>lookup_fast (50,505,050 samples, 0.09%)</title><rect x="911.7" y="885" width="1.0" height="15.0" fill="rgb(252,33,19)" rx="2" ry="2" />
<text x="914.67" y="895.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="24.0" y="949" width="0.2" height="15.0" fill="rgb(229,86,49)" rx="2" ry="2" />
<text x="26.96" y="959.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="757" width="0.2" height="15.0" fill="rgb(238,171,32)" rx="2" ry="2" />
<text x="1056.12" y="767.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="524.0" y="773" width="0.2" height="15.0" fill="rgb(248,19,19)" rx="2" ry="2" />
<text x="526.96" y="783.5" ></text>
</g>
<g >
<title>__wake_up (10,101,010 samples, 0.02%)</title><rect x="967.1" y="789" width="0.2" height="15.0" fill="rgb(216,136,49)" rx="2" ry="2" />
<text x="970.08" y="799.5" ></text>
</g>
<g >
<title>skb_release_head_state (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="677" width="0.2" height="15.0" fill="rgb(245,146,29)" rx="2" ry="2" />
<text x="1056.12" y="687.5" ></text>
</g>
<g >
<title>task_work_run (20,202,020 samples, 0.04%)</title><rect x="1144.4" y="1157" width="0.4" height="15.0" fill="rgb(228,4,27)" rx="2" ry="2" />
<text x="1147.38" y="1167.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (111,111,110 samples, 0.19%)</title><rect x="1024.4" y="837" width="2.3" height="15.0" fill="rgb(217,100,9)" rx="2" ry="2" />
<text x="1027.38" y="847.5" ></text>
</g>
<g >
<title>zend_hash_add_new (90,909,090 samples, 0.16%)</title><rect x="540.6" y="1109" width="1.9" height="15.0" fill="rgb(215,2,53)" rx="2" ry="2" />
<text x="543.62" y="1119.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (20,202,020 samples, 0.04%)</title><rect x="752.3" y="1109" width="0.4" height="15.0" fill="rgb(210,112,30)" rx="2" ry="2" />
<text x="755.29" y="1119.5" ></text>
</g>
<g >
<title>zend_std_get_method (40,404,040 samples, 0.07%)</title><rect x="461.0" y="1109" width="0.9" height="15.0" fill="rgb(245,197,18)" rx="2" ry="2" />
<text x="464.04" y="1119.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1125" width="0.4" height="15.0" fill="rgb(219,178,14)" rx="2" ry="2" />
<text x="33.21" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_fast_concat_helper (10,101,010 samples, 0.02%)</title><rect x="340.8" y="1125" width="0.2" height="15.0" fill="rgb(248,49,26)" rx="2" ry="2" />
<text x="343.83" y="1135.5" ></text>
</g>
<g >
<title>vfs_getxattr_alloc (20,202,020 samples, 0.04%)</title><rect x="956.9" y="837" width="0.4" height="15.0" fill="rgb(232,36,4)" rx="2" ry="2" />
<text x="959.88" y="847.5" ></text>
</g>
<g >
<title>pcre_get_compiled_regex_cache_ex (20,202,020 samples, 0.04%)</title><rect x="1055.4" y="1077" width="0.4" height="15.0" fill="rgb(234,114,4)" rx="2" ry="2" />
<text x="1058.42" y="1087.5" ></text>
</g>
<g >
<title>async_page_fault (10,101,010 samples, 0.02%)</title><rect x="30.0" y="1189" width="0.2" height="15.0" fill="rgb(211,59,28)" rx="2" ry="2" />
<text x="33.00" y="1199.5" ></text>
</g>
<g >
<title>__do_sys_newfstat (10,101,010 samples, 0.02%)</title><rect x="949.4" y="1013" width="0.2" height="15.0" fill="rgb(223,183,43)" rx="2" ry="2" />
<text x="952.38" y="1023.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="1038.8" y="1093" width="0.4" height="15.0" fill="rgb(240,44,24)" rx="2" ry="2" />
<text x="1041.75" y="1103.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="732.9" y="885" width="0.2" height="15.0" fill="rgb(246,154,46)" rx="2" ry="2" />
<text x="735.92" y="895.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="654.2" y="1029" width="0.2" height="15.0" fill="rgb(227,214,39)" rx="2" ry="2" />
<text x="657.17" y="1039.5" ></text>
</g>
<g >
<title>ipv4_mtu (10,101,010 samples, 0.02%)</title><rect x="1167.5" y="1061" width="0.2" height="15.0" fill="rgb(210,173,31)" rx="2" ry="2" />
<text x="1170.50" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="967.1" y="1061" width="0.2" height="15.0" fill="rgb(231,105,42)" rx="2" ry="2" />
<text x="970.08" y="1071.5" ></text>
</g>
<g >
<title>path_lookupat (10,101,010 samples, 0.02%)</title><rect x="205.6" y="1061" width="0.2" height="15.0" fill="rgb(236,39,45)" rx="2" ry="2" />
<text x="208.62" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="682.7" y="949" width="0.2" height="15.0" fill="rgb(220,211,27)" rx="2" ry="2" />
<text x="685.71" y="959.5" ></text>
</g>
<g >
<title>make_subpats_table (10,101,010 samples, 0.02%)</title><rect x="954.6" y="1093" width="0.2" height="15.0" fill="rgb(208,171,23)" rx="2" ry="2" />
<text x="957.58" y="1103.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="927.1" y="789" width="0.2" height="15.0" fill="rgb(221,125,39)" rx="2" ry="2" />
<text x="930.08" y="799.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="856.9" y="661" width="0.2" height="15.0" fill="rgb(252,66,32)" rx="2" ry="2" />
<text x="859.88" y="671.5" ></text>
</g>
<g >
<title>user_path_at_empty (2,565,656,540 samples, 4.48%)</title><rect x="372.3" y="1013" width="52.9" height="15.0" fill="rgb(250,218,10)" rx="2" ry="2" />
<text x="375.29" y="1023.5" >user_..</text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1151.7" y="677" width="0.2" height="15.0" fill="rgb(245,22,40)" rx="2" ry="2" />
<text x="1154.67" y="687.5" ></text>
</g>
<g >
<title>ksys_read (30,303,030 samples, 0.05%)</title><rect x="207.1" y="1093" width="0.6" height="15.0" fill="rgb(214,222,45)" rx="2" ry="2" />
<text x="210.08" y="1103.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="682.3" y="949" width="0.2" height="15.0" fill="rgb(252,46,29)" rx="2" ry="2" />
<text x="685.29" y="959.5" ></text>
</g>
<g >
<title>tcp_release_cb (10,101,010 samples, 0.02%)</title><rect x="1177.9" y="1077" width="0.2" height="15.0" fill="rgb(207,137,1)" rx="2" ry="2" />
<text x="1180.92" y="1087.5" ></text>
</g>
<g >
<title>do_bind_class (121,212,120 samples, 0.21%)</title><rect x="741.0" y="885" width="2.5" height="15.0" fill="rgb(223,26,10)" rx="2" ry="2" />
<text x="744.04" y="895.5" ></text>
</g>
<g >
<title>fpm_event_loop (515,151,510 samples, 0.90%)</title><rect x="208.1" y="1157" width="10.7" height="15.0" fill="rgb(245,135,8)" rx="2" ry="2" />
<text x="211.12" y="1167.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="850.6" y="389" width="0.2" height="15.0" fill="rgb(240,29,41)" rx="2" ry="2" />
<text x="853.62" y="399.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="535.2" y="1045" width="0.2" height="15.0" fill="rgb(243,146,43)" rx="2" ry="2" />
<text x="538.21" y="1055.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (40,404,040 samples, 0.07%)</title><rect x="543.1" y="1125" width="0.9" height="15.0" fill="rgb(238,45,52)" rx="2" ry="2" />
<text x="546.12" y="1135.5" ></text>
</g>
<g >
<title>user_path_at_empty (10,101,010 samples, 0.02%)</title><rect x="1019.0" y="837" width="0.2" height="15.0" fill="rgb(229,16,48)" rx="2" ry="2" />
<text x="1021.96" y="847.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="1061.9" y="1141" width="0.2" height="15.0" fill="rgb(241,198,11)" rx="2" ry="2" />
<text x="1064.88" y="1151.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="502.7" y="1125" width="0.2" height="15.0" fill="rgb(227,20,28)" rx="2" ry="2" />
<text x="505.71" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_inner_W_CONST (90,909,090 samples, 0.16%)</title><rect x="615.6" y="1109" width="1.9" height="15.0" fill="rgb(250,88,15)" rx="2" ry="2" />
<text x="618.62" y="1119.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_VAR_HANDLER (60,606,060 samples, 0.11%)</title><rect x="627.9" y="1125" width="1.3" height="15.0" fill="rgb(225,166,22)" rx="2" ry="2" />
<text x="630.92" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="343.5" y="1045" width="0.3" height="15.0" fill="rgb(243,8,33)" rx="2" ry="2" />
<text x="346.54" y="1055.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (10,101,010 samples, 0.02%)</title><rect x="499.6" y="1125" width="0.2" height="15.0" fill="rgb(247,205,28)" rx="2" ry="2" />
<text x="502.58" y="1135.5" ></text>
</g>
<g >
<title>tcp_data_ready (10,101,010 samples, 0.02%)</title><rect x="998.8" y="789" width="0.2" height="15.0" fill="rgb(212,173,37)" rx="2" ry="2" />
<text x="1001.75" y="799.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="752.7" y="1125" width="0.6" height="15.0" fill="rgb(248,218,5)" rx="2" ry="2" />
<text x="755.71" y="1135.5" ></text>
</g>
<g >
<title>inet_ehash_insert (10,101,010 samples, 0.02%)</title><rect x="937.7" y="741" width="0.2" height="15.0" fill="rgb(240,199,40)" rx="2" ry="2" />
<text x="940.71" y="751.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="693" width="2.9" height="15.0" fill="rgb(224,27,25)" rx="2" ry="2" />
<text x="1130.50" y="703.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1029" width="0.2" height="15.0" fill="rgb(210,47,42)" rx="2" ry="2" />
<text x="35.29" y="1039.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="395.4" y="853" width="0.2" height="15.0" fill="rgb(222,52,52)" rx="2" ry="2" />
<text x="398.42" y="863.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="905.0" y="837" width="0.2" height="15.0" fill="rgb(221,22,35)" rx="2" ry="2" />
<text x="908.00" y="847.5" ></text>
</g>
<g >
<title>do_async_page_fault (10,101,010 samples, 0.02%)</title><rect x="183.5" y="1029" width="0.3" height="15.0" fill="rgb(241,194,48)" rx="2" ry="2" />
<text x="186.54" y="1039.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="1089.6" y="37" width="0.2" height="15.0" fill="rgb(227,181,9)" rx="2" ry="2" />
<text x="1092.58" y="47.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="856.9" y="709" width="0.2" height="15.0" fill="rgb(223,196,51)" rx="2" ry="2" />
<text x="859.88" y="719.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="1038.3" y="981" width="0.2" height="15.0" fill="rgb(243,102,4)" rx="2" ry="2" />
<text x="1041.33" y="991.5" ></text>
</g>
<g >
<title>compile_filename (60,606,060 samples, 0.11%)</title><rect x="704.4" y="1093" width="1.2" height="15.0" fill="rgb(232,227,15)" rx="2" ry="2" />
<text x="707.38" y="1103.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="757" width="0.3" height="15.0" fill="rgb(236,225,25)" rx="2" ry="2" />
<text x="1134.25" y="767.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="850.6" y="565" width="0.2" height="15.0" fill="rgb(244,177,51)" rx="2" ry="2" />
<text x="853.62" y="575.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="837" width="0.2" height="15.0" fill="rgb(240,80,4)" rx="2" ry="2" />
<text x="1091.33" y="847.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="789" width="0.2" height="15.0" fill="rgb(246,153,9)" rx="2" ry="2" />
<text x="1056.12" y="799.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (80,808,080 samples, 0.14%)</title><rect x="939.4" y="469" width="1.6" height="15.0" fill="rgb(253,96,40)" rx="2" ry="2" />
<text x="942.38" y="479.5" ></text>
</g>
<g >
<title>TRACE-15$MediaWiki\Languages\LanguageNameUtils::getLanguageNamesUncached$227 (50,505,050 samples, 0.09%)</title><rect x="271.7" y="1141" width="1.0" height="15.0" fill="rgb(222,166,51)" rx="2" ry="2" />
<text x="274.67" y="1151.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (292,929,290 samples, 0.51%)</title><rect x="1125.6" y="1061" width="6.1" height="15.0" fill="rgb(239,180,35)" rx="2" ry="2" />
<text x="1128.62" y="1071.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="539.4" y="853" width="0.2" height="15.0" fill="rgb(250,168,22)" rx="2" ry="2" />
<text x="542.38" y="863.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="390.2" y="741" width="0.2" height="15.0" fill="rgb(240,37,38)" rx="2" ry="2" />
<text x="393.21" y="751.5" ></text>
</g>
<g >
<title>zend_strtod (10,101,010 samples, 0.02%)</title><rect x="193.3" y="1077" width="0.2" height="15.0" fill="rgb(209,20,30)" rx="2" ry="2" />
<text x="196.33" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="272.1" y="1125" width="0.4" height="15.0" fill="rgb(251,61,48)" rx="2" ry="2" />
<text x="275.08" y="1135.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="740.8" y="901" width="0.2" height="15.0" fill="rgb(210,229,0)" rx="2" ry="2" />
<text x="743.83" y="911.5" ></text>
</g>
<g >
<title>zif_strtr (10,101,010 samples, 0.02%)</title><rect x="919.0" y="1045" width="0.2" height="15.0" fill="rgb(252,150,30)" rx="2" ry="2" />
<text x="921.96" y="1055.5" ></text>
</g>
<g >
<title>_php_stream_free (10,101,010 samples, 0.02%)</title><rect x="947.9" y="1093" width="0.2" height="15.0" fill="rgb(244,206,52)" rx="2" ry="2" />
<text x="950.92" y="1103.5" ></text>
</g>
<g >
<title>inode_permission (20,202,020 samples, 0.04%)</title><rect x="724.0" y="885" width="0.4" height="15.0" fill="rgb(252,122,39)" rx="2" ry="2" />
<text x="726.96" y="895.5" ></text>
</g>
<g >
<title>TRACE-373$Wikimedia\Rdbms\LoadBalancer::__construct$206 (10,101,010 samples, 0.02%)</title><rect x="499.0" y="1141" width="0.2" height="15.0" fill="rgb(233,167,44)" rx="2" ry="2" />
<text x="501.96" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="1001.0" y="1109" width="0.2" height="15.0" fill="rgb(247,88,42)" rx="2" ry="2" />
<text x="1004.04" y="1119.5" ></text>
</g>
<g >
<title>zend_destroy_file_handle (10,101,010 samples, 0.02%)</title><rect x="846.5" y="853" width="0.2" height="15.0" fill="rgb(221,120,6)" rx="2" ry="2" />
<text x="849.46" y="863.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="861.0" y="805" width="0.2" height="15.0" fill="rgb(207,162,1)" rx="2" ry="2" />
<text x="864.04" y="815.5" ></text>
</g>
<g >
<title>do_exit (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1125" width="0.2" height="15.0" fill="rgb(209,70,4)" rx="2" ry="2" />
<text x="1175.08" y="1135.5" ></text>
</g>
<g >
<title>__xattr_check_inode (10,101,010 samples, 0.02%)</title><rect x="956.9" y="773" width="0.2" height="15.0" fill="rgb(209,199,29)" rx="2" ry="2" />
<text x="959.88" y="783.5" ></text>
</g>
<g >
<title>_is_numeric_string_ex (10,101,010 samples, 0.02%)</title><rect x="298.8" y="1093" width="0.2" height="15.0" fill="rgb(216,33,16)" rx="2" ry="2" />
<text x="301.75" y="1103.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (636,363,630 samples, 1.11%)</title><rect x="1151.5" y="869" width="13.1" height="15.0" fill="rgb(219,161,37)" rx="2" ry="2" />
<text x="1154.46" y="879.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="266.0" y="1093" width="0.2" height="15.0" fill="rgb(251,149,13)" rx="2" ry="2" />
<text x="269.04" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="331.5" y="1125" width="0.8" height="15.0" fill="rgb(239,92,15)" rx="2" ry="2" />
<text x="334.46" y="1135.5" ></text>
</g>
<g >
<title>recv (10,101,010 samples, 0.02%)</title><rect x="927.7" y="885" width="0.2" height="15.0" fill="rgb(212,204,35)" rx="2" ry="2" />
<text x="930.71" y="895.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="542.5" y="1109" width="0.6" height="15.0" fill="rgb(240,141,22)" rx="2" ry="2" />
<text x="545.50" y="1119.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="484.6" y="1125" width="0.2" height="15.0" fill="rgb(231,210,37)" rx="2" ry="2" />
<text x="487.58" y="1135.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="693" width="0.2" height="15.0" fill="rgb(220,132,7)" rx="2" ry="2" />
<text x="1170.08" y="703.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="1023.3" y="1061" width="0.5" height="15.0" fill="rgb(232,88,27)" rx="2" ry="2" />
<text x="1026.33" y="1071.5" ></text>
</g>
<g >
<title>virtqueue_add (20,202,020 samples, 0.04%)</title><rect x="1153.1" y="341" width="0.4" height="15.0" fill="rgb(212,87,36)" rx="2" ry="2" />
<text x="1156.12" y="351.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="300.6" y="949" width="0.2" height="15.0" fill="rgb(240,21,27)" rx="2" ry="2" />
<text x="303.62" y="959.5" ></text>
</g>
<g >
<title>zend_jit_fetch_obj_r_slow (10,101,010 samples, 0.02%)</title><rect x="535.6" y="1125" width="0.2" height="15.0" fill="rgb(212,32,50)" rx="2" ry="2" />
<text x="538.62" y="1135.5" ></text>
</g>
<g >
<title>skb_release_data (10,101,010 samples, 0.02%)</title><rect x="1160.4" y="517" width="0.2" height="15.0" fill="rgb(252,150,4)" rx="2" ry="2" />
<text x="1163.42" y="527.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="904.0" y="917" width="0.2" height="15.0" fill="rgb(235,140,5)" rx="2" ry="2" />
<text x="906.96" y="927.5" ></text>
</g>
<g >
<title>ip_route_input_noref (80,808,080 samples, 0.14%)</title><rect x="1160.6" y="517" width="1.7" height="15.0" fill="rgb(250,111,33)" rx="2" ry="2" />
<text x="1163.62" y="527.5" ></text>
</g>
<g >
<title>zend_fcall_info_call (202,020,200 samples, 0.35%)</title><rect x="1026.7" y="1061" width="4.1" height="15.0" fill="rgb(217,61,12)" rx="2" ry="2" />
<text x="1029.67" y="1071.5" ></text>
</g>
<g >
<title>ext4_finish_bio (10,101,010 samples, 0.02%)</title><rect x="696.2" y="949" width="0.3" height="15.0" fill="rgb(244,205,9)" rx="2" ry="2" />
<text x="699.25" y="959.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (30,303,030 samples, 0.05%)</title><rect x="767.3" y="997" width="0.6" height="15.0" fill="rgb(209,37,54)" rx="2" ry="2" />
<text x="770.29" y="1007.5" ></text>
</g>
<g >
<title>zend_strtod (20,202,020 samples, 0.04%)</title><rect x="198.5" y="1093" width="0.5" height="15.0" fill="rgb(219,172,44)" rx="2" ry="2" />
<text x="201.54" y="1103.5" ></text>
</g>
<g >
<title>TRACE-283$Wikimedia\Rdbms\LoadBalancer::hasPrimaryChanges$2133 (20,202,020 samples, 0.04%)</title><rect x="476.0" y="1141" width="0.5" height="15.0" fill="rgb(210,105,30)" rx="2" ry="2" />
<text x="479.04" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="850.6" y="869" width="0.2" height="15.0" fill="rgb(209,114,38)" rx="2" ry="2" />
<text x="853.62" y="879.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="641.7" y="997" width="0.2" height="15.0" fill="rgb(252,30,10)" rx="2" ry="2" />
<text x="644.67" y="1007.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="773" width="0.2" height="15.0" fill="rgb(211,193,4)" rx="2" ry="2" />
<text x="1022.79" y="783.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1029" width="0.2" height="15.0" fill="rgb(225,140,13)" rx="2" ry="2" />
<text x="246.96" y="1039.5" ></text>
</g>
<g >
<title>legitimize_path.isra.30 (30,303,030 samples, 0.05%)</title><rect x="394.4" y="933" width="0.6" height="15.0" fill="rgb(206,76,2)" rx="2" ry="2" />
<text x="397.38" y="943.5" ></text>
</g>
<g >
<title>inet_csk_reset_keepalive_timer (10,101,010 samples, 0.02%)</title><rect x="641.7" y="821" width="0.2" height="15.0" fill="rgb(235,74,27)" rx="2" ry="2" />
<text x="644.67" y="831.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="718.3" y="837" width="0.2" height="15.0" fill="rgb(215,75,46)" rx="2" ry="2" />
<text x="721.33" y="847.5" ></text>
</g>
<g >
<title>__do_page_fault (10,101,010 samples, 0.02%)</title><rect x="183.5" y="997" width="0.3" height="15.0" fill="rgb(216,26,28)" rx="2" ry="2" />
<text x="186.54" y="1007.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="281.0" y="1125" width="0.2" height="15.0" fill="rgb(223,217,43)" rx="2" ry="2" />
<text x="284.04" y="1135.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="904.0" y="789" width="0.2" height="15.0" fill="rgb(227,107,31)" rx="2" ry="2" />
<text x="906.96" y="799.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="677.7" y="693" width="0.2" height="15.0" fill="rgb(252,178,27)" rx="2" ry="2" />
<text x="680.71" y="703.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (10,101,010 samples, 0.02%)</title><rect x="416.9" y="709" width="0.2" height="15.0" fill="rgb(248,206,24)" rx="2" ry="2" />
<text x="419.88" y="719.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="183.8" y="773" width="0.2" height="15.0" fill="rgb(241,119,52)" rx="2" ry="2" />
<text x="186.75" y="783.5" ></text>
</g>
<g >
<title>TRACE-213$MediumSpecificBagOStuff::get$122 (30,303,030 samples, 0.05%)</title><rect x="353.3" y="1141" width="0.7" height="15.0" fill="rgb(209,21,37)" rx="2" ry="2" />
<text x="356.33" y="1151.5" ></text>
</g>
<g >
<title>php_output_op.part.0 (101,010,100 samples, 0.18%)</title><rect x="1030.8" y="1061" width="2.1" height="15.0" fill="rgb(213,106,11)" rx="2" ry="2" />
<text x="1033.83" y="1071.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1037.7" y="981" width="0.2" height="15.0" fill="rgb(205,8,49)" rx="2" ry="2" />
<text x="1040.71" y="991.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="981" width="0.9" height="15.0" fill="rgb(225,9,11)" rx="2" ry="2" />
<text x="1035.92" y="991.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="422.7" y="981" width="0.2" height="15.0" fill="rgb(217,135,21)" rx="2" ry="2" />
<text x="425.71" y="991.5" ></text>
</g>
<g >
<title>zend_do_link_class (3,202,020,170 samples, 5.60%)</title><rect x="807.3" y="997" width="66.0" height="15.0" fill="rgb(235,61,44)" rx="2" ry="2" />
<text x="810.29" y="1007.5" >zend_do..</text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="468.8" y="1093" width="0.2" height="15.0" fill="rgb(221,107,10)" rx="2" ry="2" />
<text x="471.75" y="1103.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="778.3" y="965" width="0.2" height="15.0" fill="rgb(238,94,24)" rx="2" ry="2" />
<text x="781.33" y="975.5" ></text>
</g>
<g >
<title>php_pcre_replace_impl (80,808,080 samples, 0.14%)</title><rect x="959.6" y="1093" width="1.6" height="15.0" fill="rgb(254,112,36)" rx="2" ry="2" />
<text x="962.58" y="1103.5" ></text>
</g>
<g >
<title>common_perm (30,303,030 samples, 0.05%)</title><rect x="425.2" y="949" width="0.6" height="15.0" fill="rgb(247,213,44)" rx="2" ry="2" />
<text x="428.21" y="959.5" ></text>
</g>
<g >
<title>TRACE-470$MemcachedPeclBagOStuff::doGetMulti$334 (10,101,010 samples, 0.02%)</title><rect x="530.6" y="1141" width="0.2" height="15.0" fill="rgb(234,74,25)" rx="2" ry="2" />
<text x="533.62" y="1151.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (161,616,160 samples, 0.28%)</title><rect x="745.6" y="1029" width="3.4" height="15.0" fill="rgb(214,218,46)" rx="2" ry="2" />
<text x="748.62" y="1039.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="677.7" y="741" width="0.2" height="15.0" fill="rgb(212,61,1)" rx="2" ry="2" />
<text x="680.71" y="751.5" ></text>
</g>
<g >
<title>zend_llist_del_element (10,101,010 samples, 0.02%)</title><rect x="740.4" y="837" width="0.2" height="15.0" fill="rgb(225,216,17)" rx="2" ry="2" />
<text x="743.42" y="847.5" ></text>
</g>
<g >
<title>ep_poll (101,010,100 samples, 0.18%)</title><rect x="209.0" y="1061" width="2.0" height="15.0" fill="rgb(236,227,15)" rx="2" ry="2" />
<text x="211.96" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="997" width="0.2" height="15.0" fill="rgb(252,183,20)" rx="2" ry="2" />
<text x="1127.17" y="1007.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="24.0" y="821" width="0.2" height="15.0" fill="rgb(241,114,25)" rx="2" ry="2" />
<text x="26.96" y="831.5" ></text>
</g>
<g >
<title>do_faccessat (141,414,140 samples, 0.25%)</title><rect x="723.5" y="965" width="3.0" height="15.0" fill="rgb(216,62,47)" rx="2" ry="2" />
<text x="726.54" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="471.7" y="981" width="0.2" height="15.0" fill="rgb(250,126,5)" rx="2" ry="2" />
<text x="474.67" y="991.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="686.5" y="981" width="0.2" height="15.0" fill="rgb(219,146,11)" rx="2" ry="2" />
<text x="689.46" y="991.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="24.0" y="757" width="0.2" height="15.0" fill="rgb(247,114,24)" rx="2" ry="2" />
<text x="26.96" y="767.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1039.6" y="1093" width="0.2" height="15.0" fill="rgb(213,30,44)" rx="2" ry="2" />
<text x="1042.58" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (50,505,050 samples, 0.09%)</title><rect x="1032.9" y="1077" width="1.1" height="15.0" fill="rgb(207,161,7)" rx="2" ry="2" />
<text x="1035.92" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_add (20,202,020 samples, 0.04%)</title><rect x="846.0" y="821" width="0.5" height="15.0" fill="rgb(217,185,44)" rx="2" ry="2" />
<text x="849.04" y="831.5" ></text>
</g>
<g >
<title>ip_finish_output2 (40,404,040 samples, 0.07%)</title><rect x="1089.4" y="629" width="0.8" height="15.0" fill="rgb(216,58,35)" rx="2" ry="2" />
<text x="1092.38" y="639.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="693" width="0.2" height="15.0" fill="rgb(240,143,9)" rx="2" ry="2" />
<text x="1085.08" y="703.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="885" width="0.2" height="15.0" fill="rgb(232,155,38)" rx="2" ry="2" />
<text x="1015.92" y="895.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="342.3" y="1045" width="0.2" height="15.0" fill="rgb(236,20,8)" rx="2" ry="2" />
<text x="345.29" y="1055.5" ></text>
</g>
<g >
<title>apc_cache_fetch (30,303,030 samples, 0.05%)</title><rect x="1122.9" y="1205" width="0.6" height="15.0" fill="rgb(206,159,8)" rx="2" ry="2" />
<text x="1125.92" y="1215.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="732.5" y="981" width="0.2" height="15.0" fill="rgb(236,225,34)" rx="2" ry="2" />
<text x="735.50" y="991.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (10,101,010 samples, 0.02%)</title><rect x="919.2" y="917" width="0.2" height="15.0" fill="rgb(240,68,28)" rx="2" ry="2" />
<text x="922.17" y="927.5" ></text>
</g>
<g >
<title>zif_file_get_contents (202,020,200 samples, 0.35%)</title><rect x="945.2" y="1109" width="4.2" height="15.0" fill="rgb(221,102,29)" rx="2" ry="2" />
<text x="948.21" y="1119.5" ></text>
</g>
<g >
<title>__audit_inode (313,131,310 samples, 0.55%)</title><rect x="372.3" y="981" width="6.5" height="15.0" fill="rgb(230,81,37)" rx="2" ry="2" />
<text x="375.29" y="991.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="193.8" y="901" width="0.2" height="15.0" fill="rgb(220,5,39)" rx="2" ry="2" />
<text x="196.75" y="911.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="243.8" y="1109" width="0.2" height="15.0" fill="rgb(214,83,8)" rx="2" ry="2" />
<text x="246.75" y="1119.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="476.9" y="901" width="0.2" height="15.0" fill="rgb(238,202,30)" rx="2" ry="2" />
<text x="479.88" y="911.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1133.5" y="1125" width="0.3" height="15.0" fill="rgb(220,153,4)" rx="2" ry="2" />
<text x="1136.54" y="1135.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="789" width="0.2" height="15.0" fill="rgb(239,47,26)" rx="2" ry="2" />
<text x="1150.29" y="799.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_query_pub (10,101,010 samples, 0.02%)</title><rect x="945.0" y="1125" width="0.2" height="15.0" fill="rgb(246,197,0)" rx="2" ry="2" />
<text x="948.00" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class (20,202,020 samples, 0.04%)</title><rect x="286.2" y="1109" width="0.5" height="15.0" fill="rgb(229,96,9)" rx="2" ry="2" />
<text x="289.25" y="1119.5" ></text>
</g>
<g >
<title>revert_creds (10,101,010 samples, 0.02%)</title><rect x="526.9" y="949" width="0.2" height="15.0" fill="rgb(226,29,53)" rx="2" ry="2" />
<text x="529.88" y="959.5" ></text>
</g>
<g >
<title>sock_def_readable (10,101,010 samples, 0.02%)</title><rect x="998.8" y="773" width="0.2" height="15.0" fill="rgb(231,208,27)" rx="2" ry="2" />
<text x="1001.75" y="783.5" ></text>
</g>
<g >
<title>zend_closure_get_closure (10,101,010 samples, 0.02%)</title><rect x="509.8" y="1093" width="0.2" height="15.0" fill="rgb(236,166,20)" rx="2" ry="2" />
<text x="512.79" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="803.5" y="901" width="0.3" height="15.0" fill="rgb(215,90,28)" rx="2" ry="2" />
<text x="806.54" y="911.5" ></text>
</g>
<g >
<title>tcp_recvmsg (10,101,010 samples, 0.02%)</title><rect x="207.3" y="981" width="0.2" height="15.0" fill="rgb(224,176,48)" rx="2" ry="2" />
<text x="210.29" y="991.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="1061.9" y="1109" width="0.2" height="15.0" fill="rgb(222,206,25)" rx="2" ry="2" />
<text x="1064.88" y="1119.5" ></text>
</g>
<g >
<title>zendi_smart_strcmp (40,404,040 samples, 0.07%)</title><rect x="511.0" y="1061" width="0.9" height="15.0" fill="rgb(222,37,45)" rx="2" ry="2" />
<text x="514.04" y="1071.5" ></text>
</g>
<g >
<title>ip_sabotage_in (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="597" width="2.9" height="15.0" fill="rgb(246,141,32)" rx="2" ry="2" />
<text x="1130.50" y="607.5" ></text>
</g>
<g >
<title>zif_is_callable (191,919,190 samples, 0.34%)</title><rect x="267.7" y="1125" width="4.0" height="15.0" fill="rgb(217,5,27)" rx="2" ry="2" />
<text x="270.71" y="1135.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="1189.8" y="1141" width="0.2" height="15.0" fill="rgb(226,138,52)" rx="2" ry="2" />
<text x="1192.79" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="764.8" y="1045" width="0.2" height="15.0" fill="rgb(242,122,34)" rx="2" ry="2" />
<text x="767.79" y="1055.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="302.1" y="901" width="0.2" height="15.0" fill="rgb(226,125,32)" rx="2" ry="2" />
<text x="305.08" y="911.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="475.2" y="1013" width="0.2" height="15.0" fill="rgb(211,228,26)" rx="2" ry="2" />
<text x="478.21" y="1023.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="686.7" y="853" width="0.2" height="15.0" fill="rgb(218,171,44)" rx="2" ry="2" />
<text x="689.67" y="863.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1061" width="0.2" height="15.0" fill="rgb(237,224,45)" rx="2" ry="2" />
<text x="693.00" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1180.2" y="1093" width="0.2" height="15.0" fill="rgb(206,188,21)" rx="2" ry="2" />
<text x="1183.21" y="1103.5" ></text>
</g>
<g >
<title>__x64_sys_timer_settime (10,101,010 samples, 0.02%)</title><rect x="1063.1" y="1093" width="0.2" height="15.0" fill="rgb(209,24,28)" rx="2" ry="2" />
<text x="1066.12" y="1103.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="773" width="0.2" height="15.0" fill="rgb(238,181,39)" rx="2" ry="2" />
<text x="1091.33" y="783.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="451.9" y="1077" width="0.2" height="15.0" fill="rgb(242,119,29)" rx="2" ry="2" />
<text x="454.88" y="1087.5" ></text>
</g>
<g >
<title>skb_release_all (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="741" width="0.2" height="15.0" fill="rgb(235,129,10)" rx="2" ry="2" />
<text x="1010.50" y="751.5" ></text>
</g>
<g >
<title>nf_nat_manip_pkt (10,101,010 samples, 0.02%)</title><rect x="24.0" y="709" width="0.2" height="15.0" fill="rgb(248,65,40)" rx="2" ry="2" />
<text x="26.96" y="719.5" ></text>
</g>
<g >
<title>TRACE-21$wfLoadExtension$48 (30,303,030 samples, 0.05%)</title><rect x="352.7" y="1141" width="0.6" height="15.0" fill="rgb(223,71,27)" rx="2" ry="2" />
<text x="355.71" y="1151.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="183.8" y="997" width="0.2" height="15.0" fill="rgb(212,35,42)" rx="2" ry="2" />
<text x="186.75" y="1007.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="615.2" y="1125" width="0.2" height="15.0" fill="rgb(225,172,19)" rx="2" ry="2" />
<text x="618.21" y="1135.5" ></text>
</g>
<g >
<title>rcu_core_si (10,101,010 samples, 0.02%)</title><rect x="371.9" y="933" width="0.2" height="15.0" fill="rgb(232,179,38)" rx="2" ry="2" />
<text x="374.88" y="943.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (20,202,020 samples, 0.04%)</title><rect x="339.2" y="1045" width="0.4" height="15.0" fill="rgb(215,160,23)" rx="2" ry="2" />
<text x="342.17" y="1055.5" ></text>
</g>
<g >
<title>override_creds (40,404,040 samples, 0.07%)</title><rect x="389.2" y="853" width="0.8" height="15.0" fill="rgb(214,173,28)" rx="2" ry="2" />
<text x="392.17" y="863.5" ></text>
</g>
<g >
<title>do_IRQ (20,202,020 samples, 0.04%)</title><rect x="244.0" y="1109" width="0.4" height="15.0" fill="rgb(240,30,43)" rx="2" ry="2" />
<text x="246.96" y="1119.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="303.1" y="741" width="0.2" height="15.0" fill="rgb(249,100,40)" rx="2" ry="2" />
<text x="306.12" y="751.5" ></text>
</g>
<g >
<title>path_openat (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1109" width="0.8" height="15.0" fill="rgb(240,171,52)" rx="2" ry="2" />
<text x="1138.42" y="1119.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="539.4" y="661" width="0.2" height="15.0" fill="rgb(230,45,43)" rx="2" ry="2" />
<text x="542.38" y="671.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="498.8" y="1093" width="0.2" height="15.0" fill="rgb(244,154,30)" rx="2" ry="2" />
<text x="501.75" y="1103.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (80,808,080 samples, 0.14%)</title><rect x="303.1" y="869" width="1.7" height="15.0" fill="rgb(211,141,16)" rx="2" ry="2" />
<text x="306.12" y="879.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="901" width="0.2" height="15.0" fill="rgb(242,137,20)" rx="2" ry="2" />
<text x="1171.12" y="911.5" ></text>
</g>
<g >
<title>TRACE-170$Monolog\Logger::addRecord$347 (20,202,020 samples, 0.04%)</title><rect x="297.7" y="1141" width="0.4" height="15.0" fill="rgb(237,57,22)" rx="2" ry="2" />
<text x="300.71" y="1151.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="183.8" y="837" width="0.2" height="15.0" fill="rgb(241,0,51)" rx="2" ry="2" />
<text x="186.75" y="847.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1077" width="0.2" height="15.0" fill="rgb(214,134,20)" rx="2" ry="2" />
<text x="554.67" y="1087.5" ></text>
</g>
<g >
<title>__socket (161,616,160 samples, 0.28%)</title><rect x="1118.3" y="1205" width="3.4" height="15.0" fill="rgb(237,103,16)" rx="2" ry="2" />
<text x="1121.33" y="1215.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="524.4" y="773" width="0.2" height="15.0" fill="rgb(214,135,44)" rx="2" ry="2" />
<text x="527.38" y="783.5" ></text>
</g>
<g >
<title>audit_filter_inodes (10,101,010 samples, 0.02%)</title><rect x="902.5" y="1045" width="0.2" height="15.0" fill="rgb(244,146,38)" rx="2" ry="2" />
<text x="905.50" y="1055.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="837" width="0.2" height="15.0" fill="rgb(214,74,42)" rx="2" ry="2" />
<text x="1015.92" y="847.5" ></text>
</g>
<g >
<title>zend_accel_load_script (20,202,020 samples, 0.04%)</title><rect x="767.5" y="869" width="0.4" height="15.0" fill="rgb(249,160,12)" rx="2" ry="2" />
<text x="770.50" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="965" width="0.2" height="15.0" fill="rgb(229,175,36)" rx="2" ry="2" />
<text x="1085.08" y="975.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="497.5" y="1125" width="0.2" height="15.0" fill="rgb(242,48,31)" rx="2" ry="2" />
<text x="500.50" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (8,242,424,160 samples, 14.41%)</title><rect x="33.1" y="1205" width="170.0" height="15.0" fill="rgb(253,59,17)" rx="2" ry="2" />
<text x="36.12" y="1215.5" >[unknown]</text>
</g>
<g >
<title>dev_hard_start_xmit (60,606,060 samples, 0.11%)</title><rect x="1185.2" y="421" width="1.3" height="15.0" fill="rgb(236,71,4)" rx="2" ry="2" />
<text x="1188.21" y="431.5" ></text>
</g>
<g >
<title>inflateReset (10,101,010 samples, 0.02%)</title><rect x="35.6" y="1189" width="0.2" height="15.0" fill="rgb(243,80,7)" rx="2" ry="2" />
<text x="38.62" y="1199.5" ></text>
</g>
<g >
<title>user_path_at_empty (101,010,100 samples, 0.18%)</title><rect x="900.4" y="1045" width="2.1" height="15.0" fill="rgb(234,167,14)" rx="2" ry="2" />
<text x="903.42" y="1055.5" ></text>
</g>
<g >
<title>php_fgetcsv (10,101,010 samples, 0.02%)</title><rect x="1058.8" y="1109" width="0.2" height="15.0" fill="rgb(236,130,27)" rx="2" ry="2" />
<text x="1061.75" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (50,505,050 samples, 0.09%)</title><rect x="787.9" y="949" width="1.1" height="15.0" fill="rgb(222,4,49)" rx="2" ry="2" />
<text x="790.92" y="959.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="881.2" y="341" width="0.3" height="15.0" fill="rgb(242,50,25)" rx="2" ry="2" />
<text x="884.25" y="351.5" ></text>
</g>
<g >
<title>process_backlog (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="533" width="0.4" height="15.0" fill="rgb(254,228,11)" rx="2" ry="2" />
<text x="1092.58" y="543.5" ></text>
</g>
<g >
<title>ZEND_PRE_INC_OBJ_SPEC_UNUSED_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="555.2" y="1141" width="0.4" height="15.0" fill="rgb(205,93,30)" rx="2" ry="2" />
<text x="558.21" y="1151.5" ></text>
</g>
<g >
<title>compile_filename (90,909,090 samples, 0.16%)</title><rect x="729.6" y="997" width="1.9" height="15.0" fill="rgb(228,43,27)" rx="2" ry="2" />
<text x="732.58" y="1007.5" ></text>
</g>
<g >
<title>ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="296.2" y="1125" width="0.3" height="15.0" fill="rgb(254,118,29)" rx="2" ry="2" />
<text x="299.25" y="1135.5" ></text>
</g>
<g >
<title>addrtype_mt_v1 (10,101,010 samples, 0.02%)</title><rect x="1130.6" y="661" width="0.2" height="15.0" fill="rgb(251,183,42)" rx="2" ry="2" />
<text x="1133.62" y="671.5" ></text>
</g>
<g >
<title>file_update_time (10,101,010 samples, 0.02%)</title><rect x="1036.9" y="933" width="0.2" height="15.0" fill="rgb(213,73,39)" rx="2" ry="2" />
<text x="1039.88" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="204.2" y="1141" width="0.6" height="15.0" fill="rgb(221,227,36)" rx="2" ry="2" />
<text x="207.17" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="913.1" y="901" width="0.2" height="15.0" fill="rgb(249,114,22)" rx="2" ry="2" />
<text x="916.12" y="911.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="443.3" y="997" width="0.2" height="15.0" fill="rgb(214,161,31)" rx="2" ry="2" />
<text x="446.33" y="1007.5" ></text>
</g>
<g >
<title>zend_objects_store_del (60,606,060 samples, 0.11%)</title><rect x="647.3" y="1109" width="1.2" height="15.0" fill="rgb(218,228,28)" rx="2" ry="2" />
<text x="650.29" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="284.0" y="901" width="0.2" height="15.0" fill="rgb(237,18,52)" rx="2" ry="2" />
<text x="286.96" y="911.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="517.3" y="1077" width="0.2" height="15.0" fill="rgb(230,169,25)" rx="2" ry="2" />
<text x="520.29" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (202,020,200 samples, 0.35%)</title><rect x="899.8" y="1093" width="4.2" height="15.0" fill="rgb(210,104,25)" rx="2" ry="2" />
<text x="902.79" y="1103.5" ></text>
</g>
<g >
<title>ip_finish_output2 (707,070,700 samples, 1.24%)</title><rect x="1151.2" y="917" width="14.6" height="15.0" fill="rgb(217,54,45)" rx="2" ry="2" />
<text x="1154.25" y="927.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (10,101,010 samples, 0.02%)</title><rect x="518.8" y="1061" width="0.2" height="15.0" fill="rgb(219,176,49)" rx="2" ry="2" />
<text x="521.75" y="1071.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1111.9" y="1061" width="0.2" height="15.0" fill="rgb(254,74,51)" rx="2" ry="2" />
<text x="1114.88" y="1071.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (353,535,350 samples, 0.62%)</title><rect x="46.0" y="1109" width="7.3" height="15.0" fill="rgb(241,44,23)" rx="2" ry="2" />
<text x="49.04" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_do_resize.part.0 (10,101,010 samples, 0.02%)</title><rect x="541.9" y="1093" width="0.2" height="15.0" fill="rgb(237,196,42)" rx="2" ry="2" />
<text x="544.88" y="1103.5" ></text>
</g>
<g >
<title>zif_class_alias (10,101,010 samples, 0.02%)</title><rect x="807.1" y="917" width="0.2" height="15.0" fill="rgb(217,13,39)" rx="2" ry="2" />
<text x="810.08" y="927.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="743.1" y="773" width="0.2" height="15.0" fill="rgb(249,205,7)" rx="2" ry="2" />
<text x="746.12" y="783.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (20,202,020 samples, 0.04%)</title><rect x="906.2" y="1061" width="0.5" height="15.0" fill="rgb(236,127,11)" rx="2" ry="2" />
<text x="909.25" y="1071.5" ></text>
</g>
<g >
<title>__check_object_size (20,202,020 samples, 0.04%)</title><rect x="726.0" y="901" width="0.5" height="15.0" fill="rgb(252,76,52)" rx="2" ry="2" />
<text x="729.04" y="911.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="270.8" y="965" width="0.2" height="15.0" fill="rgb(245,23,30)" rx="2" ry="2" />
<text x="273.83" y="975.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="821" width="0.2" height="15.0" fill="rgb(226,145,49)" rx="2" ry="2" />
<text x="1010.50" y="831.5" ></text>
</g>
<g >
<title>excimer_timer_handle (20,202,020 samples, 0.04%)</title><rect x="1172.3" y="1221" width="0.4" height="15.0" fill="rgb(212,118,2)" rx="2" ry="2" />
<text x="1175.29" y="1231.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="930.8" y="917" width="0.2" height="15.0" fill="rgb(205,178,34)" rx="2" ry="2" />
<text x="933.83" y="927.5" ></text>
</g>
<g >
<title>spl_perform_autoload (737,373,730 samples, 1.29%)</title><rect x="1004.4" y="1093" width="15.2" height="15.0" fill="rgb(218,149,31)" rx="2" ry="2" />
<text x="1007.38" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1046.0" y="1045" width="0.2" height="15.0" fill="rgb(245,122,1)" rx="2" ry="2" />
<text x="1049.04" y="1055.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="796.9" y="917" width="0.2" height="15.0" fill="rgb(245,206,23)" rx="2" ry="2" />
<text x="799.88" y="927.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="443.3" y="1029" width="0.2" height="15.0" fill="rgb(245,211,0)" rx="2" ry="2" />
<text x="446.33" y="1039.5" ></text>
</g>
<g >
<title>inet_shutdown (252,525,250 samples, 0.44%)</title><rect x="1183.1" y="1141" width="5.2" height="15.0" fill="rgb(233,100,36)" rx="2" ry="2" />
<text x="1186.12" y="1151.5" ></text>
</g>
<g >
<title>skb_free_head (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="709" width="0.2" height="15.0" fill="rgb(229,39,29)" rx="2" ry="2" />
<text x="1010.50" y="719.5" ></text>
</g>
<g >
<title>zend_call_known_function (141,414,140 samples, 0.25%)</title><rect x="685.6" y="1061" width="2.9" height="15.0" fill="rgb(249,23,29)" rx="2" ry="2" />
<text x="688.62" y="1071.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="682.1" y="725" width="0.2" height="15.0" fill="rgb(251,184,50)" rx="2" ry="2" />
<text x="685.08" y="735.5" ></text>
</g>
<g >
<title>access (151,515,150 samples, 0.26%)</title><rect x="774.0" y="1029" width="3.1" height="15.0" fill="rgb(248,107,25)" rx="2" ry="2" />
<text x="776.96" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="822.7" y="885" width="0.2" height="15.0" fill="rgb(218,30,22)" rx="2" ry="2" />
<text x="825.71" y="895.5" ></text>
</g>
<g >
<title>nf_conntrack_in (40,404,040 samples, 0.07%)</title><rect x="1162.9" y="693" width="0.9" height="15.0" fill="rgb(246,81,37)" rx="2" ry="2" />
<text x="1165.92" y="703.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="303.1" y="725" width="0.2" height="15.0" fill="rgb(245,171,26)" rx="2" ry="2" />
<text x="306.12" y="735.5" ></text>
</g>
<g >
<title>prepend_path (10,101,010 samples, 0.02%)</title><rect x="1132.7" y="1141" width="0.2" height="15.0" fill="rgb(239,126,46)" rx="2" ry="2" />
<text x="1135.71" y="1151.5" ></text>
</g>
<g >
<title>php_var_unserialize_destroy (10,101,010 samples, 0.02%)</title><rect x="202.3" y="1173" width="0.2" height="15.0" fill="rgb(224,94,17)" rx="2" ry="2" />
<text x="205.29" y="1183.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="207.9" y="1109" width="0.2" height="15.0" fill="rgb(251,58,48)" rx="2" ry="2" />
<text x="210.92" y="1119.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (60,606,060 samples, 0.11%)</title><rect x="1089.2" y="741" width="1.2" height="15.0" fill="rgb(252,208,36)" rx="2" ry="2" />
<text x="1092.17" y="751.5" ></text>
</g>
<g >
<title>php_output_stack_pop (303,030,300 samples, 0.53%)</title><rect x="1026.7" y="1093" width="6.2" height="15.0" fill="rgb(235,98,6)" rx="2" ry="2" />
<text x="1029.67" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (40,404,040 samples, 0.07%)</title><rect x="679.6" y="965" width="0.8" height="15.0" fill="rgb(227,114,33)" rx="2" ry="2" />
<text x="682.58" y="975.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (90,909,090 samples, 0.16%)</title><rect x="712.3" y="1093" width="1.9" height="15.0" fill="rgb(219,111,27)" rx="2" ry="2" />
<text x="715.29" y="1103.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="421" width="0.4" height="15.0" fill="rgb(220,129,8)" rx="2" ry="2" />
<text x="1028.62" y="431.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="469" width="0.2" height="15.0" fill="rgb(235,126,54)" rx="2" ry="2" />
<text x="1170.08" y="479.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1045" width="0.2" height="15.0" fill="rgb(220,85,34)" rx="2" ry="2" />
<text x="902.38" y="1055.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="390.2" y="677" width="0.2" height="15.0" fill="rgb(254,46,11)" rx="2" ry="2" />
<text x="393.21" y="687.5" ></text>
</g>
<g >
<title>freeaddrinfo (10,101,010 samples, 0.02%)</title><rect x="1132.3" y="1205" width="0.2" height="15.0" fill="rgb(229,43,1)" rx="2" ry="2" />
<text x="1135.29" y="1215.5" ></text>
</g>
<g >
<title>do_syscall_64 (191,919,190 samples, 0.34%)</title><rect x="723.3" y="997" width="4.0" height="15.0" fill="rgb(242,123,32)" rx="2" ry="2" />
<text x="726.33" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="615.0" y="1109" width="0.2" height="15.0" fill="rgb(238,51,2)" rx="2" ry="2" />
<text x="618.00" y="1119.5" ></text>
</g>
<g >
<title>getname_flags (40,404,040 samples, 0.07%)</title><rect x="912.7" y="949" width="0.8" height="15.0" fill="rgb(229,61,4)" rx="2" ry="2" />
<text x="915.71" y="959.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="924.0" y="1029" width="0.2" height="15.0" fill="rgb(233,116,48)" rx="2" ry="2" />
<text x="926.96" y="1039.5" ></text>
</g>
<g >
<title>path_lookupat (80,808,080 samples, 0.14%)</title><rect x="1007.3" y="933" width="1.7" height="15.0" fill="rgb(252,76,49)" rx="2" ry="2" />
<text x="1010.29" y="943.5" ></text>
</g>
<g >
<title>memcached_behavior_get (10,101,010 samples, 0.02%)</title><rect x="1174.2" y="1221" width="0.2" height="15.0" fill="rgb(229,198,53)" rx="2" ry="2" />
<text x="1177.17" y="1231.5" ></text>
</g>
<g >
<title>ip_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="773" width="0.2" height="15.0" fill="rgb(207,190,37)" rx="2" ry="2" />
<text x="1095.08" y="783.5" ></text>
</g>
<g >
<title>zend_call_known_function (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="901" width="1.5" height="15.0" fill="rgb(224,195,48)" rx="2" ry="2" />
<text x="1005.50" y="911.5" ></text>
</g>
<g >
<title>walk_component (30,303,030 samples, 0.05%)</title><rect x="527.1" y="981" width="0.6" height="15.0" fill="rgb(231,97,53)" rx="2" ry="2" />
<text x="530.08" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="725" width="0.2" height="15.0" fill="rgb(207,213,9)" rx="2" ry="2" />
<text x="1170.08" y="735.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (50,505,050 samples, 0.09%)</title><rect x="303.8" y="741" width="1.0" height="15.0" fill="rgb(222,162,20)" rx="2" ry="2" />
<text x="306.75" y="751.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="250.4" y="1093" width="0.2" height="15.0" fill="rgb(224,199,31)" rx="2" ry="2" />
<text x="253.42" y="1103.5" ></text>
</g>
<g >
<title>TRACE-267$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$123 (20,202,020 samples, 0.04%)</title><rect x="471.5" y="1141" width="0.4" height="15.0" fill="rgb(243,190,43)" rx="2" ry="2" />
<text x="474.46" y="1151.5" ></text>
</g>
<g >
<title>__nf_conntrack_alloc (10,101,010 samples, 0.02%)</title><rect x="1126.2" y="917" width="0.3" height="15.0" fill="rgb(223,169,50)" rx="2" ry="2" />
<text x="1129.25" y="927.5" ></text>
</g>
<g >
<title>__d_lookup (40,404,040 samples, 0.07%)</title><rect x="911.7" y="869" width="0.8" height="15.0" fill="rgb(210,197,27)" rx="2" ry="2" />
<text x="914.67" y="879.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.46 (10,101,010 samples, 0.02%)</title><rect x="856.9" y="517" width="0.2" height="15.0" fill="rgb(254,14,15)" rx="2" ry="2" />
<text x="859.88" y="527.5" ></text>
</g>
<g >
<title>php_auto_globals_create_env (30,303,030 samples, 0.05%)</title><rect x="709.2" y="1045" width="0.6" height="15.0" fill="rgb(208,71,52)" rx="2" ry="2" />
<text x="712.17" y="1055.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="194.0" y="1061" width="0.4" height="15.0" fill="rgb(253,7,11)" rx="2" ry="2" />
<text x="196.96" y="1071.5" ></text>
</g>
<g >
<title>vfs_statx (2,666,666,640 samples, 4.66%)</title><rect x="372.3" y="1029" width="55.0" height="15.0" fill="rgb(254,159,27)" rx="2" ry="2" />
<text x="375.29" y="1039.5" >vfs_s..</text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="981" width="0.3" height="15.0" fill="rgb(214,175,41)" rx="2" ry="2" />
<text x="1174.25" y="991.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="913.1" y="709" width="0.2" height="15.0" fill="rgb(217,79,47)" rx="2" ry="2" />
<text x="916.12" y="719.5" ></text>
</g>
<g >
<title>veth_xmit (10,101,010 samples, 0.02%)</title><rect x="1187.7" y="885" width="0.2" height="15.0" fill="rgb(244,171,45)" rx="2" ry="2" />
<text x="1190.71" y="895.5" ></text>
</g>
<g >
<title>zend_include_or_eval (50,505,050 samples, 0.09%)</title><rect x="727.7" y="1013" width="1.1" height="15.0" fill="rgb(240,52,53)" rx="2" ry="2" />
<text x="730.71" y="1023.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="875.6" y="933" width="0.2" height="15.0" fill="rgb(239,10,4)" rx="2" ry="2" />
<text x="878.62" y="943.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1109" width="0.3" height="15.0" fill="rgb(212,188,18)" rx="2" ry="2" />
<text x="446.54" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="744.0" y="661" width="0.2" height="15.0" fill="rgb(215,1,8)" rx="2" ry="2" />
<text x="746.96" y="671.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="539.4" y="885" width="0.2" height="15.0" fill="rgb(240,218,6)" rx="2" ry="2" />
<text x="542.38" y="895.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="744.6" y="949" width="0.4" height="15.0" fill="rgb(224,133,43)" rx="2" ry="2" />
<text x="747.58" y="959.5" ></text>
</g>
<g >
<title>follow_managed (10,101,010 samples, 0.02%)</title><rect x="527.5" y="949" width="0.2" height="15.0" fill="rgb(217,36,46)" rx="2" ry="2" />
<text x="530.50" y="959.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="861.2" y="805" width="0.3" height="15.0" fill="rgb(221,102,22)" rx="2" ry="2" />
<text x="864.25" y="815.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_TMP_HANDLER (20,202,020 samples, 0.04%)</title><rect x="617.9" y="1125" width="0.4" height="15.0" fill="rgb(228,72,43)" rx="2" ry="2" />
<text x="620.92" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="451.5" y="1125" width="0.2" height="15.0" fill="rgb(228,72,54)" rx="2" ry="2" />
<text x="454.46" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_del (10,101,010 samples, 0.02%)</title><rect x="688.5" y="1077" width="0.3" height="15.0" fill="rgb(245,55,6)" rx="2" ry="2" />
<text x="691.54" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="942.7" y="901" width="0.6" height="15.0" fill="rgb(252,137,7)" rx="2" ry="2" />
<text x="945.71" y="911.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="976.9" y="1077" width="0.2" height="15.0" fill="rgb(225,154,2)" rx="2" ry="2" />
<text x="979.88" y="1087.5" ></text>
</g>
<g >
<title>php_array_merge (666,666,660 samples, 1.17%)</title><rect x="252.3" y="1109" width="13.7" height="15.0" fill="rgb(236,174,3)" rx="2" ry="2" />
<text x="255.29" y="1119.5" ></text>
</g>
<g >
<title>zend_create_closure (30,303,030 samples, 0.05%)</title><rect x="531.5" y="1109" width="0.6" height="15.0" fill="rgb(217,62,49)" rx="2" ry="2" />
<text x="534.46" y="1119.5" ></text>
</g>
<g >
<title>new_sync_read (30,303,030 samples, 0.05%)</title><rect x="217.3" y="1013" width="0.6" height="15.0" fill="rgb(230,209,2)" rx="2" ry="2" />
<text x="220.29" y="1023.5" ></text>
</g>
<g >
<title>php_array_merge (20,202,020 samples, 0.04%)</title><rect x="1000.2" y="1109" width="0.4" height="15.0" fill="rgb(223,188,7)" rx="2" ry="2" />
<text x="1003.21" y="1119.5" ></text>
</g>
<g >
<title>php_stat (10,101,010 samples, 0.02%)</title><rect x="1010.4" y="1045" width="0.2" height="15.0" fill="rgb(230,44,46)" rx="2" ry="2" />
<text x="1013.42" y="1055.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (191,919,190 samples, 0.34%)</title><rect x="838.8" y="837" width="3.9" height="15.0" fill="rgb(206,96,44)" rx="2" ry="2" />
<text x="841.75" y="847.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="645.8" y="1109" width="0.2" height="15.0" fill="rgb(244,11,46)" rx="2" ry="2" />
<text x="648.83" y="1119.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (40,404,040 samples, 0.07%)</title><rect x="946.9" y="981" width="0.8" height="15.0" fill="rgb(242,222,17)" rx="2" ry="2" />
<text x="949.88" y="991.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="378.5" y="597" width="0.3" height="15.0" fill="rgb(251,203,17)" rx="2" ry="2" />
<text x="381.54" y="607.5" ></text>
</g>
<g >
<title>php_rshutdown_session_globals (10,101,010 samples, 0.02%)</title><rect x="1100.6" y="1141" width="0.2" height="15.0" fill="rgb(226,179,12)" rx="2" ry="2" />
<text x="1103.62" y="1151.5" ></text>
</g>
<g >
<title>compile_filename (454,545,450 samples, 0.79%)</title><rect x="780.8" y="997" width="9.4" height="15.0" fill="rgb(214,62,27)" rx="2" ry="2" />
<text x="783.83" y="1007.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="204.2" y="997" width="0.2" height="15.0" fill="rgb(245,44,10)" rx="2" ry="2" />
<text x="207.17" y="1007.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="693" width="0.3" height="15.0" fill="rgb(230,107,45)" rx="2" ry="2" />
<text x="1134.25" y="703.5" ></text>
</g>
<g >
<title>php_output_handler_op (202,020,200 samples, 0.35%)</title><rect x="1026.7" y="1077" width="4.1" height="15.0" fill="rgb(234,33,31)" rx="2" ry="2" />
<text x="1029.67" y="1087.5" ></text>
</g>
<g >
<title>TRACE-431$ExtensionRegistry::exportExtractedData$488 (10,101,010 samples, 0.02%)</title><rect x="519.8" y="1141" width="0.2" height="15.0" fill="rgb(247,104,38)" rx="2" ry="2" />
<text x="522.79" y="1151.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="718.3" y="885" width="0.2" height="15.0" fill="rgb(226,99,26)" rx="2" ry="2" />
<text x="721.33" y="895.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="925.4" y="597" width="0.2" height="15.0" fill="rgb(220,133,8)" rx="2" ry="2" />
<text x="928.42" y="607.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="672.5" y="981" width="0.2" height="15.0" fill="rgb(207,141,27)" rx="2" ry="2" />
<text x="675.50" y="991.5" ></text>
</g>
<g >
<title>TRACE-2$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="722.7" y="1045" width="0.2" height="15.0" fill="rgb(211,202,44)" rx="2" ry="2" />
<text x="725.71" y="1055.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="390.2" y="725" width="0.2" height="15.0" fill="rgb(239,188,54)" rx="2" ry="2" />
<text x="393.21" y="735.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (70,707,070 samples, 0.12%)</title><rect x="1169.4" y="1173" width="1.4" height="15.0" fill="rgb(242,200,54)" rx="2" ry="2" />
<text x="1172.38" y="1183.5" ></text>
</g>
<g >
<title>skb_clone (10,101,010 samples, 0.02%)</title><rect x="1166.5" y="1029" width="0.2" height="15.0" fill="rgb(252,61,7)" rx="2" ry="2" />
<text x="1169.46" y="1039.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="822.7" y="837" width="0.2" height="15.0" fill="rgb(228,55,47)" rx="2" ry="2" />
<text x="825.71" y="847.5" ></text>
</g>
<g >
<title>ZEND_JMPNZ_EX_SPEC_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="554.4" y="1141" width="0.2" height="15.0" fill="rgb(224,151,46)" rx="2" ry="2" />
<text x="557.38" y="1151.5" ></text>
</g>
<g >
<title>TRACE-153$Wikimedia\Services\ServiceContainer::applyWiring$145 (10,101,010 samples, 0.02%)</title><rect x="282.5" y="1141" width="0.2" height="15.0" fill="rgb(212,42,0)" rx="2" ry="2" />
<text x="285.50" y="1151.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1186.7" y="533" width="0.2" height="15.0" fill="rgb(242,171,30)" rx="2" ry="2" />
<text x="1189.67" y="543.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="914.6" y="757" width="0.2" height="15.0" fill="rgb(235,133,0)" rx="2" ry="2" />
<text x="917.58" y="767.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (111,111,110 samples, 0.19%)</title><rect x="1088.5" y="917" width="2.3" height="15.0" fill="rgb(239,105,51)" rx="2" ry="2" />
<text x="1091.54" y="927.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (50,505,050 samples, 0.09%)</title><rect x="303.8" y="725" width="1.0" height="15.0" fill="rgb(205,221,48)" rx="2" ry="2" />
<text x="306.75" y="735.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (40,404,040 samples, 0.07%)</title><rect x="740.2" y="917" width="0.8" height="15.0" fill="rgb(214,30,39)" rx="2" ry="2" />
<text x="743.21" y="927.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="731.2" y="789" width="0.3" height="15.0" fill="rgb(210,74,54)" rx="2" ry="2" />
<text x="734.25" y="799.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1188.8" y="1173" width="0.2" height="15.0" fill="rgb(229,217,37)" rx="2" ry="2" />
<text x="1191.75" y="1183.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,101,010 samples, 0.02%)</title><rect x="539.4" y="629" width="0.2" height="15.0" fill="rgb(254,125,26)" rx="2" ry="2" />
<text x="542.38" y="639.5" ></text>
</g>
<g >
<title>masquerade_tg (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="421" width="0.4" height="15.0" fill="rgb(206,2,44)" rx="2" ry="2" />
<text x="1132.58" y="431.5" ></text>
</g>
<g >
<title>zend_call_destructors (10,101,010 samples, 0.02%)</title><rect x="1109.2" y="1173" width="0.2" height="15.0" fill="rgb(238,194,6)" rx="2" ry="2" />
<text x="1112.17" y="1183.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (70,707,070 samples, 0.12%)</title><rect x="902.5" y="1077" width="1.5" height="15.0" fill="rgb(206,220,45)" rx="2" ry="2" />
<text x="905.50" y="1087.5" ></text>
</g>
<g >
<title>strtoull (10,101,010 samples, 0.02%)</title><rect x="1142.3" y="1205" width="0.2" height="15.0" fill="rgb(249,164,42)" rx="2" ry="2" />
<text x="1145.29" y="1215.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (30,303,030 samples, 0.05%)</title><rect x="174.8" y="1061" width="0.6" height="15.0" fill="rgb(217,1,39)" rx="2" ry="2" />
<text x="177.79" y="1071.5" ></text>
</g>
<g >
<title>follow_managed (171,717,170 samples, 0.30%)</title><rect x="407.1" y="917" width="3.5" height="15.0" fill="rgb(221,206,24)" rx="2" ry="2" />
<text x="410.08" y="927.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="672.5" y="1077" width="0.2" height="15.0" fill="rgb(234,48,18)" rx="2" ry="2" />
<text x="675.50" y="1087.5" ></text>
</g>
<g >
<title>nf_conntrack_in (50,505,050 samples, 0.09%)</title><rect x="1149.8" y="917" width="1.0" height="15.0" fill="rgb(240,156,22)" rx="2" ry="2" />
<text x="1152.79" y="927.5" ></text>
</g>
<g >
<title>zend_create_closure (20,202,020 samples, 0.04%)</title><rect x="477.9" y="1109" width="0.4" height="15.0" fill="rgb(230,137,42)" rx="2" ry="2" />
<text x="480.92" y="1119.5" ></text>
</g>
<g >
<title>rcu_segcblist_ready_cbs (10,101,010 samples, 0.02%)</title><rect x="872.7" y="853" width="0.2" height="15.0" fill="rgb(233,141,47)" rx="2" ry="2" />
<text x="875.71" y="863.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="1130.4" y="757" width="0.4" height="15.0" fill="rgb(214,176,18)" rx="2" ry="2" />
<text x="1133.42" y="767.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1061" width="0.2" height="15.0" fill="rgb(248,187,9)" rx="2" ry="2" />
<text x="1118.42" y="1071.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="791.5" y="1013" width="0.2" height="15.0" fill="rgb(241,30,23)" rx="2" ry="2" />
<text x="794.46" y="1023.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (30,303,030 samples, 0.05%)</title><rect x="700.2" y="965" width="0.6" height="15.0" fill="rgb(251,156,17)" rx="2" ry="2" />
<text x="703.21" y="975.5" ></text>
</g>
<g >
<title>zend_hash_rehash (30,303,030 samples, 0.05%)</title><rect x="707.5" y="1077" width="0.6" height="15.0" fill="rgb(215,155,38)" rx="2" ry="2" />
<text x="710.50" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_add_new (20,202,020 samples, 0.04%)</title><rect x="742.1" y="837" width="0.4" height="15.0" fill="rgb(243,97,25)" rx="2" ry="2" />
<text x="745.08" y="847.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="967.1" y="837" width="0.2" height="15.0" fill="rgb(243,226,49)" rx="2" ry="2" />
<text x="970.08" y="847.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (20,202,020 samples, 0.04%)</title><rect x="283.8" y="917" width="0.4" height="15.0" fill="rgb(248,78,29)" rx="2" ry="2" />
<text x="286.75" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (151,515,150 samples, 0.26%)</title><rect x="1118.5" y="1173" width="3.2" height="15.0" fill="rgb(224,83,33)" rx="2" ry="2" />
<text x="1121.54" y="1183.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (20,202,020 samples, 0.04%)</title><rect x="266.9" y="1093" width="0.4" height="15.0" fill="rgb(219,120,0)" rx="2" ry="2" />
<text x="269.88" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="1093" width="0.3" height="15.0" fill="rgb(250,198,50)" rx="2" ry="2" />
<text x="1044.25" y="1103.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="395.4" y="709" width="0.2" height="15.0" fill="rgb(252,76,15)" rx="2" ry="2" />
<text x="398.42" y="719.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (30,303,030 samples, 0.05%)</title><rect x="301.0" y="997" width="0.7" height="15.0" fill="rgb(251,186,7)" rx="2" ry="2" />
<text x="304.04" y="1007.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="522.7" y="1093" width="0.2" height="15.0" fill="rgb(221,112,13)" rx="2" ry="2" />
<text x="525.71" y="1103.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (10,101,010 samples, 0.02%)</title><rect x="887.5" y="1077" width="0.2" height="15.0" fill="rgb(208,191,40)" rx="2" ry="2" />
<text x="890.50" y="1087.5" ></text>
</g>
<g >
<title>php_mysqlnd_cached_sha2_result_read (60,606,060 samples, 0.11%)</title><rect x="924.8" y="965" width="1.2" height="15.0" fill="rgb(234,65,35)" rx="2" ry="2" />
<text x="927.79" y="975.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (60,606,060 samples, 0.11%)</title><rect x="300.4" y="1045" width="1.3" height="15.0" fill="rgb(206,125,22)" rx="2" ry="2" />
<text x="303.42" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1031.0" y="997" width="0.2" height="15.0" fill="rgb(236,124,34)" rx="2" ry="2" />
<text x="1034.04" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_add_new (20,202,020 samples, 0.04%)</title><rect x="621.9" y="1109" width="0.4" height="15.0" fill="rgb(231,11,4)" rx="2" ry="2" />
<text x="624.88" y="1119.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="925.4" y="501" width="0.2" height="15.0" fill="rgb(237,16,23)" rx="2" ry="2" />
<text x="928.42" y="511.5" ></text>
</g>
<g >
<title>pcre_get_compiled_regex_cache_ex (10,101,010 samples, 0.02%)</title><rect x="305.0" y="1125" width="0.2" height="15.0" fill="rgb(243,197,2)" rx="2" ry="2" />
<text x="308.00" y="1135.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (10,101,010 samples, 0.02%)</title><rect x="481.5" y="1125" width="0.2" height="15.0" fill="rgb(241,158,38)" rx="2" ry="2" />
<text x="484.46" y="1135.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1063.3" y="1077" width="0.2" height="15.0" fill="rgb(219,156,26)" rx="2" ry="2" />
<text x="1066.33" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="913.1" y="885" width="0.2" height="15.0" fill="rgb(250,79,7)" rx="2" ry="2" />
<text x="916.12" y="895.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="949" width="0.2" height="15.0" fill="rgb(233,48,21)" rx="2" ry="2" />
<text x="1127.17" y="959.5" ></text>
</g>
<g >
<title>tcp_send_fin (60,606,060 samples, 0.11%)</title><rect x="1089.2" y="789" width="1.2" height="15.0" fill="rgb(241,207,41)" rx="2" ry="2" />
<text x="1092.17" y="799.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1029" width="0.2" height="15.0" fill="rgb(230,53,44)" rx="2" ry="2" />
<text x="693.00" y="1039.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="619.0" y="1029" width="0.2" height="15.0" fill="rgb(220,196,22)" rx="2" ry="2" />
<text x="621.96" y="1039.5" ></text>
</g>
<g >
<title>zend_jit_vm_stack_free_args_helper (10,101,010 samples, 0.02%)</title><rect x="1069.6" y="1141" width="0.2" height="15.0" fill="rgb(237,79,36)" rx="2" ry="2" />
<text x="1072.58" y="1151.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="629" width="0.4" height="15.0" fill="rgb(235,58,48)" rx="2" ry="2" />
<text x="1035.92" y="639.5" ></text>
</g>
<g >
<title>__seccomp_filter (30,303,030 samples, 0.05%)</title><rect x="1181.9" y="1141" width="0.6" height="15.0" fill="rgb(227,144,36)" rx="2" ry="2" />
<text x="1184.88" y="1151.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="822.7" y="805" width="0.2" height="15.0" fill="rgb(240,114,5)" rx="2" ry="2" />
<text x="825.71" y="815.5" ></text>
</g>
<g >
<title>php_mysqli_init (20,202,020 samples, 0.04%)</title><rect x="955.2" y="1125" width="0.4" height="15.0" fill="rgb(237,77,1)" rx="2" ry="2" />
<text x="958.21" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (30,303,030 samples, 0.05%)</title><rect x="767.3" y="965" width="0.6" height="15.0" fill="rgb(213,179,42)" rx="2" ry="2" />
<text x="770.29" y="975.5" ></text>
</g>
<g >
<title>ZEND_INIT_DYNAMIC_CALL_SPEC_CV_HANDLER (151,515,150 samples, 0.26%)</title><rect x="711.9" y="1125" width="3.1" height="15.0" fill="rgb(207,153,27)" rx="2" ry="2" />
<text x="714.88" y="1135.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="416.9" y="917" width="0.2" height="15.0" fill="rgb(207,43,26)" rx="2" ry="2" />
<text x="419.88" y="927.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1045" width="0.2" height="15.0" fill="rgb(221,199,6)" rx="2" ry="2" />
<text x="474.67" y="1055.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1109" width="0.2" height="15.0" fill="rgb(214,124,42)" rx="2" ry="2" />
<text x="521.96" y="1119.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="890.0" y="997" width="0.2" height="15.0" fill="rgb(217,84,2)" rx="2" ry="2" />
<text x="893.00" y="1007.5" ></text>
</g>
<g >
<title>is_smaller_function (10,101,010 samples, 0.02%)</title><rect x="1050.8" y="1109" width="0.2" height="15.0" fill="rgb(227,136,53)" rx="2" ry="2" />
<text x="1053.83" y="1119.5" ></text>
</g>
<g >
<title>ip_output (717,171,710 samples, 1.25%)</title><rect x="1151.0" y="965" width="14.8" height="15.0" fill="rgb(229,162,18)" rx="2" ry="2" />
<text x="1154.04" y="975.5" ></text>
</g>
<g >
<title>__xstat64 (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1205" width="0.8" height="15.0" fill="rgb(205,94,19)" rx="2" ry="2" />
<text x="1124.67" y="1215.5" ></text>
</g>
<g >
<title>php_mysqlnd_scramble_sha2 (20,202,020 samples, 0.04%)</title><rect x="928.8" y="981" width="0.4" height="15.0" fill="rgb(226,65,13)" rx="2" ry="2" />
<text x="931.75" y="991.5" ></text>
</g>
<g >
<title>TRACE-274$Wikimedia\Rdbms\LoadBalancer::finalizePrimaryChanges$1709 (10,101,010 samples, 0.02%)</title><rect x="472.1" y="1141" width="0.2" height="15.0" fill="rgb(235,115,40)" rx="2" ry="2" />
<text x="475.08" y="1151.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="914.6" y="773" width="0.2" height="15.0" fill="rgb(252,215,7)" rx="2" ry="2" />
<text x="917.58" y="783.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="997" width="0.2" height="15.0" fill="rgb(206,109,41)" rx="2" ry="2" />
<text x="1090.50" y="1007.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1045" width="0.3" height="15.0" fill="rgb(224,194,46)" rx="2" ry="2" />
<text x="526.54" y="1055.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="753.8" y="901" width="0.2" height="15.0" fill="rgb(250,165,26)" rx="2" ry="2" />
<text x="756.75" y="911.5" ></text>
</g>
<g >
<title>ZEND_INSTANCEOF_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="295.0" y="1125" width="0.2" height="15.0" fill="rgb(212,42,25)" rx="2" ry="2" />
<text x="298.00" y="1135.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (10,101,010 samples, 0.02%)</title><rect x="179.0" y="1045" width="0.2" height="15.0" fill="rgb(240,8,34)" rx="2" ry="2" />
<text x="181.96" y="1055.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="205.6" y="997" width="0.2" height="15.0" fill="rgb(245,188,41)" rx="2" ry="2" />
<text x="208.62" y="1007.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1187.9" y="981" width="0.2" height="15.0" fill="rgb(207,5,16)" rx="2" ry="2" />
<text x="1190.92" y="991.5" ></text>
</g>
<g >
<title>ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="470.4" y="1125" width="0.2" height="15.0" fill="rgb(242,136,11)" rx="2" ry="2" />
<text x="473.42" y="1135.5" ></text>
</g>
<g >
<title>tcp_data_queue (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="757" width="0.2" height="15.0" fill="rgb(246,93,15)" rx="2" ry="2" />
<text x="1086.33" y="767.5" ></text>
</g>
<g >
<title>__tcp_ack_snd_check (10,101,010 samples, 0.02%)</title><rect x="244.0" y="869" width="0.2" height="15.0" fill="rgb(238,163,2)" rx="2" ry="2" />
<text x="246.96" y="879.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="772.9" y="1029" width="0.2" height="15.0" fill="rgb(228,50,52)" rx="2" ry="2" />
<text x="775.92" y="1039.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (10,101,010 samples, 0.02%)</title><rect x="341.2" y="1109" width="0.3" height="15.0" fill="rgb(228,93,39)" rx="2" ry="2" />
<text x="344.25" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1064.4" y="1141" width="0.2" height="15.0" fill="rgb(237,82,4)" rx="2" ry="2" />
<text x="1067.38" y="1151.5" ></text>
</g>
<g >
<title>irq_exit (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1013" width="0.4" height="15.0" fill="rgb(244,25,23)" rx="2" ry="2" />
<text x="1001.75" y="1023.5" ></text>
</g>
<g >
<title>zif_array_diff (10,101,010 samples, 0.02%)</title><rect x="997.3" y="1125" width="0.2" height="15.0" fill="rgb(237,121,32)" rx="2" ry="2" />
<text x="1000.29" y="1135.5" ></text>
</g>
<g >
<title>__destroy_inode (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="757" width="0.3" height="15.0" fill="rgb(215,43,54)" rx="2" ry="2" />
<text x="1091.54" y="767.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="853" width="0.2" height="15.0" fill="rgb(240,1,27)" rx="2" ry="2" />
<text x="1022.79" y="863.5" ></text>
</g>
<g >
<title>follow_managed (10,101,010 samples, 0.02%)</title><rect x="776.2" y="853" width="0.3" height="15.0" fill="rgb(212,87,24)" rx="2" ry="2" />
<text x="779.25" y="863.5" ></text>
</g>
<g >
<title>__fget_light (10,101,010 samples, 0.02%)</title><rect x="935.2" y="821" width="0.2" height="15.0" fill="rgb(246,83,8)" rx="2" ry="2" />
<text x="938.21" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="207.9" y="1141" width="0.2" height="15.0" fill="rgb(249,35,35)" rx="2" ry="2" />
<text x="210.92" y="1151.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="183.8" y="805" width="0.2" height="15.0" fill="rgb(251,71,23)" rx="2" ry="2" />
<text x="186.75" y="815.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="806.0" y="677" width="0.2" height="15.0" fill="rgb(249,104,19)" rx="2" ry="2" />
<text x="809.04" y="687.5" ></text>
</g>
<g >
<title>getname_flags (10,101,010 samples, 0.02%)</title><rect x="740.0" y="805" width="0.2" height="15.0" fill="rgb(215,159,0)" rx="2" ry="2" />
<text x="743.00" y="815.5" ></text>
</g>
<g >
<title>napi_consume_skb (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="709" width="0.2" height="15.0" fill="rgb(225,208,23)" rx="2" ry="2" />
<text x="1056.12" y="719.5" ></text>
</g>
<g >
<title>TRACE-321$MediaWiki\Config\ServiceOptions::__construct$46 (40,404,040 samples, 0.07%)</title><rect x="487.9" y="1141" width="0.9" height="15.0" fill="rgb(205,27,42)" rx="2" ry="2" />
<text x="490.92" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1093" width="0.2" height="15.0" fill="rgb(218,8,12)" rx="2" ry="2" />
<text x="35.29" y="1103.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="303.3" y="805" width="0.2" height="15.0" fill="rgb(223,39,48)" rx="2" ry="2" />
<text x="306.33" y="815.5" ></text>
</g>
<g >
<title>php_mysqlnd_rset_header_read (101,010,100 samples, 0.18%)</title><rect x="1052.5" y="1077" width="2.1" height="15.0" fill="rgb(243,224,51)" rx="2" ry="2" />
<text x="1055.50" y="1087.5" ></text>
</g>
<g >
<title>sock_def_readable (10,101,010 samples, 0.02%)</title><rect x="378.5" y="645" width="0.3" height="15.0" fill="rgb(245,137,26)" rx="2" ry="2" />
<text x="381.54" y="655.5" ></text>
</g>
<g >
<title>__x64_sys_getsockopt (20,202,020 samples, 0.04%)</title><rect x="942.7" y="869" width="0.4" height="15.0" fill="rgb(208,50,1)" rx="2" ry="2" />
<text x="945.71" y="879.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="1063.8" y="1061" width="0.2" height="15.0" fill="rgb(222,166,43)" rx="2" ry="2" />
<text x="1066.75" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="868.5" y="933" width="0.3" height="15.0" fill="rgb(243,98,4)" rx="2" ry="2" />
<text x="871.54" y="943.5" ></text>
</g>
<g >
<title>zm_activate_mbstring (10,101,010 samples, 0.02%)</title><rect x="1105.4" y="1141" width="0.2" height="15.0" fill="rgb(218,104,54)" rx="2" ry="2" />
<text x="1108.42" y="1151.5" ></text>
</g>
<g >
<title>accel_make_persistent_key (10,101,010 samples, 0.02%)</title><rect x="838.5" y="837" width="0.3" height="15.0" fill="rgb(240,57,40)" rx="2" ry="2" />
<text x="841.54" y="847.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (131,313,130 samples, 0.23%)</title><rect x="540.4" y="1125" width="2.7" height="15.0" fill="rgb(247,15,5)" rx="2" ry="2" />
<text x="543.42" y="1135.5" ></text>
</g>
<g >
<title>accel_new_interned_string_for_php (10,101,010 samples, 0.02%)</title><rect x="882.3" y="1013" width="0.2" height="15.0" fill="rgb(212,43,10)" rx="2" ry="2" />
<text x="885.29" y="1023.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="885" width="3.3" height="15.0" fill="rgb(253,174,20)" rx="2" ry="2" />
<text x="1130.50" y="895.5" ></text>
</g>
<g >
<title>php_var_unserialize (8,050,504,970 samples, 14.07%)</title><rect x="36.2" y="1173" width="166.1" height="15.0" fill="rgb(229,143,44)" rx="2" ry="2" />
<text x="39.25" y="1183.5" >php_var_unserialize</text>
</g>
<g >
<title>TRACE-211$Wikimedia\Rdbms\DatabaseDomain::decode$250 (10,101,010 samples, 0.02%)</title><rect x="523.3" y="1077" width="0.2" height="15.0" fill="rgb(220,152,51)" rx="2" ry="2" />
<text x="526.33" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1007.1" y="869" width="0.2" height="15.0" fill="rgb(230,122,13)" rx="2" ry="2" />
<text x="1010.08" y="879.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="949" width="0.9" height="15.0" fill="rgb(207,7,31)" rx="2" ry="2" />
<text x="1035.92" y="959.5" ></text>
</g>
<g >
<title>do_sys_open (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1141" width="0.8" height="15.0" fill="rgb(234,34,16)" rx="2" ry="2" />
<text x="1138.42" y="1151.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="300.4" y="885" width="0.2" height="15.0" fill="rgb(236,219,52)" rx="2" ry="2" />
<text x="303.42" y="895.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="32.3" y="661" width="0.2" height="15.0" fill="rgb(223,190,31)" rx="2" ry="2" />
<text x="35.29" y="671.5" ></text>
</g>
<g >
<title>zend_jit_add_arrays_helper (20,202,020 samples, 0.04%)</title><rect x="348.8" y="1125" width="0.4" height="15.0" fill="rgb(209,4,29)" rx="2" ry="2" />
<text x="351.75" y="1135.5" ></text>
</g>
<g >
<title>TRACE-382$MediumSpecificBagOStuff::getMulti$633 (10,101,010 samples, 0.02%)</title><rect x="499.8" y="1141" width="0.2" height="15.0" fill="rgb(248,123,49)" rx="2" ry="2" />
<text x="502.79" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="451.9" y="1093" width="0.2" height="15.0" fill="rgb(247,28,3)" rx="2" ry="2" />
<text x="454.88" y="1103.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="685.6" y="997" width="0.4" height="15.0" fill="rgb(216,93,42)" rx="2" ry="2" />
<text x="688.62" y="1007.5" ></text>
</g>
<g >
<title>__ip_local_out (40,404,040 samples, 0.07%)</title><rect x="938.5" y="709" width="0.9" height="15.0" fill="rgb(246,99,52)" rx="2" ry="2" />
<text x="941.54" y="719.5" ></text>
</g>
<g >
<title>zend_deactivate_modules (70,707,070 samples, 0.12%)</title><rect x="1100.4" y="1157" width="1.5" height="15.0" fill="rgb(225,13,53)" rx="2" ry="2" />
<text x="1103.42" y="1167.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="484.6" y="1109" width="0.2" height="15.0" fill="rgb(243,29,51)" rx="2" ry="2" />
<text x="487.58" y="1119.5" ></text>
</g>
<g >
<title>TRACE-436$Wikimedia\Services\ServiceContainer::createService$451 (131,313,130 samples, 0.23%)</title><rect x="520.8" y="1141" width="2.7" height="15.0" fill="rgb(228,219,29)" rx="2" ry="2" />
<text x="523.83" y="1151.5" ></text>
</g>
<g >
<title>__sk_destruct (10,101,010 samples, 0.02%)</title><rect x="30.4" y="901" width="0.2" height="15.0" fill="rgb(221,115,20)" rx="2" ry="2" />
<text x="33.42" y="911.5" ></text>
</g>
<g >
<title>zend_hash_packed_grow (10,101,010 samples, 0.02%)</title><rect x="765.8" y="1061" width="0.2" height="15.0" fill="rgb(239,124,39)" rx="2" ry="2" />
<text x="768.83" y="1071.5" ></text>
</g>
<g >
<title>__alloc_skb (40,404,040 samples, 0.07%)</title><rect x="1146.9" y="1061" width="0.8" height="15.0" fill="rgb(249,125,13)" rx="2" ry="2" />
<text x="1149.88" y="1071.5" ></text>
</g>
<g >
<title>zend_declare_typed_property (10,101,010 samples, 0.02%)</title><rect x="676.7" y="981" width="0.2" height="15.0" fill="rgb(233,5,52)" rx="2" ry="2" />
<text x="679.67" y="991.5" ></text>
</g>
<g >
<title>ZEND_FAST_CONCAT_SPEC_CONST_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1093" width="0.4" height="15.0" fill="rgb(224,161,4)" rx="2" ry="2" />
<text x="1001.75" y="1103.5" ></text>
</g>
<g >
<title>__x64_sys_connect (252,525,250 samples, 0.44%)</title><rect x="937.5" y="869" width="5.2" height="15.0" fill="rgb(221,103,27)" rx="2" ry="2" />
<text x="940.50" y="879.5" ></text>
</g>
<g >
<title>ret_from_intr (20,202,020 samples, 0.04%)</title><rect x="193.5" y="1093" width="0.5" height="15.0" fill="rgb(234,132,12)" rx="2" ry="2" />
<text x="196.54" y="1103.5" ></text>
</g>
<g >
<title>__ip_finish_output (111,111,110 samples, 0.19%)</title><rect x="939.4" y="677" width="2.3" height="15.0" fill="rgb(215,74,25)" rx="2" ry="2" />
<text x="942.38" y="687.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="1127.1" y="949" width="0.2" height="15.0" fill="rgb(246,150,37)" rx="2" ry="2" />
<text x="1130.08" y="959.5" ></text>
</g>
<g >
<title>fcgi_loadenv (70,707,070 samples, 0.12%)</title><rect x="700.8" y="997" width="1.5" height="15.0" fill="rgb(225,35,36)" rx="2" ry="2" />
<text x="703.83" y="1007.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="684.6" y="917" width="0.4" height="15.0" fill="rgb(242,150,35)" rx="2" ry="2" />
<text x="687.58" y="927.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (131,313,130 samples, 0.23%)</title><rect x="676.9" y="981" width="2.7" height="15.0" fill="rgb(226,47,43)" rx="2" ry="2" />
<text x="679.88" y="991.5" ></text>
</g>
<g >
<title>zend_create_closure (40,404,040 samples, 0.07%)</title><rect x="337.3" y="1109" width="0.8" height="15.0" fill="rgb(239,203,6)" rx="2" ry="2" />
<text x="340.29" y="1119.5" ></text>
</g>
<g >
<title>ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="336.5" y="1125" width="0.2" height="15.0" fill="rgb(235,177,40)" rx="2" ry="2" />
<text x="339.46" y="1135.5" ></text>
</g>
<g >
<title>zif_strtoupper (10,101,010 samples, 0.02%)</title><rect x="1059.4" y="1125" width="0.2" height="15.0" fill="rgb(252,122,41)" rx="2" ry="2" />
<text x="1062.38" y="1135.5" ></text>
</g>
<g >
<title>_efree_56 (10,101,010 samples, 0.02%)</title><rect x="647.5" y="1061" width="0.2" height="15.0" fill="rgb(253,88,16)" rx="2" ry="2" />
<text x="650.50" y="1071.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="1083.1" y="1061" width="0.2" height="15.0" fill="rgb(223,62,27)" rx="2" ry="2" />
<text x="1086.12" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="1029" width="0.2" height="15.0" fill="rgb(221,37,5)" rx="2" ry="2" />
<text x="1099.04" y="1039.5" ></text>
</g>
<g >
<title>unlazy_walk (20,202,020 samples, 0.04%)</title><rect x="775.4" y="885" width="0.4" height="15.0" fill="rgb(213,151,5)" rx="2" ry="2" />
<text x="778.42" y="895.5" ></text>
</g>
<g >
<title>nf_hook_slow (60,606,060 samples, 0.11%)</title><rect x="1159.2" y="517" width="1.2" height="15.0" fill="rgb(238,135,52)" rx="2" ry="2" />
<text x="1162.17" y="527.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="687.7" y="869" width="0.2" height="15.0" fill="rgb(238,222,41)" rx="2" ry="2" />
<text x="690.71" y="879.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="344.6" y="1109" width="0.2" height="15.0" fill="rgb(249,81,48)" rx="2" ry="2" />
<text x="347.58" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="354.8" y="1125" width="0.2" height="15.0" fill="rgb(215,197,34)" rx="2" ry="2" />
<text x="357.79" y="1135.5" ></text>
</g>
<g >
<title>zend_do_link_class (10,101,010 samples, 0.02%)</title><rect x="523.8" y="1013" width="0.2" height="15.0" fill="rgb(210,103,50)" rx="2" ry="2" />
<text x="526.75" y="1023.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="518.5" y="1125" width="0.7" height="15.0" fill="rgb(251,108,41)" rx="2" ry="2" />
<text x="521.54" y="1135.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (10,101,010 samples, 0.02%)</title><rect x="1166.9" y="1029" width="0.2" height="15.0" fill="rgb(215,92,44)" rx="2" ry="2" />
<text x="1169.88" y="1039.5" ></text>
</g>
<g >
<title>zend_symtable_clean (10,101,010 samples, 0.02%)</title><rect x="833.3" y="869" width="0.2" height="15.0" fill="rgb(207,180,33)" rx="2" ry="2" />
<text x="836.33" y="879.5" ></text>
</g>
<g >
<title>diff (10,101,010 samples, 0.02%)</title><rect x="193.3" y="1061" width="0.2" height="15.0" fill="rgb(241,68,34)" rx="2" ry="2" />
<text x="196.33" y="1071.5" ></text>
</g>
<g >
<title>do_bind_class (50,505,050 samples, 0.09%)</title><rect x="686.9" y="1013" width="1.0" height="15.0" fill="rgb(250,214,4)" rx="2" ry="2" />
<text x="689.88" y="1023.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="806.0" y="693" width="0.2" height="15.0" fill="rgb(227,198,28)" rx="2" ry="2" />
<text x="809.04" y="703.5" ></text>
</g>
<g >
<title>ZEND_FAST_CONCAT_SPEC_TMPVAR_TMPVAR_HANDLER (20,202,020 samples, 0.04%)</title><rect x="673.3" y="1125" width="0.5" height="15.0" fill="rgb(222,83,53)" rx="2" ry="2" />
<text x="676.33" y="1135.5" ></text>
</g>
<g >
<title>zend_object_std_init (101,010,100 samples, 0.18%)</title><rect x="670.4" y="1077" width="2.1" height="15.0" fill="rgb(227,228,48)" rx="2" ry="2" />
<text x="673.42" y="1087.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="965" width="0.2" height="15.0" fill="rgb(232,120,34)" rx="2" ry="2" />
<text x="1015.92" y="975.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1029" width="0.2" height="15.0" fill="rgb(233,227,14)" rx="2" ry="2" />
<text x="445.29" y="1039.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="837" width="0.2" height="15.0" fill="rgb(213,229,2)" rx="2" ry="2" />
<text x="1085.08" y="847.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="900.0" y="1029" width="0.2" height="15.0" fill="rgb(247,214,22)" rx="2" ry="2" />
<text x="903.00" y="1039.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (80,808,080 samples, 0.14%)</title><rect x="939.4" y="405" width="1.6" height="15.0" fill="rgb(232,120,39)" rx="2" ry="2" />
<text x="942.38" y="415.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="284.4" y="1125" width="0.2" height="15.0" fill="rgb(236,64,18)" rx="2" ry="2" />
<text x="287.38" y="1135.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (10,101,010 samples, 0.02%)</title><rect x="1189.4" y="1093" width="0.2" height="15.0" fill="rgb(214,107,22)" rx="2" ry="2" />
<text x="1192.38" y="1103.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (40,404,040 samples, 0.07%)</title><rect x="1014.6" y="1061" width="0.8" height="15.0" fill="rgb(215,21,18)" rx="2" ry="2" />
<text x="1017.58" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="654.2" y="1061" width="0.2" height="15.0" fill="rgb(230,85,14)" rx="2" ry="2" />
<text x="657.17" y="1071.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="661" width="0.4" height="15.0" fill="rgb(231,33,12)" rx="2" ry="2" />
<text x="1035.92" y="671.5" ></text>
</g>
<g >
<title>php_sapi_filter (70,707,070 samples, 0.12%)</title><rect x="700.8" y="965" width="1.5" height="15.0" fill="rgb(221,60,2)" rx="2" ry="2" />
<text x="703.83" y="975.5" ></text>
</g>
<g >
<title>TRACE-296$Wikimedia\Rdbms\{closure}$389 (20,202,020 samples, 0.04%)</title><rect x="481.2" y="1141" width="0.5" height="15.0" fill="rgb(247,7,32)" rx="2" ry="2" />
<text x="484.25" y="1151.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (272,727,270 samples, 0.48%)</title><rect x="1152.7" y="421" width="5.6" height="15.0" fill="rgb(217,2,12)" rx="2" ry="2" />
<text x="1155.71" y="431.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="1055.6" y="1045" width="0.2" height="15.0" fill="rgb(241,56,46)" rx="2" ry="2" />
<text x="1058.62" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="454.8" y="1125" width="0.2" height="15.0" fill="rgb(205,134,40)" rx="2" ry="2" />
<text x="457.79" y="1135.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1141" width="0.2" height="15.0" fill="rgb(230,63,54)" rx="2" ry="2" />
<text x="205.50" y="1151.5" ></text>
</g>
<g >
<title>debug_backtrace_get_args (20,202,020 samples, 0.04%)</title><rect x="762.5" y="1061" width="0.4" height="15.0" fill="rgb(242,36,32)" rx="2" ry="2" />
<text x="765.50" y="1071.5" ></text>
</g>
<g >
<title>TRACE-409$MediaWiki\Languages\LanguageNameUtils::getLanguageNamesUncached$242 (222,222,220 samples, 0.39%)</title><rect x="511.0" y="1141" width="4.6" height="15.0" fill="rgb(251,21,33)" rx="2" ry="2" />
<text x="514.04" y="1151.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1061" width="0.2" height="15.0" fill="rgb(244,87,40)" rx="2" ry="2" />
<text x="26.96" y="1071.5" ></text>
</g>
<g >
<title>date_format (10,101,010 samples, 0.02%)</title><rect x="1021.5" y="1109" width="0.2" height="15.0" fill="rgb(240,116,17)" rx="2" ry="2" />
<text x="1024.46" y="1119.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="718.3" y="997" width="0.2" height="15.0" fill="rgb(221,71,8)" rx="2" ry="2" />
<text x="721.33" y="1007.5" ></text>
</g>
<g >
<title>strtoll (10,101,010 samples, 0.02%)</title><rect x="1040.2" y="1061" width="0.2" height="15.0" fill="rgb(239,167,22)" rx="2" ry="2" />
<text x="1043.21" y="1071.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="900.0" y="1013" width="0.2" height="15.0" fill="rgb(233,53,36)" rx="2" ry="2" />
<text x="903.00" y="1023.5" ></text>
</g>
<g >
<title>TRACE-381$MemcachedPeclBagOStuff::doGetMulti$346 (10,101,010 samples, 0.02%)</title><rect x="499.6" y="1141" width="0.2" height="15.0" fill="rgb(236,96,41)" rx="2" ry="2" />
<text x="502.58" y="1151.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="941.5" y="613" width="0.2" height="15.0" fill="rgb(242,213,30)" rx="2" ry="2" />
<text x="944.46" y="623.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="981" width="0.3" height="15.0" fill="rgb(217,70,3)" rx="2" ry="2" />
<text x="1134.25" y="991.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="352.3" y="1125" width="0.2" height="15.0" fill="rgb(226,96,19)" rx="2" ry="2" />
<text x="355.29" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_add_new (40,404,040 samples, 0.07%)</title><rect x="332.3" y="1109" width="0.8" height="15.0" fill="rgb(254,227,49)" rx="2" ry="2" />
<text x="335.29" y="1119.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_network_read_pub (80,808,080 samples, 0.14%)</title><rect x="926.2" y="933" width="1.7" height="15.0" fill="rgb(220,38,27)" rx="2" ry="2" />
<text x="929.25" y="943.5" ></text>
</g>
<g >
<title>[perf-25503.map] (10,101,010 samples, 0.02%)</title><rect x="530.2" y="1093" width="0.2" height="15.0" fill="rgb(250,160,3)" rx="2" ry="2" />
<text x="533.21" y="1103.5" ></text>
</g>
<g >
<title>zend_jit_zval_array_dup (10,101,010 samples, 0.02%)</title><rect x="349.4" y="1125" width="0.2" height="15.0" fill="rgb(249,93,48)" rx="2" ry="2" />
<text x="352.38" y="1135.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="718.3" y="773" width="0.2" height="15.0" fill="rgb(223,154,20)" rx="2" ry="2" />
<text x="721.33" y="783.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (10,101,010 samples, 0.02%)</title><rect x="446.9" y="1093" width="0.2" height="15.0" fill="rgb(232,14,40)" rx="2" ry="2" />
<text x="449.88" y="1103.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1109" width="0.3" height="15.0" fill="rgb(224,109,17)" rx="2" ry="2" />
<text x="489.25" y="1119.5" ></text>
</g>
<g >
<title>__ip_finish_output (40,404,040 samples, 0.07%)</title><rect x="1089.4" y="645" width="0.8" height="15.0" fill="rgb(251,190,34)" rx="2" ry="2" />
<text x="1092.38" y="655.5" ></text>
</g>
<g >
<title>do_syscall_64 (30,303,030 samples, 0.05%)</title><rect x="739.6" y="869" width="0.6" height="15.0" fill="rgb(248,154,33)" rx="2" ry="2" />
<text x="742.58" y="879.5" ></text>
</g>
<g >
<title>compile_filename (40,404,040 samples, 0.07%)</title><rect x="683.8" y="965" width="0.8" height="15.0" fill="rgb(208,76,26)" rx="2" ry="2" />
<text x="686.75" y="975.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="1000.4" y="1093" width="0.2" height="15.0" fill="rgb(212,42,54)" rx="2" ry="2" />
<text x="1003.42" y="1103.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="545.4" y="1093" width="0.2" height="15.0" fill="rgb(221,164,35)" rx="2" ry="2" />
<text x="548.42" y="1103.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="1077" width="0.2" height="15.0" fill="rgb(239,213,8)" rx="2" ry="2" />
<text x="1022.79" y="1087.5" ></text>
</g>
<g >
<title>JIT$$leave_function (20,202,020 samples, 0.04%)</title><rect x="246.0" y="1141" width="0.5" height="15.0" fill="rgb(251,199,39)" rx="2" ry="2" />
<text x="249.04" y="1151.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="866.5" y="901" width="0.2" height="15.0" fill="rgb(224,218,23)" rx="2" ry="2" />
<text x="869.46" y="911.5" ></text>
</g>
<g >
<title>zend_hash_next_index_insert_new (10,101,010 samples, 0.02%)</title><rect x="766.2" y="1077" width="0.3" height="15.0" fill="rgb(247,168,5)" rx="2" ry="2" />
<text x="769.25" y="1087.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (10,101,010 samples, 0.02%)</title><rect x="308.3" y="1125" width="0.2" height="15.0" fill="rgb(227,216,23)" rx="2" ry="2" />
<text x="311.33" y="1135.5" ></text>
</g>
<g >
<title>skb_clone (10,101,010 samples, 0.02%)</title><rect x="1090.2" y="725" width="0.2" height="15.0" fill="rgb(208,194,41)" rx="2" ry="2" />
<text x="1093.21" y="735.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="539.4" y="725" width="0.2" height="15.0" fill="rgb(238,118,43)" rx="2" ry="2" />
<text x="542.38" y="735.5" ></text>
</g>
<g >
<title>zend_include_or_eval (141,414,140 samples, 0.25%)</title><rect x="679.6" y="1013" width="2.9" height="15.0" fill="rgb(207,186,17)" rx="2" ry="2" />
<text x="682.58" y="1023.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="930.2" y="869" width="0.2" height="15.0" fill="rgb(252,226,15)" rx="2" ry="2" />
<text x="933.21" y="879.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="905.6" y="1045" width="0.2" height="15.0" fill="rgb(243,4,28)" rx="2" ry="2" />
<text x="908.62" y="1055.5" ></text>
</g>
<g >
<title>TRACE-317$LanguageCode::bcp47$182 (10,101,010 samples, 0.02%)</title><rect x="487.7" y="1141" width="0.2" height="15.0" fill="rgb(253,63,21)" rx="2" ry="2" />
<text x="490.71" y="1151.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="885" width="0.3" height="15.0" fill="rgb(223,118,54)" rx="2" ry="2" />
<text x="1134.25" y="895.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="732.9" y="917" width="0.2" height="15.0" fill="rgb(219,163,37)" rx="2" ry="2" />
<text x="735.92" y="927.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="309.8" y="1093" width="0.4" height="15.0" fill="rgb(237,165,6)" rx="2" ry="2" />
<text x="312.79" y="1103.5" ></text>
</g>
<g >
<title>lookup_mnt (10,101,010 samples, 0.02%)</title><rect x="901.9" y="949" width="0.2" height="15.0" fill="rgb(252,207,51)" rx="2" ry="2" />
<text x="904.88" y="959.5" ></text>
</g>
<g >
<title>__sock_create (20,202,020 samples, 0.04%)</title><rect x="931.0" y="853" width="0.5" height="15.0" fill="rgb(224,18,14)" rx="2" ry="2" />
<text x="934.04" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="949.8" y="1061" width="0.6" height="15.0" fill="rgb(242,43,32)" rx="2" ry="2" />
<text x="952.79" y="1071.5" ></text>
</g>
<g >
<title>__put_user_4 (10,101,010 samples, 0.02%)</title><rect x="942.7" y="837" width="0.2" height="15.0" fill="rgb(217,83,15)" rx="2" ry="2" />
<text x="945.71" y="847.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="899.4" y="965" width="0.2" height="15.0" fill="rgb(224,118,27)" rx="2" ry="2" />
<text x="902.38" y="975.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find_entry (10,101,010 samples, 0.02%)</title><rect x="703.8" y="1077" width="0.2" height="15.0" fill="rgb(215,120,13)" rx="2" ry="2" />
<text x="706.75" y="1087.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (10,101,010 samples, 0.02%)</title><rect x="929.8" y="805" width="0.2" height="15.0" fill="rgb(212,105,54)" rx="2" ry="2" />
<text x="932.79" y="815.5" ></text>
</g>
<g >
<title>irq_exit (20,202,020 samples, 0.04%)</title><rect x="244.0" y="1093" width="0.4" height="15.0" fill="rgb(247,117,8)" rx="2" ry="2" />
<text x="246.96" y="1103.5" ></text>
</g>
<g >
<title>JIT$$hybrid_ret_trace_counter (20,202,020 samples, 0.04%)</title><rect x="245.6" y="1141" width="0.4" height="15.0" fill="rgb(243,163,39)" rx="2" ry="2" />
<text x="248.62" y="1151.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (636,363,630 samples, 1.11%)</title><rect x="1151.5" y="901" width="13.1" height="15.0" fill="rgb(231,202,16)" rx="2" ry="2" />
<text x="1154.46" y="911.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="499.0" y="1125" width="0.2" height="15.0" fill="rgb(219,45,4)" rx="2" ry="2" />
<text x="501.96" y="1135.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (10,101,010 samples, 0.02%)</title><rect x="202.5" y="965" width="0.2" height="15.0" fill="rgb(211,178,51)" rx="2" ry="2" />
<text x="205.50" y="975.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="805.2" y="821" width="0.2" height="15.0" fill="rgb(215,116,52)" rx="2" ry="2" />
<text x="808.21" y="831.5" ></text>
</g>
<g >
<title>zend_objects_store_del (101,010,100 samples, 0.18%)</title><rect x="446.7" y="1125" width="2.1" height="15.0" fill="rgb(235,188,17)" rx="2" ry="2" />
<text x="449.67" y="1135.5" ></text>
</g>
<g >
<title>ZEND_FETCH_DIM_R_SPEC_CV_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="690.8" y="1125" width="0.9" height="15.0" fill="rgb(210,177,1)" rx="2" ry="2" />
<text x="693.83" y="1135.5" ></text>
</g>
<g >
<title>__x64_sys_socket (40,404,040 samples, 0.07%)</title><rect x="931.0" y="885" width="0.9" height="15.0" fill="rgb(241,36,31)" rx="2" ry="2" />
<text x="934.04" y="895.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="1064.0" y="1141" width="0.2" height="15.0" fill="rgb(253,180,15)" rx="2" ry="2" />
<text x="1066.96" y="1151.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="1054.6" y="1093" width="0.2" height="15.0" fill="rgb(239,153,15)" rx="2" ry="2" />
<text x="1057.58" y="1103.5" ></text>
</g>
<g >
<title>zend_register_class_alias_ex (10,101,010 samples, 0.02%)</title><rect x="749.4" y="1013" width="0.2" height="15.0" fill="rgb(239,78,27)" rx="2" ry="2" />
<text x="752.38" y="1023.5" ></text>
</g>
<g >
<title>zend_compare (10,101,010 samples, 0.02%)</title><rect x="1050.8" y="1093" width="0.2" height="15.0" fill="rgb(213,140,18)" rx="2" ry="2" />
<text x="1053.83" y="1103.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1093" width="0.2" height="15.0" fill="rgb(249,14,42)" rx="2" ry="2" />
<text x="479.88" y="1103.5" ></text>
</g>
<g >
<title>__libc_start_main (43,939,393,500 samples, 76.80%)</title><rect x="203.1" y="1205" width="906.3" height="15.0" fill="rgb(206,17,37)" rx="2" ry="2" />
<text x="206.12" y="1215.5" >__libc_start_main</text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="927.1" y="821" width="0.2" height="15.0" fill="rgb(250,64,19)" rx="2" ry="2" />
<text x="930.08" y="831.5" ></text>
</g>
<g >
<title>zend_std_get_property_ptr_ptr (10,101,010 samples, 0.02%)</title><rect x="1001.9" y="1077" width="0.2" height="15.0" fill="rgb(233,217,32)" rx="2" ry="2" />
<text x="1004.88" y="1087.5" ></text>
</g>
<g >
<title>__kmalloc (20,202,020 samples, 0.04%)</title><rect x="1153.1" y="325" width="0.4" height="15.0" fill="rgb(230,225,51)" rx="2" ry="2" />
<text x="1156.12" y="335.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="982.9" y="901" width="0.2" height="15.0" fill="rgb(240,0,3)" rx="2" ry="2" />
<text x="985.92" y="911.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1077" width="0.2" height="15.0" fill="rgb(243,9,17)" rx="2" ry="2" />
<text x="1171.12" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="822.7" y="949" width="0.2" height="15.0" fill="rgb(237,60,30)" rx="2" ry="2" />
<text x="825.71" y="959.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="193.5" y="1029" width="0.5" height="15.0" fill="rgb(209,62,29)" rx="2" ry="2" />
<text x="196.54" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (70,707,070 samples, 0.12%)</title><rect x="931.0" y="901" width="1.5" height="15.0" fill="rgb(207,67,10)" rx="2" ry="2" />
<text x="934.04" y="911.5" ></text>
</g>
<g >
<title>zif_pass (10,101,010 samples, 0.02%)</title><rect x="1074.4" y="1141" width="0.2" height="15.0" fill="rgb(251,22,18)" rx="2" ry="2" />
<text x="1077.38" y="1151.5" ></text>
</g>
<g >
<title>inet_sendmsg (10,101,010 samples, 0.02%)</title><rect x="1145.6" y="1141" width="0.2" height="15.0" fill="rgb(211,224,44)" rx="2" ry="2" />
<text x="1148.62" y="1151.5" ></text>
</g>
<g >
<title>sock_common_setsockopt (10,101,010 samples, 0.02%)</title><rect x="1141.5" y="1125" width="0.2" height="15.0" fill="rgb(252,205,43)" rx="2" ry="2" />
<text x="1144.46" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_del (10,101,010 samples, 0.02%)</title><rect x="973.8" y="1109" width="0.2" height="15.0" fill="rgb(235,204,38)" rx="2" ry="2" />
<text x="976.75" y="1119.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="948.5" y="981" width="0.3" height="15.0" fill="rgb(241,197,34)" rx="2" ry="2" />
<text x="951.54" y="991.5" ></text>
</g>
<g >
<title>zend_hash_next_index_insert (10,101,010 samples, 0.02%)</title><rect x="495.6" y="1125" width="0.2" height="15.0" fill="rgb(222,63,8)" rx="2" ry="2" />
<text x="498.62" y="1135.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="742.5" y="789" width="0.2" height="15.0" fill="rgb(229,114,31)" rx="2" ry="2" />
<text x="745.50" y="799.5" ></text>
</g>
<g >
<title>zend_hash_destroy (10,101,010 samples, 0.02%)</title><rect x="297.5" y="1109" width="0.2" height="15.0" fill="rgb(208,111,31)" rx="2" ry="2" />
<text x="300.50" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="791.5" y="965" width="0.2" height="15.0" fill="rgb(220,5,4)" rx="2" ry="2" />
<text x="794.46" y="975.5" ></text>
</g>
<g >
<title>____fput (111,111,110 samples, 0.19%)</title><rect x="1088.5" y="885" width="2.3" height="15.0" fill="rgb(247,16,20)" rx="2" ry="2" />
<text x="1091.54" y="895.5" ></text>
</g>
<g >
<title>zif_range (10,101,010 samples, 0.02%)</title><rect x="1075.0" y="1141" width="0.2" height="15.0" fill="rgb(251,41,13)" rx="2" ry="2" />
<text x="1078.00" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_merge (20,202,020 samples, 0.04%)</title><rect x="348.8" y="1109" width="0.4" height="15.0" fill="rgb(235,37,41)" rx="2" ry="2" />
<text x="351.75" y="1119.5" ></text>
</g>
<g >
<title>TRACE-25$wfLoadFandomExtension$12 (10,101,010 samples, 0.02%)</title><rect x="463.3" y="1141" width="0.2" height="15.0" fill="rgb(215,194,3)" rx="2" ry="2" />
<text x="466.33" y="1151.5" ></text>
</g>
<g >
<title>sock_recvmsg (20,202,020 samples, 0.04%)</title><rect x="207.3" y="1013" width="0.4" height="15.0" fill="rgb(213,62,38)" rx="2" ry="2" />
<text x="210.29" y="1023.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="881.2" y="677" width="0.3" height="15.0" fill="rgb(222,146,42)" rx="2" ry="2" />
<text x="884.25" y="687.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (20,202,020 samples, 0.04%)</title><rect x="1018.8" y="933" width="0.4" height="15.0" fill="rgb(217,142,1)" rx="2" ry="2" />
<text x="1021.75" y="943.5" ></text>
</g>
<g >
<title>zend_ini_get_value (10,101,010 samples, 0.02%)</title><rect x="1030.6" y="1013" width="0.2" height="15.0" fill="rgb(224,31,25)" rx="2" ry="2" />
<text x="1033.62" y="1023.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="451.9" y="1125" width="0.2" height="15.0" fill="rgb(221,123,10)" rx="2" ry="2" />
<text x="454.88" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="287.7" y="1077" width="0.2" height="15.0" fill="rgb(226,84,52)" rx="2" ry="2" />
<text x="290.71" y="1087.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="677.7" y="613" width="0.2" height="15.0" fill="rgb(209,68,19)" rx="2" ry="2" />
<text x="680.71" y="623.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="193.8" y="933" width="0.2" height="15.0" fill="rgb(235,43,27)" rx="2" ry="2" />
<text x="196.75" y="943.5" ></text>
</g>
<g >
<title>zif_header_register_callback (10,101,010 samples, 0.02%)</title><rect x="1039.8" y="1125" width="0.2" height="15.0" fill="rgb(211,184,49)" rx="2" ry="2" />
<text x="1042.79" y="1135.5" ></text>
</g>
<g >
<title>ExcimerTimer_free_object (10,101,010 samples, 0.02%)</title><rect x="623.8" y="1109" width="0.2" height="15.0" fill="rgb(254,49,22)" rx="2" ry="2" />
<text x="626.75" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="481.0" y="1109" width="0.2" height="15.0" fill="rgb(229,3,34)" rx="2" ry="2" />
<text x="484.04" y="1119.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="498.3" y="1109" width="0.2" height="15.0" fill="rgb(221,212,14)" rx="2" ry="2" />
<text x="501.33" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="901" width="0.2" height="15.0" fill="rgb(221,133,22)" rx="2" ry="2" />
<text x="1170.08" y="911.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="753.5" y="965" width="0.5" height="15.0" fill="rgb(234,44,3)" rx="2" ry="2" />
<text x="756.54" y="975.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="905.0" y="901" width="0.2" height="15.0" fill="rgb(237,196,33)" rx="2" ry="2" />
<text x="908.00" y="911.5" ></text>
</g>
<g >
<title>__ip_local_out (90,909,090 samples, 0.16%)</title><rect x="1149.2" y="965" width="1.8" height="15.0" fill="rgb(211,105,11)" rx="2" ry="2" />
<text x="1152.17" y="975.5" ></text>
</g>
<g >
<title>__inet_stream_connect (373,737,370 samples, 0.65%)</title><rect x="1124.0" y="1109" width="7.7" height="15.0" fill="rgb(212,30,47)" rx="2" ry="2" />
<text x="1126.96" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="339.6" y="1029" width="0.2" height="15.0" fill="rgb(227,150,43)" rx="2" ry="2" />
<text x="342.58" y="1039.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="528.1" y="1061" width="0.2" height="15.0" fill="rgb(249,194,10)" rx="2" ry="2" />
<text x="531.12" y="1071.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="796.5" y="933" width="0.2" height="15.0" fill="rgb(235,92,9)" rx="2" ry="2" />
<text x="799.46" y="943.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (333,333,330 samples, 0.58%)</title><rect x="738.1" y="965" width="6.9" height="15.0" fill="rgb(243,168,40)" rx="2" ry="2" />
<text x="741.12" y="975.5" ></text>
</g>
<g >
<title>fib_table_lookup (10,101,010 samples, 0.02%)</title><rect x="1125.0" y="1061" width="0.2" height="15.0" fill="rgb(234,165,31)" rx="2" ry="2" />
<text x="1128.00" y="1071.5" ></text>
</g>
<g >
<title>TRACE-151$Wikimedia\Services\ServiceContainer::loadWiringFiles$123 (343,434,340 samples, 0.60%)</title><rect x="273.3" y="1141" width="7.1" height="15.0" fill="rgb(229,222,5)" rx="2" ry="2" />
<text x="276.33" y="1151.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="861.0" y="821" width="0.2" height="15.0" fill="rgb(241,47,21)" rx="2" ry="2" />
<text x="864.04" y="831.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="427.1" y="709" width="0.2" height="15.0" fill="rgb(232,139,33)" rx="2" ry="2" />
<text x="430.08" y="719.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="918.5" y="1029" width="0.3" height="15.0" fill="rgb(253,154,15)" rx="2" ry="2" />
<text x="921.54" y="1039.5" ></text>
</g>
<g >
<title>zend_parse_parameters (10,101,010 samples, 0.02%)</title><rect x="1039.8" y="1109" width="0.2" height="15.0" fill="rgb(220,202,24)" rx="2" ry="2" />
<text x="1042.79" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_move_forward_ex (10,101,010 samples, 0.02%)</title><rect x="271.2" y="1045" width="0.3" height="15.0" fill="rgb(217,138,30)" rx="2" ry="2" />
<text x="274.25" y="1055.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="711.7" y="1109" width="0.2" height="15.0" fill="rgb(252,190,43)" rx="2" ry="2" />
<text x="714.67" y="1119.5" ></text>
</g>
<g >
<title>zend_declare_typed_property (10,101,010 samples, 0.02%)</title><rect x="302.7" y="869" width="0.2" height="15.0" fill="rgb(235,53,47)" rx="2" ry="2" />
<text x="305.71" y="879.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_TMPVAR_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="546.7" y="1141" width="0.2" height="15.0" fill="rgb(248,62,44)" rx="2" ry="2" />
<text x="549.67" y="1151.5" ></text>
</g>
<g >
<title>iowrite16 (30,303,030 samples, 0.05%)</title><rect x="939.4" y="69" width="0.6" height="15.0" fill="rgb(235,60,14)" rx="2" ry="2" />
<text x="942.38" y="79.5" ></text>
</g>
<g >
<title>zend_object_std_init (10,101,010 samples, 0.02%)</title><rect x="471.0" y="1077" width="0.2" height="15.0" fill="rgb(222,21,30)" rx="2" ry="2" />
<text x="474.04" y="1087.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="301.5" y="981" width="0.2" height="15.0" fill="rgb(234,47,8)" rx="2" ry="2" />
<text x="304.46" y="991.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="799.0" y="629" width="0.2" height="15.0" fill="rgb(211,106,39)" rx="2" ry="2" />
<text x="801.96" y="639.5" ></text>
</g>
<g >
<title>tcp_setsockopt (10,101,010 samples, 0.02%)</title><rect x="944.2" y="933" width="0.2" height="15.0" fill="rgb(252,43,22)" rx="2" ry="2" />
<text x="947.17" y="943.5" ></text>
</g>
<g >
<title>do_page_fault (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1077" width="0.2" height="15.0" fill="rgb(249,158,10)" rx="2" ry="2" />
<text x="1142.17" y="1087.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (10,101,010 samples, 0.02%)</title><rect x="946.9" y="805" width="0.2" height="15.0" fill="rgb(247,188,26)" rx="2" ry="2" />
<text x="949.88" y="815.5" ></text>
</g>
<g >
<title>queue_work_on (10,101,010 samples, 0.02%)</title><rect x="475.2" y="965" width="0.2" height="15.0" fill="rgb(236,134,44)" rx="2" ry="2" />
<text x="478.21" y="975.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="1184.2" y="981" width="0.4" height="15.0" fill="rgb(248,145,16)" rx="2" ry="2" />
<text x="1187.17" y="991.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_TMPVAR_HANDLER (40,404,040 samples, 0.07%)</title><rect x="290.8" y="1125" width="0.9" height="15.0" fill="rgb(211,160,47)" rx="2" ry="2" />
<text x="293.83" y="1135.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="964.4" y="1093" width="0.2" height="15.0" fill="rgb(224,164,14)" rx="2" ry="2" />
<text x="967.38" y="1103.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="1058.5" y="1077" width="0.3" height="15.0" fill="rgb(253,131,34)" rx="2" ry="2" />
<text x="1061.54" y="1087.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="686.7" y="933" width="0.2" height="15.0" fill="rgb(232,14,1)" rx="2" ry="2" />
<text x="689.67" y="943.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="205.6" y="981" width="0.2" height="15.0" fill="rgb(233,157,31)" rx="2" ry="2" />
<text x="208.62" y="991.5" ></text>
</g>
<g >
<title>zend_accel_load_script (30,303,030 samples, 0.05%)</title><rect x="778.5" y="965" width="0.7" height="15.0" fill="rgb(209,23,10)" rx="2" ry="2" />
<text x="781.54" y="975.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (10,101,010 samples, 0.02%)</title><rect x="942.3" y="741" width="0.2" height="15.0" fill="rgb(224,209,33)" rx="2" ry="2" />
<text x="945.29" y="751.5" ></text>
</g>
<g >
<title>zend_quick_get_constant (151,515,150 samples, 0.26%)</title><rect x="985.4" y="1125" width="3.1" height="15.0" fill="rgb(243,148,39)" rx="2" ry="2" />
<text x="988.42" y="1135.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="539.4" y="981" width="0.2" height="15.0" fill="rgb(232,125,54)" rx="2" ry="2" />
<text x="542.38" y="991.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="471.7" y="933" width="0.2" height="15.0" fill="rgb(214,137,12)" rx="2" ry="2" />
<text x="474.67" y="943.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="508.8" y="1045" width="0.2" height="15.0" fill="rgb(206,35,19)" rx="2" ry="2" />
<text x="511.75" y="1055.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="996.9" y="1125" width="0.2" height="15.0" fill="rgb(245,113,37)" rx="2" ry="2" />
<text x="999.88" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="782.3" y="901" width="0.2" height="15.0" fill="rgb(249,1,11)" rx="2" ry="2" />
<text x="785.29" y="911.5" ></text>
</g>
<g >
<title>zend_llist_del_element (10,101,010 samples, 0.02%)</title><rect x="1013.3" y="997" width="0.2" height="15.0" fill="rgb(241,5,21)" rx="2" ry="2" />
<text x="1016.33" y="1007.5" ></text>
</g>
<g >
<title>php_apc_unserializer (8,060,605,980 samples, 14.09%)</title><rect x="36.2" y="1189" width="166.3" height="15.0" fill="rgb(244,182,46)" rx="2" ry="2" />
<text x="39.25" y="1199.5" >php_apc_unserializer</text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="904.0" y="901" width="0.2" height="15.0" fill="rgb(210,206,8)" rx="2" ry="2" />
<text x="906.96" y="911.5" ></text>
</g>
<g >
<title>__inet_lookup_established (10,101,010 samples, 0.02%)</title><rect x="547.7" y="933" width="0.2" height="15.0" fill="rgb(247,64,38)" rx="2" ry="2" />
<text x="550.71" y="943.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="754.0" y="933" width="0.2" height="15.0" fill="rgb(221,181,9)" rx="2" ry="2" />
<text x="756.96" y="943.5" ></text>
</g>
<g >
<title>netif_receive_skb (121,212,120 samples, 0.21%)</title><rect x="1184.8" y="677" width="2.5" height="15.0" fill="rgb(213,60,15)" rx="2" ry="2" />
<text x="1187.79" y="687.5" ></text>
</g>
<g >
<title>ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="755.8" y="1125" width="0.2" height="15.0" fill="rgb(239,101,47)" rx="2" ry="2" />
<text x="758.83" y="1135.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (10,101,010 samples, 0.02%)</title><rect x="1179.0" y="1045" width="0.2" height="15.0" fill="rgb(246,73,43)" rx="2" ry="2" />
<text x="1181.96" y="1055.5" ></text>
</g>
<g >
<title>ZEND_INIT_ARRAY_SPEC_CV_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="710.6" y="1125" width="0.4" height="15.0" fill="rgb(227,213,51)" rx="2" ry="2" />
<text x="713.62" y="1135.5" ></text>
</g>
<g >
<title>ipt_do_table (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="437" width="0.4" height="15.0" fill="rgb(247,154,16)" rx="2" ry="2" />
<text x="1132.58" y="447.5" ></text>
</g>
<g >
<title>ZEND_SEND_REF_SPEC_CV_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="889.6" y="1125" width="0.2" height="15.0" fill="rgb(221,81,0)" rx="2" ry="2" />
<text x="892.58" y="1135.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="1145.4" y="1173" width="0.2" height="15.0" fill="rgb(209,57,26)" rx="2" ry="2" />
<text x="1148.42" y="1183.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (20,202,020 samples, 0.04%)</title><rect x="1130.4" y="709" width="0.4" height="15.0" fill="rgb(216,36,12)" rx="2" ry="2" />
<text x="1133.42" y="719.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (40,404,040 samples, 0.07%)</title><rect x="823.1" y="981" width="0.9" height="15.0" fill="rgb(229,53,31)" rx="2" ry="2" />
<text x="826.12" y="991.5" ></text>
</g>
<g >
<title>zif_call_user_func_array (20,202,020 samples, 0.04%)</title><rect x="984.4" y="1061" width="0.4" height="15.0" fill="rgb(245,174,31)" rx="2" ry="2" />
<text x="987.38" y="1071.5" ></text>
</g>
<g >
<title>spl_perform_autoload (373,737,370 samples, 0.65%)</title><rect x="675.2" y="1077" width="7.7" height="15.0" fill="rgb(206,35,43)" rx="2" ry="2" />
<text x="678.21" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (10,101,010 samples, 0.02%)</title><rect x="1061.9" y="1093" width="0.2" height="15.0" fill="rgb(252,63,27)" rx="2" ry="2" />
<text x="1064.88" y="1103.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (50,505,050 samples, 0.09%)</title><rect x="669.2" y="1061" width="1.0" height="15.0" fill="rgb(244,173,14)" rx="2" ry="2" />
<text x="672.17" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="106.9" y="1077" width="0.2" height="15.0" fill="rgb(231,0,20)" rx="2" ry="2" />
<text x="109.88" y="1087.5" ></text>
</g>
<g >
<title>check_stack_object (10,101,010 samples, 0.02%)</title><rect x="726.2" y="885" width="0.3" height="15.0" fill="rgb(210,63,28)" rx="2" ry="2" />
<text x="729.25" y="895.5" ></text>
</g>
<g >
<title>security_inode_getattr (30,303,030 samples, 0.05%)</title><rect x="425.2" y="997" width="0.6" height="15.0" fill="rgb(214,58,40)" rx="2" ry="2" />
<text x="428.21" y="1007.5" ></text>
</g>
<g >
<title>zend_add_magic_method (10,101,010 samples, 0.02%)</title><rect x="737.7" y="981" width="0.2" height="15.0" fill="rgb(244,207,51)" rx="2" ry="2" />
<text x="740.71" y="991.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="675.6" y="1029" width="0.2" height="15.0" fill="rgb(253,42,44)" rx="2" ry="2" />
<text x="678.62" y="1039.5" ></text>
</g>
<g >
<title>path_lookupat (30,303,030 samples, 0.05%)</title><rect x="1121.9" y="1077" width="0.6" height="15.0" fill="rgb(214,35,23)" rx="2" ry="2" />
<text x="1124.88" y="1087.5" ></text>
</g>
<g >
<title>inet_hash_connect (20,202,020 samples, 0.04%)</title><rect x="937.5" y="789" width="0.4" height="15.0" fill="rgb(250,80,3)" rx="2" ry="2" />
<text x="940.50" y="799.5" ></text>
</g>
<g >
<title>zend_update_class_constants.part.0 (60,606,060 samples, 0.11%)</title><rect x="300.4" y="1077" width="1.3" height="15.0" fill="rgb(208,28,28)" rx="2" ry="2" />
<text x="303.42" y="1087.5" ></text>
</g>
<g >
<title>TRACE-361$DeferredUpdatesScope::processStageQueue$266 (10,101,010 samples, 0.02%)</title><rect x="497.9" y="1141" width="0.2" height="15.0" fill="rgb(219,147,34)" rx="2" ry="2" />
<text x="500.92" y="1151.5" ></text>
</g>
<g >
<title>compile_filename (70,707,070 samples, 0.12%)</title><rect x="916.5" y="901" width="1.4" height="15.0" fill="rgb(241,41,27)" rx="2" ry="2" />
<text x="919.46" y="911.5" ></text>
</g>
<g >
<title>sock_alloc (50,505,050 samples, 0.09%)</title><rect x="1119.2" y="1109" width="1.0" height="15.0" fill="rgb(213,55,25)" rx="2" ry="2" />
<text x="1122.17" y="1119.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (161,616,160 samples, 0.28%)</title><rect x="685.6" y="1093" width="3.4" height="15.0" fill="rgb(248,29,9)" rx="2" ry="2" />
<text x="688.62" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="682.1" y="837" width="0.2" height="15.0" fill="rgb(224,57,43)" rx="2" ry="2" />
<text x="685.08" y="847.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="672.5" y="853" width="0.2" height="15.0" fill="rgb(242,192,28)" rx="2" ry="2" />
<text x="675.50" y="863.5" ></text>
</g>
<g >
<title>_is_numeric_string_ex (20,202,020 samples, 0.04%)</title><rect x="299.2" y="1093" width="0.4" height="15.0" fill="rgb(214,30,31)" rx="2" ry="2" />
<text x="302.17" y="1103.5" ></text>
</g>
<g >
<title>ip_route_input_noref (10,101,010 samples, 0.02%)</title><rect x="442.3" y="869" width="0.2" height="15.0" fill="rgb(247,222,36)" rx="2" ry="2" />
<text x="445.29" y="879.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="856.9" y="645" width="0.2" height="15.0" fill="rgb(233,96,39)" rx="2" ry="2" />
<text x="859.88" y="655.5" ></text>
</g>
<g >
<title>php_implode (10,101,010 samples, 0.02%)</title><rect x="336.0" y="1109" width="0.2" height="15.0" fill="rgb(248,214,19)" rx="2" ry="2" />
<text x="339.04" y="1119.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="1081.5" y="1045" width="0.2" height="15.0" fill="rgb(231,115,45)" rx="2" ry="2" />
<text x="1084.46" y="1055.5" ></text>
</g>
<g >
<title>ovl_permission (10,101,010 samples, 0.02%)</title><rect x="911.2" y="901" width="0.3" height="15.0" fill="rgb(211,216,8)" rx="2" ry="2" />
<text x="914.25" y="911.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (5,676,767,620 samples, 9.92%)</title><rect x="768.8" y="1109" width="117.0" height="15.0" fill="rgb(253,157,1)" rx="2" ry="2" />
<text x="771.75" y="1119.5" >zend_fetch_cla..</text>
</g>
<g >
<title>schedule_hrtimeout_range (20,202,020 samples, 0.04%)</title><rect x="925.4" y="773" width="0.4" height="15.0" fill="rgb(239,93,42)" rx="2" ry="2" />
<text x="928.42" y="783.5" ></text>
</g>
<g >
<title>__qdisc_run (10,101,010 samples, 0.02%)</title><rect x="1127.7" y="437" width="0.2" height="15.0" fill="rgb(228,46,10)" rx="2" ry="2" />
<text x="1130.71" y="447.5" ></text>
</g>
<g >
<title>__lock_text_start (80,808,080 samples, 0.14%)</title><rect x="1035.2" y="901" width="1.7" height="15.0" fill="rgb(253,117,45)" rx="2" ry="2" />
<text x="1038.21" y="911.5" ></text>
</g>
<g >
<title>persistent_compile_file (40,404,040 samples, 0.07%)</title><rect x="713.3" y="965" width="0.9" height="15.0" fill="rgb(227,46,53)" rx="2" ry="2" />
<text x="716.33" y="975.5" ></text>
</g>
<g >
<title>schedule (20,202,020 samples, 0.04%)</title><rect x="805.8" y="789" width="0.4" height="15.0" fill="rgb(236,169,23)" rx="2" ry="2" />
<text x="808.83" y="799.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="723.1" y="1029" width="0.2" height="15.0" fill="rgb(211,80,14)" rx="2" ry="2" />
<text x="726.12" y="1039.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1093" width="0.2" height="15.0" fill="rgb(206,95,10)" rx="2" ry="2" />
<text x="468.83" y="1103.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="654.2" y="997" width="0.2" height="15.0" fill="rgb(235,57,54)" rx="2" ry="2" />
<text x="657.17" y="1007.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (30,303,030 samples, 0.05%)</title><rect x="1003.3" y="757" width="0.7" height="15.0" fill="rgb(242,93,28)" rx="2" ry="2" />
<text x="1006.33" y="767.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="1125.6" y="965" width="0.2" height="15.0" fill="rgb(240,229,35)" rx="2" ry="2" />
<text x="1128.62" y="975.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (60,606,060 samples, 0.11%)</title><rect x="704.4" y="1125" width="1.2" height="15.0" fill="rgb(225,180,13)" rx="2" ry="2" />
<text x="707.38" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_static_prop_helper_SPEC (10,101,010 samples, 0.02%)</title><rect x="273.1" y="1125" width="0.2" height="15.0" fill="rgb(212,27,40)" rx="2" ry="2" />
<text x="276.12" y="1135.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="629" width="0.3" height="15.0" fill="rgb(237,196,32)" rx="2" ry="2" />
<text x="1134.25" y="639.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.11 (121,212,120 samples, 0.21%)</title><rect x="1111.9" y="1125" width="2.5" height="15.0" fill="rgb(218,136,39)" rx="2" ry="2" />
<text x="1114.88" y="1135.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="915.6" y="1061" width="0.2" height="15.0" fill="rgb(234,206,29)" rx="2" ry="2" />
<text x="918.62" y="1071.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="672.7" y="1061" width="0.2" height="15.0" fill="rgb(220,139,40)" rx="2" ry="2" />
<text x="675.71" y="1071.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="339.6" y="1013" width="0.2" height="15.0" fill="rgb(230,227,6)" rx="2" ry="2" />
<text x="342.58" y="1023.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="266.0" y="1077" width="0.2" height="15.0" fill="rgb(208,44,43)" rx="2" ry="2" />
<text x="269.04" y="1087.5" ></text>
</g>
<g >
<title>ip_queue_xmit (50,505,050 samples, 0.09%)</title><rect x="1089.2" y="725" width="1.0" height="15.0" fill="rgb(242,145,20)" rx="2" ry="2" />
<text x="1092.17" y="735.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="30.4" y="869" width="0.2" height="15.0" fill="rgb(211,33,53)" rx="2" ry="2" />
<text x="33.42" y="879.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="904.0" y="645" width="0.2" height="15.0" fill="rgb(206,73,44)" rx="2" ry="2" />
<text x="906.96" y="655.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="565" width="0.4" height="15.0" fill="rgb(248,79,1)" rx="2" ry="2" />
<text x="1092.58" y="575.5" ></text>
</g>
<g >
<title>schedule_timeout (20,202,020 samples, 0.04%)</title><rect x="1176.7" y="1061" width="0.4" height="15.0" fill="rgb(239,65,28)" rx="2" ry="2" />
<text x="1179.67" y="1071.5" ></text>
</g>
<g >
<title>vfs_statx (40,404,040 samples, 0.07%)</title><rect x="1121.7" y="1125" width="0.8" height="15.0" fill="rgb(249,83,18)" rx="2" ry="2" />
<text x="1124.67" y="1135.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="24.0" y="837" width="0.2" height="15.0" fill="rgb(221,162,1)" rx="2" ry="2" />
<text x="26.96" y="847.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_LIST_r (10,101,010 samples, 0.02%)</title><rect x="975.8" y="1125" width="0.2" height="15.0" fill="rgb(248,24,20)" rx="2" ry="2" />
<text x="978.83" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="731.5" y="1029" width="0.2" height="15.0" fill="rgb(254,41,39)" rx="2" ry="2" />
<text x="734.46" y="1039.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="1061" width="0.3" height="15.0" fill="rgb(211,38,12)" rx="2" ry="2" />
<text x="1044.25" y="1071.5" ></text>
</g>
<g >
<title>php_str_replace_common (40,404,040 samples, 0.07%)</title><rect x="958.8" y="1125" width="0.8" height="15.0" fill="rgb(241,54,48)" rx="2" ry="2" />
<text x="961.75" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="822.3" y="885" width="0.2" height="15.0" fill="rgb(236,128,11)" rx="2" ry="2" />
<text x="825.29" y="895.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (131,313,130 samples, 0.23%)</title><rect x="1184.8" y="757" width="2.7" height="15.0" fill="rgb(217,49,17)" rx="2" ry="2" />
<text x="1187.79" y="767.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="304.4" y="677" width="0.4" height="15.0" fill="rgb(226,71,31)" rx="2" ry="2" />
<text x="307.38" y="687.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1045" width="0.2" height="15.0" fill="rgb(247,151,1)" rx="2" ry="2" />
<text x="554.67" y="1055.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="619.0" y="917" width="0.2" height="15.0" fill="rgb(232,27,34)" rx="2" ry="2" />
<text x="621.96" y="927.5" ></text>
</g>
<g >
<title>[opcache.so] (10,101,010 samples, 0.02%)</title><rect x="274.2" y="1061" width="0.2" height="15.0" fill="rgb(244,178,15)" rx="2" ry="2" />
<text x="277.17" y="1071.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="998.8" y="805" width="0.2" height="15.0" fill="rgb(240,142,35)" rx="2" ry="2" />
<text x="1001.75" y="815.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="822.3" y="901" width="0.2" height="15.0" fill="rgb(247,139,27)" rx="2" ry="2" />
<text x="825.29" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="1133.1" y="1189" width="0.7" height="15.0" fill="rgb(234,210,47)" rx="2" ry="2" />
<text x="1136.12" y="1199.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="283.1" y="981" width="0.2" height="15.0" fill="rgb(223,92,19)" rx="2" ry="2" />
<text x="286.12" y="991.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="677.7" y="789" width="0.4" height="15.0" fill="rgb(243,124,32)" rx="2" ry="2" />
<text x="680.71" y="799.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1164.0" y="741" width="0.2" height="15.0" fill="rgb(209,204,50)" rx="2" ry="2" />
<text x="1166.96" y="751.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1077.5" y="1061" width="0.2" height="15.0" fill="rgb(213,221,0)" rx="2" ry="2" />
<text x="1080.50" y="1071.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="498.5" y="1125" width="0.3" height="15.0" fill="rgb(229,163,1)" rx="2" ry="2" />
<text x="501.54" y="1135.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="641.9" y="981" width="0.2" height="15.0" fill="rgb(225,129,52)" rx="2" ry="2" />
<text x="644.88" y="991.5" ></text>
</g>
<g >
<title>tcp_set_state (10,101,010 samples, 0.02%)</title><rect x="1090.4" y="789" width="0.2" height="15.0" fill="rgb(226,9,1)" rx="2" ry="2" />
<text x="1093.42" y="799.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="489.4" y="1093" width="0.2" height="15.0" fill="rgb(234,152,15)" rx="2" ry="2" />
<text x="492.38" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="271.0" y="1045" width="0.2" height="15.0" fill="rgb(222,227,23)" rx="2" ry="2" />
<text x="274.04" y="1055.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="623.3" y="1109" width="0.2" height="15.0" fill="rgb(207,50,47)" rx="2" ry="2" />
<text x="626.33" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="342.5" y="1045" width="0.2" height="15.0" fill="rgb(230,172,33)" rx="2" ry="2" />
<text x="345.50" y="1055.5" ></text>
</g>
<g >
<title>TRACE-332$Wikimedia\Services\{closure}$442 (30,303,030 samples, 0.05%)</title><rect x="447.9" y="1045" width="0.6" height="15.0" fill="rgb(242,120,4)" rx="2" ry="2" />
<text x="450.92" y="1055.5" ></text>
</g>
<g >
<title>__fget_light (20,202,020 samples, 0.04%)</title><rect x="1188.3" y="1109" width="0.5" height="15.0" fill="rgb(233,43,10)" rx="2" ry="2" />
<text x="1191.33" y="1119.5" ></text>
</g>
<g >
<title>__skb_clone (10,101,010 samples, 0.02%)</title><rect x="1090.2" y="709" width="0.2" height="15.0" fill="rgb(235,198,45)" rx="2" ry="2" />
<text x="1093.21" y="719.5" ></text>
</g>
<g >
<title>new_inode_pseudo (50,505,050 samples, 0.09%)</title><rect x="1119.2" y="1093" width="1.0" height="15.0" fill="rgb(239,227,3)" rx="2" ry="2" />
<text x="1122.17" y="1103.5" ></text>
</g>
<g >
<title>path_get (10,101,010 samples, 0.02%)</title><rect x="912.7" y="917" width="0.2" height="15.0" fill="rgb(235,172,13)" rx="2" ry="2" />
<text x="915.71" y="927.5" ></text>
</g>
<g >
<title>zend_hash_reverse_apply (30,303,030 samples, 0.05%)</title><rect x="1078.5" y="1125" width="0.7" height="15.0" fill="rgb(205,129,17)" rx="2" ry="2" />
<text x="1081.54" y="1135.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1090.0" y="613" width="0.2" height="15.0" fill="rgb(250,164,15)" rx="2" ry="2" />
<text x="1093.00" y="623.5" ></text>
</g>
<g >
<title>destroy_op_array (10,101,010 samples, 0.02%)</title><rect x="744.4" y="901" width="0.2" height="15.0" fill="rgb(252,21,46)" rx="2" ry="2" />
<text x="747.38" y="911.5" ></text>
</g>
<g >
<title>security_sk_free (10,101,010 samples, 0.02%)</title><rect x="30.4" y="885" width="0.2" height="15.0" fill="rgb(228,63,9)" rx="2" ry="2" />
<text x="33.42" y="895.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_command_query_pub (30,303,030 samples, 0.05%)</title><rect x="1051.5" y="1093" width="0.6" height="15.0" fill="rgb(245,168,15)" rx="2" ry="2" />
<text x="1054.46" y="1103.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="309.4" y="1077" width="0.2" height="15.0" fill="rgb(252,53,4)" rx="2" ry="2" />
<text x="312.38" y="1087.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1029" width="3.3" height="15.0" fill="rgb(207,93,9)" rx="2" ry="2" />
<text x="304.67" y="1039.5" ></text>
</g>
<g >
<title>ZEND_FETCH_OBJ_IS_SPEC_UNUSED_CONST_HANDLER (40,404,040 samples, 0.07%)</title><rect x="693.8" y="1125" width="0.8" height="15.0" fill="rgb(214,42,30)" rx="2" ry="2" />
<text x="696.75" y="1135.5" ></text>
</g>
<g >
<title>__fget_light (10,101,010 samples, 0.02%)</title><rect x="926.2" y="789" width="0.3" height="15.0" fill="rgb(228,150,20)" rx="2" ry="2" />
<text x="929.25" y="799.5" ></text>
</g>
<g >
<title>rc_dtor_func (10,101,010 samples, 0.02%)</title><rect x="1062.9" y="1141" width="0.2" height="15.0" fill="rgb(212,225,9)" rx="2" ry="2" />
<text x="1065.92" y="1151.5" ></text>
</g>
<g >
<title>legitimize_mnt (30,303,030 samples, 0.05%)</title><rect x="410.0" y="885" width="0.6" height="15.0" fill="rgb(249,179,19)" rx="2" ry="2" />
<text x="413.00" y="895.5" ></text>
</g>
<g >
<title>parse_iv2 (60,606,060 samples, 0.11%)</title><rect x="175.4" y="1061" width="1.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="178.42" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_shutdown (272,727,270 samples, 0.48%)</title><rect x="1183.1" y="1173" width="5.7" height="15.0" fill="rgb(254,205,37)" rx="2" ry="2" />
<text x="1186.12" y="1183.5" ></text>
</g>
<g >
<title>virtqueue_get_buf (10,101,010 samples, 0.02%)</title><rect x="641.9" y="965" width="0.2" height="15.0" fill="rgb(245,157,9)" rx="2" ry="2" />
<text x="644.88" y="975.5" ></text>
</g>
<g >
<title>php_auto_globals_create_server (131,313,130 samples, 0.23%)</title><rect x="699.6" y="1029" width="2.7" height="15.0" fill="rgb(244,5,10)" rx="2" ry="2" />
<text x="702.58" y="1039.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="304.0" y="677" width="0.2" height="15.0" fill="rgb(224,37,23)" rx="2" ry="2" />
<text x="306.96" y="687.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1115.0" y="1093" width="0.2" height="15.0" fill="rgb(220,149,54)" rx="2" ry="2" />
<text x="1118.00" y="1103.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (40,404,040 samples, 0.07%)</title><rect x="951.9" y="1109" width="0.8" height="15.0" fill="rgb(217,30,3)" rx="2" ry="2" />
<text x="954.88" y="1119.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="850.6" y="821" width="0.2" height="15.0" fill="rgb(225,6,33)" rx="2" ry="2" />
<text x="853.62" y="831.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="390.2" y="709" width="0.2" height="15.0" fill="rgb(228,158,2)" rx="2" ry="2" />
<text x="393.21" y="719.5" ></text>
</g>
<g >
<title>zend_build_properties_info_table (10,101,010 samples, 0.02%)</title><rect x="822.9" y="981" width="0.2" height="15.0" fill="rgb(236,59,51)" rx="2" ry="2" />
<text x="825.92" y="991.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="1013" width="0.2" height="15.0" fill="rgb(222,83,9)" rx="2" ry="2" />
<text x="1086.33" y="1023.5" ></text>
</g>
<g >
<title>php_tcp_sockop_set_option (616,161,610 samples, 1.08%)</title><rect x="931.0" y="949" width="12.8" height="15.0" fill="rgb(234,143,6)" rx="2" ry="2" />
<text x="934.04" y="959.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (30,303,030 samples, 0.05%)</title><rect x="1026.0" y="549" width="0.7" height="15.0" fill="rgb(215,135,33)" rx="2" ry="2" />
<text x="1029.04" y="559.5" ></text>
</g>
<g >
<title>tcp_in_window (10,101,010 samples, 0.02%)</title><rect x="1126.7" y="917" width="0.2" height="15.0" fill="rgb(244,158,13)" rx="2" ry="2" />
<text x="1129.67" y="927.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="443.5" y="885" width="0.3" height="15.0" fill="rgb(246,181,28)" rx="2" ry="2" />
<text x="446.54" y="895.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="346.9" y="1093" width="0.2" height="15.0" fill="rgb(244,197,29)" rx="2" ry="2" />
<text x="349.88" y="1103.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="279.6" y="1013" width="0.2" height="15.0" fill="rgb(240,105,41)" rx="2" ry="2" />
<text x="282.58" y="1023.5" ></text>
</g>
<g >
<title>__check_object_size (10,101,010 samples, 0.02%)</title><rect x="534.8" y="901" width="0.2" height="15.0" fill="rgb(225,178,42)" rx="2" ry="2" />
<text x="537.79" y="911.5" ></text>
</g>
<g >
<title>fq_codel_dequeue (10,101,010 samples, 0.02%)</title><rect x="1152.7" y="405" width="0.2" height="15.0" fill="rgb(205,163,52)" rx="2" ry="2" />
<text x="1155.71" y="415.5" ></text>
</g>
<g >
<title>TRACE-308$Wikimedia\Rdbms\LoadBalancer::disable$1644 (30,303,030 samples, 0.05%)</title><rect x="1082.7" y="1077" width="0.6" height="15.0" fill="rgb(240,195,8)" rx="2" ry="2" />
<text x="1085.71" y="1087.5" ></text>
</g>
<g >
<title>[perf-25505.map] (20,202,020 samples, 0.04%)</title><rect x="34.0" y="1189" width="0.4" height="15.0" fill="rgb(238,15,17)" rx="2" ry="2" />
<text x="36.96" y="1199.5" ></text>
</g>
<g >
<title>zend_fetch_static_prop_helper_SPEC (50,505,050 samples, 0.09%)</title><rect x="976.5" y="1125" width="1.0" height="15.0" fill="rgb(226,164,6)" rx="2" ry="2" />
<text x="979.46" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="850.6" y="613" width="0.2" height="15.0" fill="rgb(235,163,22)" rx="2" ry="2" />
<text x="853.62" y="623.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="184.0" y="1045" width="0.2" height="15.0" fill="rgb(205,186,42)" rx="2" ry="2" />
<text x="186.96" y="1055.5" ></text>
</g>
<g >
<title>php_output_handler_op (10,101,010 samples, 0.02%)</title><rect x="1054.8" y="1077" width="0.2" height="15.0" fill="rgb(224,164,42)" rx="2" ry="2" />
<text x="1057.79" y="1087.5" ></text>
</g>
<g >
<title>validate_xmit_skb (10,101,010 samples, 0.02%)</title><rect x="1090.0" y="581" width="0.2" height="15.0" fill="rgb(238,28,17)" rx="2" ry="2" />
<text x="1093.00" y="591.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1093" width="1.2" height="15.0" fill="rgb(207,97,51)" rx="2" ry="2" />
<text x="526.75" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1061" width="0.2" height="15.0" fill="rgb(231,74,12)" rx="2" ry="2" />
<text x="906.96" y="1071.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="619.0" y="901" width="0.2" height="15.0" fill="rgb(210,26,9)" rx="2" ry="2" />
<text x="621.96" y="911.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1022.7" y="1093" width="0.2" height="15.0" fill="rgb(205,189,47)" rx="2" ry="2" />
<text x="1025.71" y="1103.5" ></text>
</g>
<g >
<title>zend_include_or_eval (161,616,160 samples, 0.28%)</title><rect x="803.8" y="901" width="3.3" height="15.0" fill="rgb(225,52,34)" rx="2" ry="2" />
<text x="806.75" y="911.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (484,848,480 samples, 0.85%)</title><rect x="780.2" y="1029" width="10.0" height="15.0" fill="rgb(251,146,17)" rx="2" ry="2" />
<text x="783.21" y="1039.5" ></text>
</g>
<g >
<title>__secure_computing (20,202,020 samples, 0.04%)</title><rect x="1171.5" y="1157" width="0.4" height="15.0" fill="rgb(234,216,7)" rx="2" ry="2" />
<text x="1174.46" y="1167.5" ></text>
</g>
<g >
<title>skb_ext_add (10,101,010 samples, 0.02%)</title><rect x="1025.0" y="533" width="0.2" height="15.0" fill="rgb(236,54,52)" rx="2" ry="2" />
<text x="1028.00" y="543.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="906.2" y="1013" width="0.3" height="15.0" fill="rgb(218,210,52)" rx="2" ry="2" />
<text x="909.25" y="1023.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="1109.0" y="1077" width="0.2" height="15.0" fill="rgb(207,203,22)" rx="2" ry="2" />
<text x="1111.96" y="1087.5" ></text>
</g>
<g >
<title>compare_function (10,101,010 samples, 0.02%)</title><rect x="334.2" y="1125" width="0.2" height="15.0" fill="rgb(227,118,31)" rx="2" ry="2" />
<text x="337.17" y="1135.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="461.7" y="1093" width="0.2" height="15.0" fill="rgb(215,52,38)" rx="2" ry="2" />
<text x="464.67" y="1103.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="744.0" y="741" width="0.2" height="15.0" fill="rgb(226,19,11)" rx="2" ry="2" />
<text x="746.96" y="751.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="539.4" y="805" width="0.2" height="15.0" fill="rgb(240,161,11)" rx="2" ry="2" />
<text x="542.38" y="815.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="472.1" y="1125" width="0.2" height="15.0" fill="rgb(250,177,2)" rx="2" ry="2" />
<text x="475.08" y="1135.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1106.9" y="1109" width="0.2" height="15.0" fill="rgb(237,56,12)" rx="2" ry="2" />
<text x="1109.88" y="1119.5" ></text>
</g>
<g >
<title>zend_mm_alloc_pages (10,101,010 samples, 0.02%)</title><rect x="72.1" y="1061" width="0.2" height="15.0" fill="rgb(210,152,39)" rx="2" ry="2" />
<text x="75.08" y="1071.5" ></text>
</g>
<g >
<title>nf_conntrack_in (20,202,020 samples, 0.04%)</title><rect x="941.0" y="437" width="0.5" height="15.0" fill="rgb(237,193,38)" rx="2" ry="2" />
<text x="944.04" y="447.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (90,909,090 samples, 0.16%)</title><rect x="1127.5" y="453" width="1.9" height="15.0" fill="rgb(213,27,30)" rx="2" ry="2" />
<text x="1130.50" y="463.5" ></text>
</g>
<g >
<title>zend_llist_del_element (10,101,010 samples, 0.02%)</title><rect x="846.5" y="837" width="0.2" height="15.0" fill="rgb(239,97,49)" rx="2" ry="2" />
<text x="849.46" y="847.5" ></text>
</g>
<g >
<title>zif_defined (10,101,010 samples, 0.02%)</title><rect x="1028.1" y="1029" width="0.2" height="15.0" fill="rgb(223,101,39)" rx="2" ry="2" />
<text x="1031.12" y="1039.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="296.9" y="1029" width="0.2" height="15.0" fill="rgb(209,52,3)" rx="2" ry="2" />
<text x="299.88" y="1039.5" ></text>
</g>
<g >
<title>gc_possible_root (10,101,010 samples, 0.02%)</title><rect x="919.8" y="1125" width="0.2" height="15.0" fill="rgb(213,14,37)" rx="2" ry="2" />
<text x="922.79" y="1135.5" ></text>
</g>
<g >
<title>kfree (10,101,010 samples, 0.02%)</title><rect x="1007.5" y="693" width="0.2" height="15.0" fill="rgb(232,206,49)" rx="2" ry="2" />
<text x="1010.50" y="703.5" ></text>
</g>
<g >
<title>zend_do_link_class (737,373,730 samples, 1.29%)</title><rect x="792.1" y="1013" width="15.2" height="15.0" fill="rgb(230,61,8)" rx="2" ry="2" />
<text x="795.08" y="1023.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (161,616,160 samples, 0.28%)</title><rect x="1136.7" y="1157" width="3.3" height="15.0" fill="rgb(222,82,0)" rx="2" ry="2" />
<text x="1139.67" y="1167.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1061" width="0.2" height="15.0" fill="rgb(206,54,42)" rx="2" ry="2" />
<text x="1118.21" y="1071.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="722.7" y="1029" width="0.2" height="15.0" fill="rgb(229,193,50)" rx="2" ry="2" />
<text x="725.71" y="1039.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1024.0" y="853" width="0.2" height="15.0" fill="rgb(221,31,54)" rx="2" ry="2" />
<text x="1026.96" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.05%)</title><rect x="797.1" y="901" width="0.6" height="15.0" fill="rgb(235,111,26)" rx="2" ry="2" />
<text x="800.08" y="911.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1033.1" y="533" width="0.2" height="15.0" fill="rgb(218,47,8)" rx="2" ry="2" />
<text x="1036.12" y="543.5" ></text>
</g>
<g >
<title>ip_rcv_finish (60,606,060 samples, 0.11%)</title><rect x="1025.4" y="565" width="1.3" height="15.0" fill="rgb(212,41,47)" rx="2" ry="2" />
<text x="1028.42" y="575.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="904.6" y="1077" width="0.2" height="15.0" fill="rgb(246,205,48)" rx="2" ry="2" />
<text x="907.58" y="1087.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="457.3" y="1093" width="0.2" height="15.0" fill="rgb(249,189,23)" rx="2" ry="2" />
<text x="460.29" y="1103.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="502.3" y="1109" width="0.2" height="15.0" fill="rgb(214,180,41)" rx="2" ry="2" />
<text x="505.29" y="1119.5" ></text>
</g>
<g >
<title>tcp_options.isra.15 (10,101,010 samples, 0.02%)</title><rect x="941.2" y="389" width="0.3" height="15.0" fill="rgb(242,0,20)" rx="2" ry="2" />
<text x="944.25" y="399.5" ></text>
</g>
<g >
<title>zif_preg_replace_callback (30,303,030 samples, 0.05%)</title><rect x="1055.4" y="1125" width="0.6" height="15.0" fill="rgb(227,131,40)" rx="2" ry="2" />
<text x="1058.42" y="1135.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="1025.0" y="565" width="0.2" height="15.0" fill="rgb(229,85,17)" rx="2" ry="2" />
<text x="1028.00" y="575.5" ></text>
</g>
<g >
<title>zend_hash_internal_pointer_reset_ex (10,101,010 samples, 0.02%)</title><rect x="683.3" y="1077" width="0.2" height="15.0" fill="rgb(226,5,27)" rx="2" ry="2" />
<text x="686.33" y="1087.5" ></text>
</g>
<g >
<title>netif_receive_skb (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="677" width="2.9" height="15.0" fill="rgb(207,14,10)" rx="2" ry="2" />
<text x="1130.50" y="687.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="1063.8" y="1045" width="0.2" height="15.0" fill="rgb(214,105,19)" rx="2" ry="2" />
<text x="1066.75" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="901" width="0.2" height="15.0" fill="rgb(206,90,22)" rx="2" ry="2" />
<text x="1099.04" y="911.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="342.5" y="1093" width="0.2" height="15.0" fill="rgb(244,220,43)" rx="2" ry="2" />
<text x="345.50" y="1103.5" ></text>
</g>
<g >
<title>zend_strtod (30,303,030 samples, 0.05%)</title><rect x="1139.4" y="1141" width="0.6" height="15.0" fill="rgb(252,44,16)" rx="2" ry="2" />
<text x="1142.38" y="1151.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="799.0" y="645" width="0.2" height="15.0" fill="rgb(240,37,43)" rx="2" ry="2" />
<text x="801.96" y="655.5" ></text>
</g>
<g >
<title>TRACE-430$Fandom\Includes\Logging\FandomLoggingSpi::getLogger$73 (70,707,070 samples, 0.12%)</title><rect x="518.3" y="1141" width="1.5" height="15.0" fill="rgb(216,154,28)" rx="2" ry="2" />
<text x="521.33" y="1151.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="1010.2" y="997" width="0.2" height="15.0" fill="rgb(223,150,2)" rx="2" ry="2" />
<text x="1013.21" y="1007.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="973.3" y="1045" width="0.2" height="15.0" fill="rgb(239,70,30)" rx="2" ry="2" />
<text x="976.33" y="1055.5" ></text>
</g>
<g >
<title>TRACE-190$MWExceptionHandler::prettyPrintTrace$392 (90,909,090 samples, 0.16%)</title><rect x="334.4" y="1141" width="1.8" height="15.0" fill="rgb(222,181,51)" rx="2" ry="2" />
<text x="337.38" y="1151.5" ></text>
</g>
<g >
<title>php_mysqlnd_change_auth_response_write (10,101,010 samples, 0.02%)</title><rect x="928.3" y="981" width="0.2" height="15.0" fill="rgb(214,127,45)" rx="2" ry="2" />
<text x="931.33" y="991.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="976.9" y="1093" width="0.2" height="15.0" fill="rgb(214,216,24)" rx="2" ry="2" />
<text x="979.88" y="1103.5" ></text>
</g>
<g >
<title>zend_do_link_class (30,303,030 samples, 0.05%)</title><rect x="799.4" y="773" width="0.6" height="15.0" fill="rgb(253,5,40)" rx="2" ry="2" />
<text x="802.38" y="783.5" ></text>
</g>
<g >
<title>mysqlnd_pfc_free (10,101,010 samples, 0.02%)</title><rect x="1091.2" y="981" width="0.3" height="15.0" fill="rgb(228,169,13)" rx="2" ry="2" />
<text x="1094.25" y="991.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (10,101,010 samples, 0.02%)</title><rect x="1131.0" y="837" width="0.2" height="15.0" fill="rgb(224,164,33)" rx="2" ry="2" />
<text x="1134.04" y="847.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (80,808,080 samples, 0.14%)</title><rect x="1160.6" y="501" width="1.7" height="15.0" fill="rgb(225,147,8)" rx="2" ry="2" />
<text x="1163.62" y="511.5" ></text>
</g>
<g >
<title>lookup_fast (10,101,010 samples, 0.02%)</title><rect x="1136.0" y="1093" width="0.2" height="15.0" fill="rgb(239,7,43)" rx="2" ry="2" />
<text x="1139.04" y="1103.5" ></text>
</g>
<g >
<title>neigh_resolve_output (10,101,010 samples, 0.02%)</title><rect x="941.5" y="645" width="0.2" height="15.0" fill="rgb(212,23,20)" rx="2" ry="2" />
<text x="944.46" y="655.5" ></text>
</g>
<g >
<title>tcp_fin (10,101,010 samples, 0.02%)</title><rect x="856.9" y="549" width="0.2" height="15.0" fill="rgb(211,165,38)" rx="2" ry="2" />
<text x="859.88" y="559.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="880.8" y="917" width="0.2" height="15.0" fill="rgb(247,66,10)" rx="2" ry="2" />
<text x="883.83" y="927.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (161,616,160 samples, 0.28%)</title><rect x="532.3" y="1109" width="3.3" height="15.0" fill="rgb(235,125,48)" rx="2" ry="2" />
<text x="535.29" y="1119.5" ></text>
</g>
<g >
<title>sk_wait_data (20,202,020 samples, 0.04%)</title><rect x="1176.7" y="1093" width="0.4" height="15.0" fill="rgb(233,2,44)" rx="2" ry="2" />
<text x="1179.67" y="1103.5" ></text>
</g>
<g >
<title>do_sys_poll (20,202,020 samples, 0.04%)</title><rect x="929.8" y="869" width="0.4" height="15.0" fill="rgb(215,182,3)" rx="2" ry="2" />
<text x="932.79" y="879.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="1017.1" y="981" width="0.2" height="15.0" fill="rgb(229,45,13)" rx="2" ry="2" />
<text x="1020.08" y="991.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="690.4" y="1109" width="0.2" height="15.0" fill="rgb(247,54,54)" rx="2" ry="2" />
<text x="693.42" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="296.7" y="1061" width="0.2" height="15.0" fill="rgb(227,14,37)" rx="2" ry="2" />
<text x="299.67" y="1071.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="742.9" y="725" width="0.2" height="15.0" fill="rgb(221,142,53)" rx="2" ry="2" />
<text x="745.92" y="735.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1096.0" y="1061" width="0.2" height="15.0" fill="rgb(209,41,28)" rx="2" ry="2" />
<text x="1099.04" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="917" width="0.2" height="15.0" fill="rgb(233,94,51)" rx="2" ry="2" />
<text x="1091.33" y="927.5" ></text>
</g>
<g >
<title>compare_function (10,101,010 samples, 0.02%)</title><rect x="487.7" y="1125" width="0.2" height="15.0" fill="rgb(209,221,13)" rx="2" ry="2" />
<text x="490.71" y="1135.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="416.9" y="789" width="0.2" height="15.0" fill="rgb(233,17,5)" rx="2" ry="2" />
<text x="419.88" y="799.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="997" width="0.3" height="15.0" fill="rgb(238,20,54)" rx="2" ry="2" />
<text x="1174.25" y="1007.5" ></text>
</g>
<g >
<title>virtqueue_notify (10,101,010 samples, 0.02%)</title><rect x="539.4" y="581" width="0.2" height="15.0" fill="rgb(251,87,38)" rx="2" ry="2" />
<text x="542.38" y="591.5" ></text>
</g>
<g >
<title>zend_is_callable_check_class (20,202,020 samples, 0.04%)</title><rect x="350.0" y="1061" width="0.4" height="15.0" fill="rgb(229,201,14)" rx="2" ry="2" />
<text x="353.00" y="1071.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="965" width="0.2" height="15.0" fill="rgb(247,55,28)" rx="2" ry="2" />
<text x="1117.17" y="975.5" ></text>
</g>
<g >
<title>do_inheritance_check_on_method (10,101,010 samples, 0.02%)</title><rect x="799.2" y="869" width="0.2" height="15.0" fill="rgb(211,130,50)" rx="2" ry="2" />
<text x="802.17" y="879.5" ></text>
</g>
<g >
<title>zend_hash_add_new (70,707,070 samples, 0.12%)</title><rect x="194.4" y="1093" width="1.4" height="15.0" fill="rgb(205,84,3)" rx="2" ry="2" />
<text x="197.38" y="1103.5" ></text>
</g>
<g >
<title>php_network_connect_socket_to_host (545,454,540 samples, 0.95%)</title><rect x="932.5" y="933" width="11.3" height="15.0" fill="rgb(218,177,33)" rx="2" ry="2" />
<text x="935.50" y="943.5" ></text>
</g>
<g >
<title>zif_define (30,303,030 samples, 0.05%)</title><rect x="1021.9" y="1125" width="0.6" height="15.0" fill="rgb(216,103,30)" rx="2" ry="2" />
<text x="1024.88" y="1135.5" ></text>
</g>
<g >
<title>__inet_lookup_established (10,101,010 samples, 0.02%)</title><rect x="1026.5" y="517" width="0.2" height="15.0" fill="rgb(227,25,24)" rx="2" ry="2" />
<text x="1029.46" y="527.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (20,202,020 samples, 0.04%)</title><rect x="684.6" y="949" width="0.4" height="15.0" fill="rgb(226,93,45)" rx="2" ry="2" />
<text x="687.58" y="959.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.05%)</title><rect x="1025.4" y="517" width="0.6" height="15.0" fill="rgb(218,64,27)" rx="2" ry="2" />
<text x="1028.42" y="527.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="1088.8" y="821" width="0.2" height="15.0" fill="rgb(205,182,25)" rx="2" ry="2" />
<text x="1091.75" y="831.5" ></text>
</g>
<g >
<title>rw_verify_area (20,202,020 samples, 0.04%)</title><rect x="217.9" y="1029" width="0.4" height="15.0" fill="rgb(214,102,39)" rx="2" ry="2" />
<text x="220.92" y="1039.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="917" width="0.9" height="15.0" fill="rgb(237,119,30)" rx="2" ry="2" />
<text x="1035.92" y="927.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (40,404,040 samples, 0.07%)</title><rect x="781.7" y="965" width="0.8" height="15.0" fill="rgb(229,205,33)" rx="2" ry="2" />
<text x="784.67" y="975.5" ></text>
</g>
<g >
<title>php_pcre_match_impl (60,606,060 samples, 0.11%)</title><rect x="954.0" y="1109" width="1.2" height="15.0" fill="rgb(243,212,31)" rx="2" ry="2" />
<text x="956.96" y="1119.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="539.4" y="709" width="0.2" height="15.0" fill="rgb(234,35,30)" rx="2" ry="2" />
<text x="542.38" y="719.5" ></text>
</g>
<g >
<title>_cond_resched (10,101,010 samples, 0.02%)</title><rect x="1090.6" y="869" width="0.2" height="15.0" fill="rgb(208,184,17)" rx="2" ry="2" />
<text x="1093.62" y="879.5" ></text>
</g>
<g >
<title>ZEND_INIT_ARRAY_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="347.1" y="1125" width="0.2" height="15.0" fill="rgb(245,93,29)" rx="2" ry="2" />
<text x="350.08" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_static_prop_helper_SPEC (10,101,010 samples, 0.02%)</title><rect x="1018.3" y="917" width="0.2" height="15.0" fill="rgb(228,16,3)" rx="2" ry="2" />
<text x="1021.33" y="927.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="979.8" y="1125" width="0.2" height="15.0" fill="rgb(229,216,28)" rx="2" ry="2" />
<text x="982.79" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1141" width="0.2" height="15.0" fill="rgb(220,34,24)" rx="2" ry="2" />
<text x="1105.08" y="1151.5" ></text>
</g>
<g >
<title>i_callback (10,101,010 samples, 0.02%)</title><rect x="950.4" y="933" width="0.2" height="15.0" fill="rgb(249,218,8)" rx="2" ry="2" />
<text x="953.42" y="943.5" ></text>
</g>
<g >
<title>schedule (30,303,030 samples, 0.05%)</title><rect x="214.8" y="1029" width="0.6" height="15.0" fill="rgb(220,200,50)" rx="2" ry="2" />
<text x="217.79" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="905.0" y="933" width="0.2" height="15.0" fill="rgb(236,45,16)" rx="2" ry="2" />
<text x="908.00" y="943.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="799.8" y="661" width="0.2" height="15.0" fill="rgb(244,197,50)" rx="2" ry="2" />
<text x="802.79" y="671.5" ></text>
</g>
<g >
<title>zif_ini_set (50,505,050 samples, 0.09%)</title><rect x="1040.8" y="1125" width="1.1" height="15.0" fill="rgb(254,30,13)" rx="2" ry="2" />
<text x="1043.83" y="1135.5" ></text>
</g>
<g >
<title>__d_lookup (232,323,230 samples, 0.41%)</title><rect x="412.1" y="933" width="4.8" height="15.0" fill="rgb(221,83,11)" rx="2" ry="2" />
<text x="415.08" y="943.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (727,272,720 samples, 1.27%)</title><rect x="904.6" y="1109" width="15.0" height="15.0" fill="rgb(253,196,0)" rx="2" ry="2" />
<text x="907.58" y="1119.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1029" width="0.2" height="15.0" fill="rgb(247,92,13)" rx="2" ry="2" />
<text x="205.50" y="1039.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (10,101,010 samples, 0.02%)</title><rect x="269.8" y="933" width="0.2" height="15.0" fill="rgb(230,32,47)" rx="2" ry="2" />
<text x="272.79" y="943.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="285.2" y="1093" width="0.2" height="15.0" fill="rgb(218,134,17)" rx="2" ry="2" />
<text x="288.21" y="1103.5" ></text>
</g>
<g >
<title>netif_skb_features (10,101,010 samples, 0.02%)</title><rect x="940.0" y="101" width="0.2" height="15.0" fill="rgb(252,47,42)" rx="2" ry="2" />
<text x="943.00" y="111.5" ></text>
</g>
<g >
<title>do_syscall_64 (404,040,400 samples, 0.71%)</title><rect x="1124.0" y="1173" width="8.3" height="15.0" fill="rgb(215,54,28)" rx="2" ry="2" />
<text x="1126.96" y="1183.5" ></text>
</g>
<g >
<title>do_sys_poll (60,606,060 samples, 0.11%)</title><rect x="1052.7" y="917" width="1.3" height="15.0" fill="rgb(216,228,46)" rx="2" ry="2" />
<text x="1055.71" y="927.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (30,303,030 samples, 0.05%)</title><rect x="1121.9" y="1061" width="0.6" height="15.0" fill="rgb(214,164,53)" rx="2" ry="2" />
<text x="1124.88" y="1071.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (20,202,020 samples, 0.04%)</title><rect x="920.8" y="1013" width="0.4" height="15.0" fill="rgb(237,120,3)" rx="2" ry="2" />
<text x="923.83" y="1023.5" ></text>
</g>
<g >
<title>__x64_sys_poll (50,505,050 samples, 0.09%)</title><rect x="935.2" y="869" width="1.0" height="15.0" fill="rgb(224,218,0)" rx="2" ry="2" />
<text x="938.21" y="879.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="270.8" y="1013" width="0.2" height="15.0" fill="rgb(227,28,16)" rx="2" ry="2" />
<text x="273.83" y="1023.5" ></text>
</g>
<g >
<title>zend_strpprintf_unchecked (10,101,010 samples, 0.02%)</title><rect x="888.5" y="1109" width="0.3" height="15.0" fill="rgb(213,35,46)" rx="2" ry="2" />
<text x="891.54" y="1119.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="526.5" y="949" width="0.2" height="15.0" fill="rgb(217,220,45)" rx="2" ry="2" />
<text x="529.46" y="959.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="307.7" y="1125" width="0.2" height="15.0" fill="rgb(249,155,41)" rx="2" ry="2" />
<text x="310.71" y="1135.5" ></text>
</g>
<g >
<title>detach_buf_split (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1013" width="0.2" height="15.0" fill="rgb(211,85,53)" rx="2" ry="2" />
<text x="1118.62" y="1023.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="805" width="0.4" height="15.0" fill="rgb(217,48,38)" rx="2" ry="2" />
<text x="1035.92" y="815.5" ></text>
</g>
<g >
<title>[libmemcached.so.11.0.0] (10,101,010 samples, 0.02%)</title><rect x="1145.0" y="1205" width="0.2" height="15.0" fill="rgb(231,86,24)" rx="2" ry="2" />
<text x="1148.00" y="1215.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="285.2" y="1077" width="0.2" height="15.0" fill="rgb(216,149,10)" rx="2" ry="2" />
<text x="288.21" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="534.8" y="773" width="0.2" height="15.0" fill="rgb(253,146,38)" rx="2" ry="2" />
<text x="537.79" y="783.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="524.0" y="853" width="0.2" height="15.0" fill="rgb(234,188,53)" rx="2" ry="2" />
<text x="526.96" y="863.5" ></text>
</g>
<g >
<title>inode_permission (30,303,030 samples, 0.05%)</title><rect x="526.5" y="981" width="0.6" height="15.0" fill="rgb(223,49,27)" rx="2" ry="2" />
<text x="529.46" y="991.5" ></text>
</g>
<g >
<title>kvm_clock_get_cycles (10,101,010 samples, 0.02%)</title><rect x="1179.2" y="1061" width="0.2" height="15.0" fill="rgb(247,56,10)" rx="2" ry="2" />
<text x="1182.17" y="1071.5" ></text>
</g>
<g >
<title>zif_header (20,202,020 samples, 0.04%)</title><rect x="1039.4" y="1125" width="0.4" height="15.0" fill="rgb(209,92,4)" rx="2" ry="2" />
<text x="1042.38" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (2,101,010,080 samples, 3.67%)</title><rect x="825.2" y="933" width="43.3" height="15.0" fill="rgb(241,109,4)" rx="2" ry="2" />
<text x="828.21" y="943.5" >zend..</text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="465.2" y="1109" width="0.2" height="15.0" fill="rgb(228,106,13)" rx="2" ry="2" />
<text x="468.21" y="1119.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="207.9" y="1077" width="0.2" height="15.0" fill="rgb(226,136,9)" rx="2" ry="2" />
<text x="210.92" y="1087.5" ></text>
</g>
<g >
<title>audit_filter_rules.constprop.21 (10,101,010 samples, 0.02%)</title><rect x="1054.2" y="885" width="0.2" height="15.0" fill="rgb(212,124,14)" rx="2" ry="2" />
<text x="1057.17" y="895.5" ></text>
</g>
<g >
<title>nf_confirm (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="837" width="0.3" height="15.0" fill="rgb(206,104,49)" rx="2" ry="2" />
<text x="1036.54" y="847.5" ></text>
</g>
<g >
<title>zif_array_map (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1125" width="0.4" height="15.0" fill="rgb(238,37,7)" rx="2" ry="2" />
<text x="1001.75" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="349.6" y="1029" width="0.2" height="15.0" fill="rgb(231,146,26)" rx="2" ry="2" />
<text x="352.58" y="1039.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (545,454,540 samples, 0.95%)</title><rect x="1151.5" y="709" width="11.2" height="15.0" fill="rgb(237,199,51)" rx="2" ry="2" />
<text x="1154.46" y="719.5" ></text>
</g>
<g >
<title>alloc_inode (30,303,030 samples, 0.05%)</title><rect x="1119.4" y="1077" width="0.6" height="15.0" fill="rgb(249,85,4)" rx="2" ry="2" />
<text x="1122.38" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="805.6" y="693" width="0.2" height="15.0" fill="rgb(236,139,34)" rx="2" ry="2" />
<text x="808.62" y="703.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="339.0" y="1029" width="0.2" height="15.0" fill="rgb(250,37,52)" rx="2" ry="2" />
<text x="341.96" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="303.3" y="789" width="0.2" height="15.0" fill="rgb(252,81,17)" rx="2" ry="2" />
<text x="306.33" y="799.5" ></text>
</g>
<g >
<title>__br_forward (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="581" width="0.4" height="15.0" fill="rgb(226,186,22)" rx="2" ry="2" />
<text x="1035.92" y="591.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="949" width="0.2" height="15.0" fill="rgb(227,119,14)" rx="2" ry="2" />
<text x="1091.33" y="959.5" ></text>
</g>
<g >
<title>try_fill_recv (10,101,010 samples, 0.02%)</title><rect x="805.2" y="725" width="0.2" height="15.0" fill="rgb(205,214,50)" rx="2" ry="2" />
<text x="808.21" y="735.5" ></text>
</g>
<g >
<title>exit_mmap (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1093" width="0.2" height="15.0" fill="rgb(216,67,3)" rx="2" ry="2" />
<text x="1175.08" y="1103.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="672.5" y="997" width="0.2" height="15.0" fill="rgb(246,90,15)" rx="2" ry="2" />
<text x="675.50" y="1007.5" ></text>
</g>
<g >
<title>ext4_xattr_get (20,202,020 samples, 0.04%)</title><rect x="956.9" y="805" width="0.4" height="15.0" fill="rgb(229,46,13)" rx="2" ry="2" />
<text x="959.88" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1173" width="0.2" height="15.0" fill="rgb(225,112,44)" rx="2" ry="2" />
<text x="1175.50" y="1183.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="654.2" y="869" width="0.2" height="15.0" fill="rgb(220,40,14)" rx="2" ry="2" />
<text x="657.17" y="879.5" ></text>
</g>
<g >
<title>memset (10,101,010 samples, 0.02%)</title><rect x="913.1" y="933" width="0.2" height="15.0" fill="rgb(250,179,32)" rx="2" ry="2" />
<text x="916.12" y="943.5" ></text>
</g>
<g >
<title>finish_task_switch (60,606,060 samples, 0.11%)</title><rect x="209.8" y="981" width="1.2" height="15.0" fill="rgb(241,113,38)" rx="2" ry="2" />
<text x="212.79" y="991.5" ></text>
</g>
<g >
<title>__ip_finish_output (30,303,030 samples, 0.05%)</title><rect x="1032.9" y="853" width="0.6" height="15.0" fill="rgb(219,0,45)" rx="2" ry="2" />
<text x="1035.92" y="863.5" ></text>
</g>
<g >
<title>zend_jit_fetch_obj_r_slow (10,101,010 samples, 0.02%)</title><rect x="502.9" y="1125" width="0.2" height="15.0" fill="rgb(230,87,47)" rx="2" ry="2" />
<text x="505.92" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="850.6" y="581" width="0.2" height="15.0" fill="rgb(253,216,53)" rx="2" ry="2" />
<text x="853.62" y="591.5" ></text>
</g>
<g >
<title>xbuf_format_converter (10,101,010 samples, 0.02%)</title><rect x="944.6" y="1013" width="0.2" height="15.0" fill="rgb(219,202,54)" rx="2" ry="2" />
<text x="947.58" y="1023.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="910.2" y="949" width="0.2" height="15.0" fill="rgb(222,136,5)" rx="2" ry="2" />
<text x="913.21" y="959.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="565" width="0.4" height="15.0" fill="rgb(235,43,22)" rx="2" ry="2" />
<text x="1035.92" y="575.5" ></text>
</g>
<g >
<title>__schedule (20,202,020 samples, 0.04%)</title><rect x="805.8" y="773" width="0.4" height="15.0" fill="rgb(239,159,3)" rx="2" ry="2" />
<text x="808.83" y="783.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="914.6" y="805" width="0.2" height="15.0" fill="rgb(240,38,23)" rx="2" ry="2" />
<text x="917.58" y="815.5" ></text>
</g>
<g >
<title>path_init (20,202,020 samples, 0.04%)</title><rect x="410.6" y="965" width="0.4" height="15.0" fill="rgb(238,195,0)" rx="2" ry="2" />
<text x="413.62" y="975.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="284.2" y="1077" width="0.2" height="15.0" fill="rgb(214,26,16)" rx="2" ry="2" />
<text x="287.17" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_str_update (10,101,010 samples, 0.02%)</title><rect x="1039.2" y="1093" width="0.2" height="15.0" fill="rgb(252,35,41)" rx="2" ry="2" />
<text x="1042.17" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (90,909,090 samples, 0.16%)</title><rect x="500.2" y="1125" width="1.9" height="15.0" fill="rgb(250,75,25)" rx="2" ry="2" />
<text x="503.21" y="1135.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1029" width="0.2" height="15.0" fill="rgb(237,93,3)" rx="2" ry="2" />
<text x="26.96" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="692.5" y="1093" width="0.6" height="15.0" fill="rgb(242,43,31)" rx="2" ry="2" />
<text x="695.50" y="1103.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (151,515,150 samples, 0.26%)</title><rect x="301.9" y="997" width="3.1" height="15.0" fill="rgb(241,44,48)" rx="2" ry="2" />
<text x="304.88" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="1103.8" y="1109" width="0.2" height="15.0" fill="rgb(212,84,5)" rx="2" ry="2" />
<text x="1106.75" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1157" width="0.2" height="15.0" fill="rgb(238,116,44)" rx="2" ry="2" />
<text x="35.29" y="1167.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (20,202,020 samples, 0.04%)</title><rect x="545.0" y="1093" width="0.4" height="15.0" fill="rgb(233,7,19)" rx="2" ry="2" />
<text x="548.00" y="1103.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="925.4" y="741" width="0.2" height="15.0" fill="rgb(212,111,23)" rx="2" ry="2" />
<text x="928.42" y="751.5" ></text>
</g>
<g >
<title>zendi_smart_strcmp (10,101,010 samples, 0.02%)</title><rect x="334.2" y="1093" width="0.2" height="15.0" fill="rgb(220,68,44)" rx="2" ry="2" />
<text x="337.17" y="1103.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (10,101,010 samples, 0.02%)</title><rect x="973.3" y="789" width="0.2" height="15.0" fill="rgb(221,86,40)" rx="2" ry="2" />
<text x="976.33" y="799.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="511.7" y="885" width="0.2" height="15.0" fill="rgb(230,223,26)" rx="2" ry="2" />
<text x="514.67" y="895.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (40,404,040 samples, 0.07%)</title><rect x="1018.3" y="981" width="0.9" height="15.0" fill="rgb(210,42,25)" rx="2" ry="2" />
<text x="1021.33" y="991.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="885" width="0.2" height="15.0" fill="rgb(248,227,16)" rx="2" ry="2" />
<text x="1127.17" y="895.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1093" width="0.2" height="15.0" fill="rgb(227,156,8)" rx="2" ry="2" />
<text x="445.29" y="1103.5" ></text>
</g>
<g >
<title>zend_call_known_function (50,505,050 samples, 0.09%)</title><rect x="799.4" y="837" width="1.0" height="15.0" fill="rgb(243,94,23)" rx="2" ry="2" />
<text x="802.38" y="847.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1048.3" y="1029" width="0.2" height="15.0" fill="rgb(210,192,46)" rx="2" ry="2" />
<text x="1051.33" y="1039.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="283.8" y="853" width="0.2" height="15.0" fill="rgb(226,175,19)" rx="2" ry="2" />
<text x="286.75" y="863.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find (40,404,040 samples, 0.07%)</title><rect x="274.6" y="1061" width="0.8" height="15.0" fill="rgb(224,175,41)" rx="2" ry="2" />
<text x="277.58" y="1071.5" ></text>
</g>
<g >
<title>__ip_finish_output (191,919,190 samples, 0.34%)</title><rect x="1127.3" y="965" width="3.9" height="15.0" fill="rgb(247,184,12)" rx="2" ry="2" />
<text x="1130.29" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="822.3" y="917" width="0.2" height="15.0" fill="rgb(223,111,8)" rx="2" ry="2" />
<text x="825.29" y="927.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="789.0" y="853" width="0.2" height="15.0" fill="rgb(244,30,19)" rx="2" ry="2" />
<text x="791.96" y="863.5" ></text>
</g>
<g >
<title>zend_objects_store_del (30,303,030 samples, 0.05%)</title><rect x="970.2" y="1093" width="0.6" height="15.0" fill="rgb(233,224,50)" rx="2" ry="2" />
<text x="973.21" y="1103.5" ></text>
</g>
<g >
<title>object_init_ex (20,202,020 samples, 0.04%)</title><rect x="518.5" y="1109" width="0.5" height="15.0" fill="rgb(205,133,49)" rx="2" ry="2" />
<text x="521.54" y="1119.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="949" width="0.2" height="15.0" fill="rgb(229,80,39)" rx="2" ry="2" />
<text x="1171.12" y="959.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="468.8" y="1077" width="0.2" height="15.0" fill="rgb(209,119,24)" rx="2" ry="2" />
<text x="471.75" y="1087.5" ></text>
</g>
<g >
<title>compile_filename (50,505,050 samples, 0.09%)</title><rect x="727.7" y="997" width="1.1" height="15.0" fill="rgb(240,109,16)" rx="2" ry="2" />
<text x="730.71" y="1007.5" ></text>
</g>
<g >
<title>br_handle_frame (141,414,140 samples, 0.25%)</title><rect x="1184.8" y="789" width="2.9" height="15.0" fill="rgb(231,194,47)" rx="2" ry="2" />
<text x="1187.79" y="799.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="475.2" y="1029" width="0.2" height="15.0" fill="rgb(245,216,42)" rx="2" ry="2" />
<text x="478.21" y="1039.5" ></text>
</g>
<g >
<title>zend_jit_fast_assign_concat_helper (20,202,020 samples, 0.04%)</title><rect x="311.0" y="1125" width="0.5" height="15.0" fill="rgb(232,186,21)" rx="2" ry="2" />
<text x="314.04" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="251.2" y="1093" width="0.3" height="15.0" fill="rgb(228,159,13)" rx="2" ry="2" />
<text x="254.25" y="1103.5" ></text>
</g>
<g >
<title>virtqueue_get_buf_ctx (10,101,010 samples, 0.02%)</title><rect x="641.9" y="949" width="0.2" height="15.0" fill="rgb(242,219,20)" rx="2" ry="2" />
<text x="644.88" y="959.5" ></text>
</g>
<g >
<title>zend_get_property_info (20,202,020 samples, 0.04%)</title><rect x="1083.3" y="1029" width="0.5" height="15.0" fill="rgb(211,113,41)" rx="2" ry="2" />
<text x="1086.33" y="1039.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="522.1" y="1061" width="0.2" height="15.0" fill="rgb(241,37,39)" rx="2" ry="2" />
<text x="525.08" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1061" width="0.2" height="15.0" fill="rgb(206,64,33)" rx="2" ry="2" />
<text x="893.00" y="1071.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (2,363,636,340 samples, 4.13%)</title><rect x="824.2" y="965" width="48.7" height="15.0" fill="rgb(217,2,30)" rx="2" ry="2" />
<text x="827.17" y="975.5" >zend..</text>
</g>
<g >
<title>__secure_computing (20,202,020 samples, 0.04%)</title><rect x="1121.2" y="1141" width="0.5" height="15.0" fill="rgb(239,168,24)" rx="2" ry="2" />
<text x="1124.25" y="1151.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="522.1" y="1077" width="0.2" height="15.0" fill="rgb(217,45,46)" rx="2" ry="2" />
<text x="525.08" y="1087.5" ></text>
</g>
<g >
<title>zend_vspprintf (20,202,020 samples, 0.04%)</title><rect x="944.4" y="1029" width="0.4" height="15.0" fill="rgb(212,34,20)" rx="2" ry="2" />
<text x="947.38" y="1039.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (30,303,030 samples, 0.05%)</title><rect x="38.8" y="1125" width="0.6" height="15.0" fill="rgb(237,2,50)" rx="2" ry="2" />
<text x="41.75" y="1135.5" ></text>
</g>
<g >
<title>zend_add_trait_method (20,202,020 samples, 0.04%)</title><rect x="745.2" y="965" width="0.4" height="15.0" fill="rgb(237,127,26)" rx="2" ry="2" />
<text x="748.21" y="975.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="821" width="0.2" height="15.0" fill="rgb(248,85,3)" rx="2" ry="2" />
<text x="1091.33" y="831.5" ></text>
</g>
<g >
<title>ep_item_poll.isra.16 (10,101,010 samples, 0.02%)</title><rect x="209.2" y="1013" width="0.2" height="15.0" fill="rgb(238,94,35)" rx="2" ry="2" />
<text x="212.17" y="1023.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (20,202,020 samples, 0.04%)</title><rect x="1165.0" y="869" width="0.4" height="15.0" fill="rgb(254,104,29)" rx="2" ry="2" />
<text x="1168.00" y="879.5" ></text>
</g>
<g >
<title>audit_copy_inode (171,717,170 samples, 0.30%)</title><rect x="375.2" y="965" width="3.6" height="15.0" fill="rgb(252,154,31)" rx="2" ry="2" />
<text x="378.21" y="975.5" ></text>
</g>
<g >
<title>lookup_fast (20,202,020 samples, 0.04%)</title><rect x="1008.5" y="885" width="0.5" height="15.0" fill="rgb(207,96,23)" rx="2" ry="2" />
<text x="1011.54" y="895.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="296.9" y="1061" width="0.2" height="15.0" fill="rgb(235,35,14)" rx="2" ry="2" />
<text x="299.88" y="1071.5" ></text>
</g>
<g >
<title>_emalloc (20,202,020 samples, 0.04%)</title><rect x="291.9" y="1125" width="0.4" height="15.0" fill="rgb(244,35,21)" rx="2" ry="2" />
<text x="294.88" y="1135.5" ></text>
</g>
<g >
<title>virtnet_poll_tx (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="741" width="0.2" height="15.0" fill="rgb(208,182,7)" rx="2" ry="2" />
<text x="1056.33" y="751.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (10,101,010 samples, 0.02%)</title><rect x="465.6" y="1125" width="0.2" height="15.0" fill="rgb(217,187,6)" rx="2" ry="2" />
<text x="468.62" y="1135.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (90,909,090 samples, 0.16%)</title><rect x="777.5" y="1029" width="1.9" height="15.0" fill="rgb(218,220,23)" rx="2" ry="2" />
<text x="780.50" y="1039.5" ></text>
</g>
<g >
<title>zend_array_destroy (70,707,070 samples, 0.12%)</title><rect x="969.4" y="1109" width="1.4" height="15.0" fill="rgb(223,169,4)" rx="2" ry="2" />
<text x="972.38" y="1119.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (20,202,020 samples, 0.04%)</title><rect x="1179.0" y="1093" width="0.4" height="15.0" fill="rgb(213,61,19)" rx="2" ry="2" />
<text x="1181.96" y="1103.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="342.3" y="1093" width="0.2" height="15.0" fill="rgb(249,184,32)" rx="2" ry="2" />
<text x="345.29" y="1103.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="725" width="0.2" height="15.0" fill="rgb(247,138,15)" rx="2" ry="2" />
<text x="1091.96" y="735.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="881.2" y="661" width="0.3" height="15.0" fill="rgb(241,226,44)" rx="2" ry="2" />
<text x="884.25" y="671.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="539.6" y="1045" width="0.2" height="15.0" fill="rgb(223,31,5)" rx="2" ry="2" />
<text x="542.58" y="1055.5" ></text>
</g>
<g >
<title>php_mysqlnd_scramble_sha2 (10,101,010 samples, 0.02%)</title><rect x="929.4" y="997" width="0.2" height="15.0" fill="rgb(254,143,8)" rx="2" ry="2" />
<text x="932.38" y="1007.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="377.9" y="837" width="0.2" height="15.0" fill="rgb(213,17,18)" rx="2" ry="2" />
<text x="380.92" y="847.5" ></text>
</g>
<g >
<title>zend_string_equal_val (10,101,010 samples, 0.02%)</title><rect x="1019.4" y="1077" width="0.2" height="15.0" fill="rgb(242,169,34)" rx="2" ry="2" />
<text x="1022.38" y="1087.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="1032.1" y="965" width="0.2" height="15.0" fill="rgb(252,44,17)" rx="2" ry="2" />
<text x="1035.08" y="975.5" ></text>
</g>
<g >
<title>_emalloc_320 (111,111,110 samples, 0.19%)</title><rect x="69.6" y="1093" width="2.3" height="15.0" fill="rgb(231,39,26)" rx="2" ry="2" />
<text x="72.58" y="1103.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (10,101,010 samples, 0.02%)</title><rect x="1166.7" y="1029" width="0.2" height="15.0" fill="rgb(222,68,8)" rx="2" ry="2" />
<text x="1169.67" y="1039.5" ></text>
</g>
<g >
<title>zend_include_or_eval (161,616,160 samples, 0.28%)</title><rect x="745.6" y="1013" width="3.4" height="15.0" fill="rgb(243,133,8)" rx="2" ry="2" />
<text x="748.62" y="1023.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (20,202,020 samples, 0.04%)</title><rect x="926.5" y="773" width="0.4" height="15.0" fill="rgb(244,81,23)" rx="2" ry="2" />
<text x="929.46" y="783.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="742.7" y="677" width="0.2" height="15.0" fill="rgb(235,101,38)" rx="2" ry="2" />
<text x="745.71" y="687.5" ></text>
</g>
<g >
<title>TRACE-161$Wikimedia\ScopedCallback::__destruct$95 (30,303,030 samples, 0.05%)</title><rect x="984.2" y="1077" width="0.6" height="15.0" fill="rgb(238,184,16)" rx="2" ry="2" />
<text x="987.17" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1077" width="0.2" height="15.0" fill="rgb(247,47,22)" rx="2" ry="2" />
<text x="1095.08" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="799.0" y="741" width="0.2" height="15.0" fill="rgb(233,212,8)" rx="2" ry="2" />
<text x="801.96" y="751.5" ></text>
</g>
<g >
<title>php_output_write (101,010,100 samples, 0.18%)</title><rect x="1030.8" y="1077" width="2.1" height="15.0" fill="rgb(232,113,39)" rx="2" ry="2" />
<text x="1033.83" y="1087.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="899.4" y="917" width="0.2" height="15.0" fill="rgb(251,208,12)" rx="2" ry="2" />
<text x="902.38" y="927.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="466.2" y="1125" width="0.3" height="15.0" fill="rgb(210,37,43)" rx="2" ry="2" />
<text x="469.25" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="705.4" y="1029" width="0.2" height="15.0" fill="rgb(236,24,11)" rx="2" ry="2" />
<text x="708.42" y="1039.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="500.8" y="853" width="0.2" height="15.0" fill="rgb(247,108,25)" rx="2" ry="2" />
<text x="503.83" y="863.5" ></text>
</g>
<g >
<title>tcp_ack (10,101,010 samples, 0.02%)</title><rect x="654.2" y="821" width="0.2" height="15.0" fill="rgb(239,105,8)" rx="2" ry="2" />
<text x="657.17" y="831.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (20,202,020 samples, 0.04%)</title><rect x="344.2" y="1125" width="0.4" height="15.0" fill="rgb(243,52,8)" rx="2" ry="2" />
<text x="347.17" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="768.5" y="1013" width="0.3" height="15.0" fill="rgb(220,202,2)" rx="2" ry="2" />
<text x="771.54" y="1023.5" ></text>
</g>
<g >
<title>__legitimize_mnt (20,202,020 samples, 0.04%)</title><rect x="394.4" y="917" width="0.4" height="15.0" fill="rgb(229,89,22)" rx="2" ry="2" />
<text x="397.38" y="927.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (242,424,240 samples, 0.42%)</title><rect x="300.0" y="1125" width="5.0" height="15.0" fill="rgb(209,112,12)" rx="2" ry="2" />
<text x="303.00" y="1135.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="1083.3" y="853" width="0.2" height="15.0" fill="rgb(253,144,9)" rx="2" ry="2" />
<text x="1086.33" y="863.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="442.3" y="1077" width="0.2" height="15.0" fill="rgb(227,98,0)" rx="2" ry="2" />
<text x="445.29" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="799.8" y="613" width="0.2" height="15.0" fill="rgb(217,132,9)" rx="2" ry="2" />
<text x="802.79" y="623.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="799.8" y="693" width="0.2" height="15.0" fill="rgb(206,174,15)" rx="2" ry="2" />
<text x="802.79" y="703.5" ></text>
</g>
<g >
<title>__poll (111,111,110 samples, 0.19%)</title><rect x="935.0" y="917" width="2.3" height="15.0" fill="rgb(234,178,17)" rx="2" ry="2" />
<text x="938.00" y="927.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="676.2" y="965" width="0.3" height="15.0" fill="rgb(247,149,53)" rx="2" ry="2" />
<text x="679.25" y="975.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="731.2" y="901" width="0.3" height="15.0" fill="rgb(219,124,37)" rx="2" ry="2" />
<text x="734.25" y="911.5" ></text>
</g>
<g >
<title>timelib_strtotime (20,202,020 samples, 0.04%)</title><rect x="490.6" y="1093" width="0.4" height="15.0" fill="rgb(238,74,16)" rx="2" ry="2" />
<text x="493.62" y="1103.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="1158.3" y="485" width="0.2" height="15.0" fill="rgb(210,131,15)" rx="2" ry="2" />
<text x="1161.33" y="495.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="905.0" y="949" width="0.2" height="15.0" fill="rgb(212,95,12)" rx="2" ry="2" />
<text x="908.00" y="959.5" ></text>
</g>
<g >
<title>zend_accel_load_script (30,303,030 samples, 0.05%)</title><rect x="699.0" y="1061" width="0.6" height="15.0" fill="rgb(250,137,7)" rx="2" ry="2" />
<text x="701.96" y="1071.5" ></text>
</g>
<g >
<title>inet6_sendmsg (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="933" width="2.7" height="15.0" fill="rgb(222,67,45)" rx="2" ry="2" />
<text x="1026.96" y="943.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="195.8" y="1093" width="0.2" height="15.0" fill="rgb(206,42,29)" rx="2" ry="2" />
<text x="198.83" y="1103.5" ></text>
</g>
<g >
<title>skb_release_data (10,101,010 samples, 0.02%)</title><rect x="806.0" y="597" width="0.2" height="15.0" fill="rgb(254,62,25)" rx="2" ry="2" />
<text x="809.04" y="607.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="1001.7" y="1077" width="0.2" height="15.0" fill="rgb(244,209,23)" rx="2" ry="2" />
<text x="1004.67" y="1087.5" ></text>
</g>
<g >
<title>zend_std_get_property_ptr_ptr (20,202,020 samples, 0.04%)</title><rect x="448.1" y="1013" width="0.4" height="15.0" fill="rgb(254,150,30)" rx="2" ry="2" />
<text x="451.12" y="1023.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="789" width="0.2" height="15.0" fill="rgb(215,143,40)" rx="2" ry="2" />
<text x="1091.33" y="799.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="295.6" y="1013" width="0.2" height="15.0" fill="rgb(236,21,50)" rx="2" ry="2" />
<text x="298.62" y="1023.5" ></text>
</g>
<g >
<title>JIT$$hybrid_loop_trace_counter (10,101,010 samples, 0.02%)</title><rect x="905.0" y="1061" width="0.2" height="15.0" fill="rgb(230,121,45)" rx="2" ry="2" />
<text x="908.00" y="1071.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="950.4" y="1013" width="0.2" height="15.0" fill="rgb(243,171,50)" rx="2" ry="2" />
<text x="953.42" y="1023.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="850.6" y="325" width="0.2" height="15.0" fill="rgb(223,99,3)" rx="2" ry="2" />
<text x="853.62" y="335.5" ></text>
</g>
<g >
<title>php_pcre_replace_func_impl (10,101,010 samples, 0.02%)</title><rect x="1055.8" y="1077" width="0.2" height="15.0" fill="rgb(214,185,47)" rx="2" ry="2" />
<text x="1058.83" y="1087.5" ></text>
</g>
<g >
<title>zend_std_get_constructor (30,303,030 samples, 0.05%)</title><rect x="885.8" y="1109" width="0.7" height="15.0" fill="rgb(206,184,14)" rx="2" ry="2" />
<text x="888.83" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1109" width="0.2" height="15.0" fill="rgb(225,178,37)" rx="2" ry="2" />
<text x="1118.42" y="1119.5" ></text>
</g>
<g >
<title>php_pcre2_pattern_info (20,202,020 samples, 0.04%)</title><rect x="306.5" y="1077" width="0.4" height="15.0" fill="rgb(208,72,40)" rx="2" ry="2" />
<text x="309.46" y="1087.5" ></text>
</g>
<g >
<title>zend_include_or_eval (121,212,120 samples, 0.21%)</title><rect x="708.1" y="1109" width="2.5" height="15.0" fill="rgb(217,143,40)" rx="2" ry="2" />
<text x="711.12" y="1119.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (10,101,010 samples, 0.02%)</title><rect x="395.4" y="661" width="0.2" height="15.0" fill="rgb(237,183,7)" rx="2" ry="2" />
<text x="398.42" y="671.5" ></text>
</g>
<g >
<title>do_timer_create (10,101,010 samples, 0.02%)</title><rect x="1189.4" y="1157" width="0.2" height="15.0" fill="rgb(212,42,16)" rx="2" ry="2" />
<text x="1192.38" y="1167.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="1140.2" y="1173" width="0.2" height="15.0" fill="rgb(235,211,45)" rx="2" ry="2" />
<text x="1143.21" y="1183.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (30,303,030 samples, 0.05%)</title><rect x="293.1" y="1109" width="0.7" height="15.0" fill="rgb(227,167,9)" rx="2" ry="2" />
<text x="296.12" y="1119.5" ></text>
</g>
<g >
<title>filename_lookup (90,909,090 samples, 0.16%)</title><rect x="774.6" y="933" width="1.9" height="15.0" fill="rgb(223,110,36)" rx="2" ry="2" />
<text x="777.58" y="943.5" ></text>
</g>
<g >
<title>__lookup_mnt (90,909,090 samples, 0.16%)</title><rect x="408.1" y="885" width="1.9" height="15.0" fill="rgb(252,46,1)" rx="2" ry="2" />
<text x="411.12" y="895.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="914.6" y="997" width="0.2" height="15.0" fill="rgb(222,209,9)" rx="2" ry="2" />
<text x="917.58" y="1007.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1141" width="0.3" height="15.0" fill="rgb(230,17,36)" rx="2" ry="2" />
<text x="1174.25" y="1151.5" ></text>
</g>
<g >
<title>access (60,606,060 samples, 0.11%)</title><rect x="500.4" y="1029" width="1.3" height="15.0" fill="rgb(233,21,3)" rx="2" ry="2" />
<text x="503.42" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (616,161,610 samples, 1.08%)</title><rect x="1151.5" y="789" width="12.7" height="15.0" fill="rgb(215,179,0)" rx="2" ry="2" />
<text x="1154.46" y="799.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (121,212,120 samples, 0.21%)</title><rect x="27.5" y="1189" width="2.5" height="15.0" fill="rgb(242,161,35)" rx="2" ry="2" />
<text x="30.50" y="1199.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_CONST_UNUSED_HANDLER (171,717,170 samples, 0.30%)</title><rect x="532.1" y="1125" width="3.5" height="15.0" fill="rgb(252,183,17)" rx="2" ry="2" />
<text x="535.08" y="1135.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (60,606,060 samples, 0.11%)</title><rect x="766.9" y="1061" width="1.2" height="15.0" fill="rgb(207,187,4)" rx="2" ry="2" />
<text x="769.88" y="1071.5" ></text>
</g>
<g >
<title>JIT$$leave_function (10,101,010 samples, 0.02%)</title><rect x="268.5" y="1013" width="0.3" height="15.0" fill="rgb(207,192,26)" rx="2" ry="2" />
<text x="271.54" y="1023.5" ></text>
</g>
<g >
<title>__send (10,101,010 samples, 0.02%)</title><rect x="1118.1" y="1205" width="0.2" height="15.0" fill="rgb(240,109,30)" rx="2" ry="2" />
<text x="1121.12" y="1215.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1045" width="0.2" height="15.0" fill="rgb(234,23,20)" rx="2" ry="2" />
<text x="691.96" y="1055.5" ></text>
</g>
<g >
<title>zend_is_auto_global (131,313,130 samples, 0.23%)</title><rect x="699.6" y="1045" width="2.7" height="15.0" fill="rgb(217,145,22)" rx="2" ry="2" />
<text x="702.58" y="1055.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="378.5" y="917" width="0.3" height="15.0" fill="rgb(210,195,43)" rx="2" ry="2" />
<text x="381.54" y="927.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="641.7" y="1013" width="0.4" height="15.0" fill="rgb(206,42,31)" rx="2" ry="2" />
<text x="644.67" y="1023.5" ></text>
</g>
<g >
<title>php_mysqlnd_greet_read (40,404,040 samples, 0.07%)</title><rect x="929.6" y="1029" width="0.8" height="15.0" fill="rgb(221,104,1)" rx="2" ry="2" />
<text x="932.58" y="1039.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="949.0" y="981" width="0.2" height="15.0" fill="rgb(235,181,43)" rx="2" ry="2" />
<text x="951.96" y="991.5" ></text>
</g>
<g >
<title>JIT$$hybrid_func_trace_counter (10,101,010 samples, 0.02%)</title><rect x="675.2" y="1045" width="0.2" height="15.0" fill="rgb(246,207,28)" rx="2" ry="2" />
<text x="678.21" y="1055.5" ></text>
</g>
<g >
<title>inet_hash_connect (30,303,030 samples, 0.05%)</title><rect x="1124.2" y="1077" width="0.6" height="15.0" fill="rgb(206,161,31)" rx="2" ry="2" />
<text x="1127.17" y="1087.5" ></text>
</g>
<g >
<title>inode_permission (10,101,010 samples, 0.02%)</title><rect x="205.4" y="1093" width="0.2" height="15.0" fill="rgb(210,208,16)" rx="2" ry="2" />
<text x="208.42" y="1103.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (262,626,260 samples, 0.46%)</title><rect x="316.2" y="1125" width="5.5" height="15.0" fill="rgb(253,103,26)" rx="2" ry="2" />
<text x="319.25" y="1135.5" ></text>
</g>
<g >
<title>vp_notify (50,505,050 samples, 0.09%)</title><rect x="1128.1" y="373" width="1.1" height="15.0" fill="rgb(225,122,7)" rx="2" ry="2" />
<text x="1131.12" y="383.5" ></text>
</g>
<g >
<title>__netif_receive_skb (161,616,160 samples, 0.28%)</title><rect x="1127.5" y="837" width="3.3" height="15.0" fill="rgb(207,158,20)" rx="2" ry="2" />
<text x="1130.50" y="847.5" ></text>
</g>
<g >
<title>vfs_write (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="1013" width="2.7" height="15.0" fill="rgb(247,176,32)" rx="2" ry="2" />
<text x="1026.96" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="822.7" y="917" width="0.2" height="15.0" fill="rgb(229,27,4)" rx="2" ry="2" />
<text x="825.71" y="927.5" ></text>
</g>
<g >
<title>virtqueue_get_buf_ctx (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1029" width="0.2" height="15.0" fill="rgb(222,218,1)" rx="2" ry="2" />
<text x="1118.62" y="1039.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="899.6" y="1109" width="0.2" height="15.0" fill="rgb(240,223,14)" rx="2" ry="2" />
<text x="902.58" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="792.1" y="997" width="0.2" height="15.0" fill="rgb(240,227,37)" rx="2" ry="2" />
<text x="795.08" y="1007.5" ></text>
</g>
<g >
<title>zend_mm_alloc_large (10,101,010 samples, 0.02%)</title><rect x="248.8" y="1061" width="0.2" height="15.0" fill="rgb(244,123,11)" rx="2" ry="2" />
<text x="251.75" y="1071.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="395.4" y="821" width="0.2" height="15.0" fill="rgb(209,84,42)" rx="2" ry="2" />
<text x="398.42" y="831.5" ></text>
</g>
<g >
<title>process_backlog (101,010,100 samples, 0.18%)</title><rect x="939.4" y="565" width="2.1" height="15.0" fill="rgb(240,108,4)" rx="2" ry="2" />
<text x="942.38" y="575.5" ></text>
</g>
<g >
<title>fcgi_get_last_client_ip (10,101,010 samples, 0.02%)</title><rect x="207.7" y="1173" width="0.2" height="15.0" fill="rgb(217,49,41)" rx="2" ry="2" />
<text x="210.71" y="1183.5" ></text>
</g>
<g >
<title>gc_remove_from_buffer (10,101,010 samples, 0.02%)</title><rect x="970.4" y="1045" width="0.2" height="15.0" fill="rgb(236,89,10)" rx="2" ry="2" />
<text x="973.42" y="1055.5" ></text>
</g>
<g >
<title>auditd_test_task (10,101,010 samples, 0.02%)</title><rect x="1141.9" y="1125" width="0.2" height="15.0" fill="rgb(217,123,5)" rx="2" ry="2" />
<text x="1144.88" y="1135.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="708.1" y="1077" width="0.2" height="15.0" fill="rgb(247,178,34)" rx="2" ry="2" />
<text x="711.12" y="1087.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="1010.2" y="965" width="0.2" height="15.0" fill="rgb(234,2,38)" rx="2" ry="2" />
<text x="1013.21" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="619.0" y="949" width="0.2" height="15.0" fill="rgb(233,228,37)" rx="2" ry="2" />
<text x="621.96" y="959.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="283.1" y="949" width="0.2" height="15.0" fill="rgb(254,202,50)" rx="2" ry="2" />
<text x="286.12" y="959.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="517.7" y="1013" width="0.2" height="15.0" fill="rgb(230,113,19)" rx="2" ry="2" />
<text x="520.71" y="1023.5" ></text>
</g>
<g >
<title>lockref_get_not_dead (10,101,010 samples, 0.02%)</title><rect x="394.8" y="917" width="0.2" height="15.0" fill="rgb(237,137,43)" rx="2" ry="2" />
<text x="397.79" y="927.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="731.2" y="869" width="0.3" height="15.0" fill="rgb(227,15,24)" rx="2" ry="2" />
<text x="734.25" y="879.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="914.6" y="789" width="0.2" height="15.0" fill="rgb(226,51,16)" rx="2" ry="2" />
<text x="917.58" y="799.5" ></text>
</g>
<g >
<title>putname (10,101,010 samples, 0.02%)</title><rect x="914.4" y="965" width="0.2" height="15.0" fill="rgb(212,139,4)" rx="2" ry="2" />
<text x="917.38" y="975.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_SPEC_CV_CONST_RETVAL_UNUSED_HANDLER (30,303,030 samples, 0.05%)</title><rect x="547.3" y="1141" width="0.6" height="15.0" fill="rgb(246,58,39)" rx="2" ry="2" />
<text x="550.29" y="1151.5" ></text>
</g>
<g >
<title>pipe_read (30,303,030 samples, 0.05%)</title><rect x="217.3" y="997" width="0.6" height="15.0" fill="rgb(250,72,27)" rx="2" ry="2" />
<text x="220.29" y="1007.5" ></text>
</g>
<g >
<title>dev_queue_xmit (90,909,090 samples, 0.16%)</title><rect x="1127.5" y="469" width="1.9" height="15.0" fill="rgb(245,167,31)" rx="2" ry="2" />
<text x="1130.50" y="479.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_in (20,202,020 samples, 0.04%)</title><rect x="1130.4" y="741" width="0.4" height="15.0" fill="rgb(234,125,11)" rx="2" ry="2" />
<text x="1133.42" y="751.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (10,101,010 samples, 0.02%)</title><rect x="523.5" y="1109" width="0.3" height="15.0" fill="rgb(246,140,1)" rx="2" ry="2" />
<text x="526.54" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="294.8" y="1093" width="0.2" height="15.0" fill="rgb(217,178,19)" rx="2" ry="2" />
<text x="297.79" y="1103.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (545,454,540 samples, 0.95%)</title><rect x="1151.5" y="725" width="11.2" height="15.0" fill="rgb(243,49,5)" rx="2" ry="2" />
<text x="1154.46" y="735.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="901" width="0.3" height="15.0" fill="rgb(239,57,37)" rx="2" ry="2" />
<text x="1134.25" y="911.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="297.9" y="1125" width="0.2" height="15.0" fill="rgb(208,210,50)" rx="2" ry="2" />
<text x="300.92" y="1135.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (10,101,010 samples, 0.02%)</title><rect x="499.4" y="1077" width="0.2" height="15.0" fill="rgb(213,225,21)" rx="2" ry="2" />
<text x="502.38" y="1087.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="881.2" y="357" width="0.3" height="15.0" fill="rgb(250,56,4)" rx="2" ry="2" />
<text x="884.25" y="367.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="390.2" y="821" width="0.2" height="15.0" fill="rgb(247,49,23)" rx="2" ry="2" />
<text x="393.21" y="831.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1080.8" y="965" width="0.2" height="15.0" fill="rgb(211,93,27)" rx="2" ry="2" />
<text x="1083.83" y="975.5" ></text>
</g>
<g >
<title>finish_task_switch (50,505,050 samples, 0.09%)</title><rect x="961.7" y="1045" width="1.0" height="15.0" fill="rgb(220,145,41)" rx="2" ry="2" />
<text x="964.67" y="1055.5" ></text>
</g>
<g >
<title>fpm_run (525,252,520 samples, 0.92%)</title><rect x="207.9" y="1173" width="10.9" height="15.0" fill="rgb(221,91,45)" rx="2" ry="2" />
<text x="210.92" y="1183.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (151,515,150 samples, 0.26%)</title><rect x="1184.6" y="885" width="3.1" height="15.0" fill="rgb(233,168,38)" rx="2" ry="2" />
<text x="1187.58" y="895.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="744.0" y="709" width="0.2" height="15.0" fill="rgb(216,128,39)" rx="2" ry="2" />
<text x="746.96" y="719.5" ></text>
</g>
<g >
<title>get_acl (10,101,010 samples, 0.02%)</title><rect x="797.1" y="725" width="0.2" height="15.0" fill="rgb(218,8,35)" rx="2" ry="2" />
<text x="800.08" y="735.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1029" width="0.2" height="15.0" fill="rgb(232,229,2)" rx="2" ry="2" />
<text x="906.96" y="1039.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="835.4" y="853" width="0.2" height="15.0" fill="rgb(234,149,54)" rx="2" ry="2" />
<text x="838.42" y="863.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="288.3" y="1093" width="0.2" height="15.0" fill="rgb(220,174,13)" rx="2" ry="2" />
<text x="291.33" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="641.7" y="1029" width="0.4" height="15.0" fill="rgb(230,85,14)" rx="2" ry="2" />
<text x="644.67" y="1039.5" ></text>
</g>
<g >
<title>nf_ct_deliver_cached_events (10,101,010 samples, 0.02%)</title><rect x="193.8" y="773" width="0.2" height="15.0" fill="rgb(246,169,42)" rx="2" ry="2" />
<text x="196.75" y="783.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (10,101,010 samples, 0.02%)</title><rect x="499.0" y="1077" width="0.2" height="15.0" fill="rgb(225,6,3)" rx="2" ry="2" />
<text x="501.96" y="1087.5" ></text>
</g>
<g >
<title>arp_xmit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="853" width="0.3" height="15.0" fill="rgb(230,169,47)" rx="2" ry="2" />
<text x="1044.25" y="863.5" ></text>
</g>
<g >
<title>spl_perform_autoload (5,535,353,480 samples, 9.68%)</title><rect x="769.6" y="1077" width="114.2" height="15.0" fill="rgb(205,60,20)" rx="2" ry="2" />
<text x="772.58" y="1087.5" >spl_perform_au..</text>
</g>
<g >
<title>zend_is_callable_check_class (10,101,010 samples, 0.02%)</title><rect x="1042.5" y="1077" width="0.2" height="15.0" fill="rgb(232,184,48)" rx="2" ry="2" />
<text x="1045.50" y="1087.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="453" width="0.2" height="15.0" fill="rgb(254,64,40)" rx="2" ry="2" />
<text x="1170.08" y="463.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="442.3" y="965" width="0.2" height="15.0" fill="rgb(224,48,31)" rx="2" ry="2" />
<text x="445.29" y="975.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="437" width="0.2" height="15.0" fill="rgb(220,227,21)" rx="2" ry="2" />
<text x="1170.08" y="447.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="442.3" y="933" width="0.2" height="15.0" fill="rgb(225,203,18)" rx="2" ry="2" />
<text x="445.29" y="943.5" ></text>
</g>
<g >
<title>zend_hash_find (151,515,150 samples, 0.26%)</title><rect x="991.5" y="1109" width="3.1" height="15.0" fill="rgb(208,42,42)" rx="2" ry="2" />
<text x="994.46" y="1119.5" ></text>
</g>
<g >
<title>alloc_set_pte (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="997" width="0.2" height="15.0" fill="rgb(205,180,0)" rx="2" ry="2" />
<text x="1106.96" y="1007.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (50,505,050 samples, 0.09%)</title><rect x="913.5" y="997" width="1.1" height="15.0" fill="rgb(228,153,27)" rx="2" ry="2" />
<text x="916.54" y="1007.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="535.4" y="1045" width="0.2" height="15.0" fill="rgb(219,196,39)" rx="2" ry="2" />
<text x="538.42" y="1055.5" ></text>
</g>
<g >
<title>getaddrinfo (20,202,020 samples, 0.04%)</title><rect x="943.3" y="901" width="0.5" height="15.0" fill="rgb(228,29,48)" rx="2" ry="2" />
<text x="946.33" y="911.5" ></text>
</g>
<g >
<title>TRACE-352$Fandom\Includes\Database\FandomLoadBalancerFactory::forEachLB$127 (20,202,020 samples, 0.04%)</title><rect x="497.3" y="1141" width="0.4" height="15.0" fill="rgb(227,149,3)" rx="2" ry="2" />
<text x="500.29" y="1151.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="853" width="0.3" height="15.0" fill="rgb(237,48,6)" rx="2" ry="2" />
<text x="1134.25" y="863.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1007.1" y="901" width="0.2" height="15.0" fill="rgb(206,78,38)" rx="2" ry="2" />
<text x="1010.08" y="911.5" ></text>
</g>
<g >
<title>__x64_sys_rt_sigaction (10,101,010 samples, 0.02%)</title><rect x="1103.1" y="1109" width="0.2" height="15.0" fill="rgb(206,157,10)" rx="2" ry="2" />
<text x="1106.12" y="1119.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="683.8" y="933" width="0.2" height="15.0" fill="rgb(235,121,48)" rx="2" ry="2" />
<text x="686.75" y="943.5" ></text>
</g>
<g >
<title>zif_array_map (70,707,070 samples, 0.12%)</title><rect x="544.4" y="1125" width="1.4" height="15.0" fill="rgb(224,115,23)" rx="2" ry="2" />
<text x="547.38" y="1135.5" ></text>
</g>
<g >
<title>zend_accel_load_script (121,212,120 samples, 0.21%)</title><rect x="804.4" y="853" width="2.5" height="15.0" fill="rgb(206,187,9)" rx="2" ry="2" />
<text x="807.38" y="863.5" ></text>
</g>
<g >
<title>execute_ex (10,101,010 samples, 0.02%)</title><rect x="922.5" y="837" width="0.2" height="15.0" fill="rgb(232,198,2)" rx="2" ry="2" />
<text x="925.50" y="847.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="339.4" y="933" width="0.2" height="15.0" fill="rgb(219,141,21)" rx="2" ry="2" />
<text x="342.38" y="943.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (20,202,020 samples, 0.04%)</title><rect x="296.7" y="1109" width="0.4" height="15.0" fill="rgb(239,202,22)" rx="2" ry="2" />
<text x="299.67" y="1119.5" ></text>
</g>
<g >
<title>TRACE-23$wfLoadExtension$48 (10,101,010 samples, 0.02%)</title><rect x="450.0" y="1141" width="0.2" height="15.0" fill="rgb(254,229,10)" rx="2" ry="2" />
<text x="453.00" y="1151.5" ></text>
</g>
<g >
<title>run_timer_softirq (10,101,010 samples, 0.02%)</title><rect x="1115.2" y="1029" width="0.2" height="15.0" fill="rgb(227,86,30)" rx="2" ry="2" />
<text x="1118.21" y="1039.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="693" width="1.7" height="15.0" fill="rgb(215,91,44)" rx="2" ry="2" />
<text x="1028.00" y="703.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="302.5" y="837" width="0.2" height="15.0" fill="rgb(249,14,35)" rx="2" ry="2" />
<text x="305.50" y="847.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="1176.0" y="1173" width="0.2" height="15.0" fill="rgb(210,94,15)" rx="2" ry="2" />
<text x="1179.04" y="1183.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1093" width="0.2" height="15.0" fill="rgb(210,96,20)" rx="2" ry="2" />
<text x="297.38" y="1103.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_connect_pub (1,020,202,010 samples, 1.78%)</title><rect x="923.8" y="1093" width="21.0" height="15.0" fill="rgb(217,146,44)" rx="2" ry="2" />
<text x="926.75" y="1103.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="902.3" y="1013" width="0.2" height="15.0" fill="rgb(211,123,32)" rx="2" ry="2" />
<text x="905.29" y="1023.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="861.0" y="613" width="0.2" height="15.0" fill="rgb(243,170,3)" rx="2" ry="2" />
<text x="864.04" y="623.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="1121.2" y="1125" width="0.3" height="15.0" fill="rgb(250,195,1)" rx="2" ry="2" />
<text x="1124.25" y="1135.5" ></text>
</g>
<g >
<title>OnUpdate_zlib_output_compression (10,101,010 samples, 0.02%)</title><rect x="1030.4" y="965" width="0.2" height="15.0" fill="rgb(245,65,45)" rx="2" ry="2" />
<text x="1033.42" y="975.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_send_close_pub (131,313,130 samples, 0.23%)</title><rect x="1088.1" y="1013" width="2.7" height="15.0" fill="rgb(221,131,21)" rx="2" ry="2" />
<text x="1091.12" y="1023.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (20,202,020 samples, 0.04%)</title><rect x="184.2" y="1045" width="0.4" height="15.0" fill="rgb(205,167,25)" rx="2" ry="2" />
<text x="187.17" y="1055.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="1058.5" y="1109" width="0.3" height="15.0" fill="rgb(225,125,19)" rx="2" ry="2" />
<text x="1061.54" y="1119.5" ></text>
</g>
<g >
<title>zif_strrpos (10,101,010 samples, 0.02%)</title><rect x="1005.0" y="1045" width="0.2" height="15.0" fill="rgb(254,124,23)" rx="2" ry="2" />
<text x="1008.00" y="1055.5" ></text>
</g>
<g >
<title>ovl_xattr_get (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="997" width="0.2" height="15.0" fill="rgb(235,1,30)" rx="2" ry="2" />
<text x="1124.67" y="1007.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="339.6" y="965" width="0.2" height="15.0" fill="rgb(223,169,4)" rx="2" ry="2" />
<text x="342.58" y="975.5" ></text>
</g>
<g >
<title>zif_stream_set_chunk_size (10,101,010 samples, 0.02%)</title><rect x="1059.0" y="1125" width="0.2" height="15.0" fill="rgb(223,177,25)" rx="2" ry="2" />
<text x="1061.96" y="1135.5" ></text>
</g>
<g >
<title>zm_activate_spl (10,101,010 samples, 0.02%)</title><rect x="1106.5" y="1157" width="0.2" height="15.0" fill="rgb(238,15,46)" rx="2" ry="2" />
<text x="1109.46" y="1167.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="271.5" y="1077" width="0.2" height="15.0" fill="rgb(253,13,30)" rx="2" ry="2" />
<text x="274.46" y="1087.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="32.3" y="869" width="0.2" height="15.0" fill="rgb(237,114,16)" rx="2" ry="2" />
<text x="35.29" y="879.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="32.3" y="981" width="0.2" height="15.0" fill="rgb(219,166,2)" rx="2" ry="2" />
<text x="35.29" y="991.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (30,303,030 samples, 0.05%)</title><rect x="1120.2" y="1093" width="0.6" height="15.0" fill="rgb(235,180,18)" rx="2" ry="2" />
<text x="1123.21" y="1103.5" ></text>
</g>
<g >
<title>skb_release_data (10,101,010 samples, 0.02%)</title><rect x="682.1" y="629" width="0.2" height="15.0" fill="rgb(211,141,26)" rx="2" ry="2" />
<text x="685.08" y="639.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="997" width="0.2" height="15.0" fill="rgb(208,73,37)" rx="2" ry="2" />
<text x="1095.08" y="1007.5" ></text>
</g>
<g >
<title>TRACE-469$Wikimedia\Rdbms\LBFactory::executePostTransactionCallbacks$366 (10,101,010 samples, 0.02%)</title><rect x="530.4" y="1141" width="0.2" height="15.0" fill="rgb(247,84,53)" rx="2" ry="2" />
<text x="533.42" y="1151.5" ></text>
</g>
<g >
<title>d_set_d_op (10,101,010 samples, 0.02%)</title><rect x="1120.2" y="1061" width="0.2" height="15.0" fill="rgb(241,129,34)" rx="2" ry="2" />
<text x="1123.21" y="1071.5" ></text>
</g>
<g >
<title>mult (10,101,010 samples, 0.02%)</title><rect x="198.8" y="1077" width="0.2" height="15.0" fill="rgb(235,34,38)" rx="2" ry="2" />
<text x="201.75" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_load_script (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="805" width="1.5" height="15.0" fill="rgb(227,177,40)" rx="2" ry="2" />
<text x="1005.50" y="815.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="677" width="0.2" height="15.0" fill="rgb(226,121,30)" rx="2" ry="2" />
<text x="1085.08" y="687.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="904.0" y="741" width="0.2" height="15.0" fill="rgb(247,87,15)" rx="2" ry="2" />
<text x="906.96" y="751.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="806.0" y="725" width="0.2" height="15.0" fill="rgb(207,219,4)" rx="2" ry="2" />
<text x="809.04" y="735.5" ></text>
</g>
<g >
<title>walk_component (30,303,030 samples, 0.05%)</title><rect x="775.8" y="885" width="0.7" height="15.0" fill="rgb(231,169,36)" rx="2" ry="2" />
<text x="778.83" y="895.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="517.7" y="1029" width="0.2" height="15.0" fill="rgb(221,31,46)" rx="2" ry="2" />
<text x="520.71" y="1039.5" ></text>
</g>
<g >
<title>__fget_light (20,202,020 samples, 0.04%)</title><rect x="1180.0" y="1109" width="0.4" height="15.0" fill="rgb(250,33,42)" rx="2" ry="2" />
<text x="1183.00" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (30,303,030 samples, 0.05%)</title><rect x="714.4" y="1077" width="0.6" height="15.0" fill="rgb(241,181,47)" rx="2" ry="2" />
<text x="717.38" y="1087.5" ></text>
</g>
<g >
<title>__d_lookup (20,202,020 samples, 0.04%)</title><rect x="527.1" y="949" width="0.4" height="15.0" fill="rgb(228,199,29)" rx="2" ry="2" />
<text x="530.08" y="959.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="30.4" y="1045" width="0.2" height="15.0" fill="rgb(230,160,29)" rx="2" ry="2" />
<text x="33.42" y="1055.5" ></text>
</g>
<g >
<title>TRACE-10$AutoLoader::find$49 (10,101,010 samples, 0.02%)</title><rect x="675.6" y="1045" width="0.2" height="15.0" fill="rgb(232,226,37)" rx="2" ry="2" />
<text x="678.62" y="1055.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="881.5" y="917" width="0.2" height="15.0" fill="rgb(231,113,20)" rx="2" ry="2" />
<text x="884.46" y="927.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="869" width="1.5" height="15.0" fill="rgb(211,185,17)" rx="2" ry="2" />
<text x="1005.50" y="879.5" ></text>
</g>
<g >
<title>__x64_sys_poll (20,202,020 samples, 0.04%)</title><rect x="929.8" y="885" width="0.4" height="15.0" fill="rgb(242,176,20)" rx="2" ry="2" />
<text x="932.79" y="895.5" ></text>
</g>
<g >
<title>zif_is_array (10,101,010 samples, 0.02%)</title><rect x="1072.9" y="1141" width="0.2" height="15.0" fill="rgb(239,14,39)" rx="2" ry="2" />
<text x="1075.92" y="1151.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (40,404,040 samples, 0.07%)</title><rect x="677.7" y="853" width="0.8" height="15.0" fill="rgb(237,141,19)" rx="2" ry="2" />
<text x="680.71" y="863.5" ></text>
</g>
<g >
<title>zend_call_known_function (70,707,070 samples, 0.12%)</title><rect x="916.5" y="965" width="1.4" height="15.0" fill="rgb(230,34,31)" rx="2" ry="2" />
<text x="919.46" y="975.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1045" width="0.2" height="15.0" fill="rgb(206,19,12)" rx="2" ry="2" />
<text x="906.96" y="1055.5" ></text>
</g>
<g >
<title>finish_task_switch (20,202,020 samples, 0.04%)</title><rect x="1053.5" y="821" width="0.5" height="15.0" fill="rgb(242,46,19)" rx="2" ry="2" />
<text x="1056.54" y="831.5" ></text>
</g>
<g >
<title>php_implode (10,101,010 samples, 0.02%)</title><rect x="478.8" y="1109" width="0.2" height="15.0" fill="rgb(208,111,21)" rx="2" ry="2" />
<text x="481.75" y="1119.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="300.4" y="965" width="0.2" height="15.0" fill="rgb(243,62,8)" rx="2" ry="2" />
<text x="303.42" y="975.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (20,202,020 samples, 0.04%)</title><rect x="1130.8" y="901" width="0.4" height="15.0" fill="rgb(220,43,49)" rx="2" ry="2" />
<text x="1133.83" y="911.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="518.3" y="1125" width="0.2" height="15.0" fill="rgb(246,219,49)" rx="2" ry="2" />
<text x="521.33" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="719.8" y="1109" width="0.2" height="15.0" fill="rgb(234,132,50)" rx="2" ry="2" />
<text x="722.79" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (20,202,020 samples, 0.04%)</title><rect x="705.2" y="1061" width="0.4" height="15.0" fill="rgb(245,217,15)" rx="2" ry="2" />
<text x="708.21" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_timer_delete (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1157" width="0.2" height="15.0" fill="rgb(241,15,8)" rx="2" ry="2" />
<text x="1175.50" y="1167.5" ></text>
</g>
<g >
<title>ip_forward_finish (131,313,130 samples, 0.23%)</title><rect x="1127.5" y="549" width="2.7" height="15.0" fill="rgb(206,36,50)" rx="2" ry="2" />
<text x="1130.50" y="559.5" ></text>
</g>
<g >
<title>ktime_get (10,101,010 samples, 0.02%)</title><rect x="1024.2" y="853" width="0.2" height="15.0" fill="rgb(219,122,53)" rx="2" ry="2" />
<text x="1027.17" y="863.5" ></text>
</g>
<g >
<title>map_id_up (10,101,010 samples, 0.02%)</title><rect x="372.1" y="997" width="0.2" height="15.0" fill="rgb(250,205,31)" rx="2" ry="2" />
<text x="375.08" y="1007.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="725.4" y="917" width="0.2" height="15.0" fill="rgb(239,203,40)" rx="2" ry="2" />
<text x="728.42" y="927.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="619.4" y="1109" width="0.2" height="15.0" fill="rgb(218,152,35)" rx="2" ry="2" />
<text x="622.38" y="1119.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="757" width="2.9" height="15.0" fill="rgb(224,175,1)" rx="2" ry="2" />
<text x="1130.50" y="767.5" ></text>
</g>
<g >
<title>inet_create (10,101,010 samples, 0.02%)</title><rect x="1119.0" y="1109" width="0.2" height="15.0" fill="rgb(220,32,9)" rx="2" ry="2" />
<text x="1121.96" y="1119.5" ></text>
</g>
<g >
<title>[libz.so.1.2.11] (40,404,040 samples, 0.07%)</title><rect x="24.4" y="1221" width="0.8" height="15.0" fill="rgb(235,1,29)" rx="2" ry="2" />
<text x="27.38" y="1231.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1053.1" y="805" width="0.2" height="15.0" fill="rgb(210,172,34)" rx="2" ry="2" />
<text x="1056.12" y="815.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="922.7" y="869" width="0.2" height="15.0" fill="rgb(214,22,47)" rx="2" ry="2" />
<text x="925.71" y="879.5" ></text>
</g>
<g >
<title>TRACE-448$DeferredUpdatesScope::processStageQueue$266 (10,101,010 samples, 0.02%)</title><rect x="525.2" y="1141" width="0.2" height="15.0" fill="rgb(212,101,3)" rx="2" ry="2" />
<text x="528.21" y="1151.5" ></text>
</g>
<g >
<title>put_pid (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="901" width="0.3" height="15.0" fill="rgb(206,156,38)" rx="2" ry="2" />
<text x="1174.25" y="911.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="850.6" y="309" width="0.2" height="15.0" fill="rgb(228,4,32)" rx="2" ry="2" />
<text x="853.62" y="319.5" ></text>
</g>
<g >
<title>compare_function (10,101,010 samples, 0.02%)</title><rect x="483.3" y="1125" width="0.2" height="15.0" fill="rgb(237,204,16)" rx="2" ry="2" />
<text x="486.33" y="1135.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="523.8" y="869" width="0.2" height="15.0" fill="rgb(206,34,31)" rx="2" ry="2" />
<text x="526.75" y="879.5" ></text>
</g>
<g >
<title>__close_fd (10,101,010 samples, 0.02%)</title><rect x="1144.2" y="1157" width="0.2" height="15.0" fill="rgb(230,226,30)" rx="2" ry="2" />
<text x="1147.17" y="1167.5" ></text>
</g>
<g >
<title>__release_sock (10,101,010 samples, 0.02%)</title><rect x="1024.0" y="885" width="0.2" height="15.0" fill="rgb(239,204,37)" rx="2" ry="2" />
<text x="1026.96" y="895.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (10,101,010 samples, 0.02%)</title><rect x="925.6" y="757" width="0.2" height="15.0" fill="rgb(243,192,40)" rx="2" ry="2" />
<text x="928.62" y="767.5" ></text>
</g>
<g >
<title>zend_do_link_class (121,212,120 samples, 0.21%)</title><rect x="741.0" y="869" width="2.5" height="15.0" fill="rgb(217,127,24)" rx="2" ry="2" />
<text x="744.04" y="879.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="799.8" y="725" width="0.2" height="15.0" fill="rgb(216,144,54)" rx="2" ry="2" />
<text x="802.79" y="735.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="244.4" y="1077" width="0.2" height="15.0" fill="rgb(247,157,36)" rx="2" ry="2" />
<text x="247.38" y="1087.5" ></text>
</g>
<g >
<title>JIT$$leave_function (20,202,020 samples, 0.04%)</title><rect x="833.1" y="917" width="0.4" height="15.0" fill="rgb(206,3,43)" rx="2" ry="2" />
<text x="836.12" y="927.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (515,151,510 samples, 0.90%)</title><rect x="796.7" y="997" width="10.6" height="15.0" fill="rgb(247,145,12)" rx="2" ry="2" />
<text x="799.67" y="1007.5" ></text>
</g>
<g >
<title>zend_fetch_static_prop_helper_SPEC (20,202,020 samples, 0.04%)</title><rect x="313.8" y="1125" width="0.4" height="15.0" fill="rgb(229,51,0)" rx="2" ry="2" />
<text x="316.75" y="1135.5" ></text>
</g>
<g >
<title>zend_include_or_eval (80,808,080 samples, 0.14%)</title><rect x="777.7" y="1013" width="1.7" height="15.0" fill="rgb(253,99,35)" rx="2" ry="2" />
<text x="780.71" y="1023.5" ></text>
</g>
<g >
<title>netif_rx_internal (10,101,010 samples, 0.02%)</title><rect x="1131.0" y="853" width="0.2" height="15.0" fill="rgb(208,44,14)" rx="2" ry="2" />
<text x="1134.04" y="863.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (60,606,060 samples, 0.11%)</title><rect x="500.4" y="1045" width="1.3" height="15.0" fill="rgb(231,198,17)" rx="2" ry="2" />
<text x="503.42" y="1055.5" ></text>
</g>
<g >
<title>do_bind_class (191,919,190 samples, 0.34%)</title><rect x="1015.4" y="1029" width="4.0" height="15.0" fill="rgb(249,209,45)" rx="2" ry="2" />
<text x="1018.42" y="1039.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="904.0" y="837" width="0.2" height="15.0" fill="rgb(238,149,33)" rx="2" ry="2" />
<text x="906.96" y="847.5" ></text>
</g>
<g >
<title>memset (20,202,020 samples, 0.04%)</title><rect x="1146.9" y="1029" width="0.4" height="15.0" fill="rgb(214,63,13)" rx="2" ry="2" />
<text x="1149.88" y="1039.5" ></text>
</g>
<g >
<title>sapi_header_op (10,101,010 samples, 0.02%)</title><rect x="1039.6" y="1109" width="0.2" height="15.0" fill="rgb(243,201,11)" rx="2" ry="2" />
<text x="1042.58" y="1119.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (101,010,100 samples, 0.18%)</title><rect x="1002.1" y="1077" width="2.1" height="15.0" fill="rgb(212,109,16)" rx="2" ry="2" />
<text x="1005.08" y="1087.5" ></text>
</g>
<g >
<title>zend_do_inheritance_ex (20,202,020 samples, 0.04%)</title><rect x="1002.1" y="949" width="0.4" height="15.0" fill="rgb(212,68,37)" rx="2" ry="2" />
<text x="1005.08" y="959.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="904.0" y="805" width="0.2" height="15.0" fill="rgb(232,8,16)" rx="2" ry="2" />
<text x="906.96" y="815.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="622.9" y="1109" width="0.2" height="15.0" fill="rgb(232,15,25)" rx="2" ry="2" />
<text x="625.92" y="1119.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="613" width="0.2" height="15.0" fill="rgb(221,39,2)" rx="2" ry="2" />
<text x="1085.08" y="623.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="539.4" y="821" width="0.2" height="15.0" fill="rgb(239,103,16)" rx="2" ry="2" />
<text x="542.38" y="831.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="780.8" y="981" width="0.2" height="15.0" fill="rgb(239,18,34)" rx="2" ry="2" />
<text x="783.83" y="991.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="755.8" y="1061" width="0.2" height="15.0" fill="rgb(209,216,39)" rx="2" ry="2" />
<text x="758.83" y="1071.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="517" width="0.3" height="15.0" fill="rgb(209,214,51)" rx="2" ry="2" />
<text x="1134.25" y="527.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="519.8" y="1093" width="0.2" height="15.0" fill="rgb(240,127,22)" rx="2" ry="2" />
<text x="522.79" y="1103.5" ></text>
</g>
<g >
<title>dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="941.5" y="629" width="0.2" height="15.0" fill="rgb(221,80,42)" rx="2" ry="2" />
<text x="944.46" y="639.5" ></text>
</g>
<g >
<title>TRACE-237$MemcachedPeclBagOStuff::doGetMulti$345 (10,101,010 samples, 0.02%)</title><rect x="451.5" y="1141" width="0.2" height="15.0" fill="rgb(242,131,50)" rx="2" ry="2" />
<text x="454.46" y="1151.5" ></text>
</g>
<g >
<title>do_sys_poll (50,505,050 samples, 0.09%)</title><rect x="935.2" y="853" width="1.0" height="15.0" fill="rgb(247,64,46)" rx="2" ry="2" />
<text x="938.21" y="863.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="24.0" y="805" width="0.2" height="15.0" fill="rgb(231,114,51)" rx="2" ry="2" />
<text x="26.96" y="815.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="623.3" y="1125" width="0.2" height="15.0" fill="rgb(252,70,47)" rx="2" ry="2" />
<text x="626.33" y="1135.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1125" width="0.2" height="15.0" fill="rgb(236,145,51)" rx="2" ry="2" />
<text x="474.67" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (20,202,020 samples, 0.04%)</title><rect x="30.2" y="1109" width="0.4" height="15.0" fill="rgb(219,89,53)" rx="2" ry="2" />
<text x="33.21" y="1119.5" ></text>
</g>
<g >
<title>TRACE-295$Monolog\Formatter\NormalizerFormatter::normalize$159 (111,111,110 samples, 0.19%)</title><rect x="479.0" y="1141" width="2.2" height="15.0" fill="rgb(232,14,52)" rx="2" ry="2" />
<text x="481.96" y="1151.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1108.3" y="997" width="0.2" height="15.0" fill="rgb(227,226,54)" rx="2" ry="2" />
<text x="1111.33" y="1007.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="789" width="0.2" height="15.0" fill="rgb(228,218,46)" rx="2" ry="2" />
<text x="1117.17" y="799.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="822.7" y="821" width="0.2" height="15.0" fill="rgb(230,47,12)" rx="2" ry="2" />
<text x="825.71" y="831.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="704.2" y="1093" width="0.2" height="15.0" fill="rgb(205,79,2)" rx="2" ry="2" />
<text x="707.17" y="1103.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1077" width="0.2" height="15.0" fill="rgb(223,56,40)" rx="2" ry="2" />
<text x="1081.33" y="1087.5" ></text>
</g>
<g >
<title>TRACE-26$MediaWiki\MediaWikiServices::salvage$384 (101,010,100 samples, 0.18%)</title><rect x="466.9" y="1141" width="2.1" height="15.0" fill="rgb(230,213,53)" rx="2" ry="2" />
<text x="469.88" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (20,202,020 samples, 0.04%)</title><rect x="1164.2" y="837" width="0.4" height="15.0" fill="rgb(235,182,3)" rx="2" ry="2" />
<text x="1167.17" y="847.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_close_stream_pub (131,313,130 samples, 0.23%)</title><rect x="1088.1" y="997" width="2.7" height="15.0" fill="rgb(234,102,36)" rx="2" ry="2" />
<text x="1091.12" y="1007.5" ></text>
</g>
<g >
<title>execute_ex (70,707,070 samples, 0.12%)</title><rect x="1031.2" y="997" width="1.5" height="15.0" fill="rgb(227,100,14)" rx="2" ry="2" />
<text x="1034.25" y="1007.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="997" width="0.2" height="15.0" fill="rgb(205,206,31)" rx="2" ry="2" />
<text x="1170.08" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,202,020 samples, 0.04%)</title><rect x="948.3" y="1013" width="0.5" height="15.0" fill="rgb(216,88,43)" rx="2" ry="2" />
<text x="951.33" y="1023.5" ></text>
</g>
<g >
<title>virtblk_request_done (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1029" width="0.3" height="15.0" fill="rgb(205,8,0)" rx="2" ry="2" />
<text x="699.25" y="1039.5" ></text>
</g>
<g >
<title>tcp_push_pending_frames (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="565" width="0.3" height="15.0" fill="rgb(231,193,33)" rx="2" ry="2" />
<text x="1134.25" y="575.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="539.4" y="693" width="0.2" height="15.0" fill="rgb(244,228,3)" rx="2" ry="2" />
<text x="542.38" y="703.5" ></text>
</g>
<g >
<title>xbuf_format_converter (10,101,010 samples, 0.02%)</title><rect x="889.4" y="1077" width="0.2" height="15.0" fill="rgb(220,140,51)" rx="2" ry="2" />
<text x="892.38" y="1087.5" ></text>
</g>
<g >
<title>do_page_fault (10,101,010 samples, 0.02%)</title><rect x="1104.0" y="1077" width="0.2" height="15.0" fill="rgb(227,197,25)" rx="2" ry="2" />
<text x="1106.96" y="1087.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (10,101,010 samples, 0.02%)</title><rect x="24.0" y="773" width="0.2" height="15.0" fill="rgb(212,68,47)" rx="2" ry="2" />
<text x="26.96" y="783.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="581" width="0.4" height="15.0" fill="rgb(229,85,3)" rx="2" ry="2" />
<text x="1092.58" y="591.5" ></text>
</g>
<g >
<title>zend_accel_load_script (151,515,150 samples, 0.26%)</title><rect x="842.7" y="837" width="3.1" height="15.0" fill="rgb(232,209,53)" rx="2" ry="2" />
<text x="845.71" y="847.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="501.0" y="981" width="0.5" height="15.0" fill="rgb(212,225,47)" rx="2" ry="2" />
<text x="504.04" y="991.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="1057.9" y="1013" width="0.2" height="15.0" fill="rgb(215,176,19)" rx="2" ry="2" />
<text x="1060.92" y="1023.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (111,111,110 samples, 0.19%)</title><rect x="920.8" y="1109" width="2.3" height="15.0" fill="rgb(220,180,42)" rx="2" ry="2" />
<text x="923.83" y="1119.5" ></text>
</g>
<g >
<title>TRACE-206$Fandom\Includes\Database\FandomLoadBalancerFactory::getAllMainLBs$103 (272,727,270 samples, 0.48%)</title><rect x="345.4" y="1141" width="5.6" height="15.0" fill="rgb(225,38,14)" rx="2" ry="2" />
<text x="348.42" y="1151.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="457.3" y="1109" width="0.2" height="15.0" fill="rgb(205,67,2)" rx="2" ry="2" />
<text x="460.29" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.19%)</title><rect x="935.0" y="901" width="2.3" height="15.0" fill="rgb(205,140,26)" rx="2" ry="2" />
<text x="938.00" y="911.5" ></text>
</g>
<g >
<title>ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1084.4" y="1061" width="0.2" height="15.0" fill="rgb(229,127,49)" rx="2" ry="2" />
<text x="1087.38" y="1071.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="487.1" y="1093" width="0.2" height="15.0" fill="rgb(245,154,25)" rx="2" ry="2" />
<text x="490.08" y="1103.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="932.3" y="805" width="0.2" height="15.0" fill="rgb(208,22,27)" rx="2" ry="2" />
<text x="935.29" y="815.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="850.6" y="853" width="0.2" height="15.0" fill="rgb(247,50,34)" rx="2" ry="2" />
<text x="853.62" y="863.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="914.6" y="725" width="0.2" height="15.0" fill="rgb(208,74,42)" rx="2" ry="2" />
<text x="917.58" y="735.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="978.3" y="1109" width="0.5" height="15.0" fill="rgb(247,118,20)" rx="2" ry="2" />
<text x="981.33" y="1119.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="390.2" y="789" width="0.2" height="15.0" fill="rgb(225,138,45)" rx="2" ry="2" />
<text x="393.21" y="799.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="551.2" y="1141" width="0.3" height="15.0" fill="rgb(223,198,26)" rx="2" ry="2" />
<text x="554.25" y="1151.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="955.4" y="933" width="0.2" height="15.0" fill="rgb(223,160,50)" rx="2" ry="2" />
<text x="958.42" y="943.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="890.0" y="1077" width="0.2" height="15.0" fill="rgb(231,187,21)" rx="2" ry="2" />
<text x="893.00" y="1087.5" ></text>
</g>
<g >
<title>ZEND_BIND_STATIC_SPEC_CV_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="493.1" y="1125" width="0.2" height="15.0" fill="rgb(229,45,47)" rx="2" ry="2" />
<text x="496.12" y="1135.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="749.0" y="1013" width="0.2" height="15.0" fill="rgb(225,17,27)" rx="2" ry="2" />
<text x="751.96" y="1023.5" ></text>
</g>
<g >
<title>net_rx_action (20,202,020 samples, 0.04%)</title><rect x="539.4" y="1061" width="0.4" height="15.0" fill="rgb(209,220,16)" rx="2" ry="2" />
<text x="542.38" y="1071.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (10,101,010 samples, 0.02%)</title><rect x="739.8" y="789" width="0.2" height="15.0" fill="rgb(237,77,19)" rx="2" ry="2" />
<text x="742.79" y="799.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="805.6" y="837" width="0.2" height="15.0" fill="rgb(215,175,53)" rx="2" ry="2" />
<text x="808.62" y="847.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="244.0" y="981" width="0.2" height="15.0" fill="rgb(241,102,20)" rx="2" ry="2" />
<text x="246.96" y="991.5" ></text>
</g>
<g >
<title>ip_forward (393,939,390 samples, 0.69%)</title><rect x="1152.5" y="533" width="8.1" height="15.0" fill="rgb(252,46,19)" rx="2" ry="2" />
<text x="1155.50" y="543.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="725" width="0.3" height="15.0" fill="rgb(209,184,52)" rx="2" ry="2" />
<text x="1044.25" y="735.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="347.7" y="1125" width="0.2" height="15.0" fill="rgb(221,192,48)" rx="2" ry="2" />
<text x="350.71" y="1135.5" ></text>
</g>
<g >
<title>_emalloc_24 (10,101,010 samples, 0.02%)</title><rect x="516.0" y="1109" width="0.2" height="15.0" fill="rgb(227,40,38)" rx="2" ry="2" />
<text x="519.04" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="661" width="1.7" height="15.0" fill="rgb(210,93,24)" rx="2" ry="2" />
<text x="1028.00" y="671.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="777.1" y="1029" width="0.2" height="15.0" fill="rgb(229,202,50)" rx="2" ry="2" />
<text x="780.08" y="1039.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="861.0" y="741" width="0.2" height="15.0" fill="rgb(250,63,44)" rx="2" ry="2" />
<text x="864.04" y="751.5" ></text>
</g>
<g >
<title>audit_alloc_name (10,101,010 samples, 0.02%)</title><rect x="417.9" y="965" width="0.2" height="15.0" fill="rgb(239,168,26)" rx="2" ry="2" />
<text x="420.92" y="975.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="856.9" y="613" width="0.2" height="15.0" fill="rgb(244,62,48)" rx="2" ry="2" />
<text x="859.88" y="623.5" ></text>
</g>
<g >
<title>ip_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="501" width="0.3" height="15.0" fill="rgb(231,176,32)" rx="2" ry="2" />
<text x="1134.25" y="511.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="914.6" y="837" width="0.2" height="15.0" fill="rgb(220,216,30)" rx="2" ry="2" />
<text x="917.58" y="847.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="496.2" y="1061" width="0.3" height="15.0" fill="rgb(236,158,52)" rx="2" ry="2" />
<text x="499.25" y="1071.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="743.3" y="773" width="0.2" height="15.0" fill="rgb(242,28,52)" rx="2" ry="2" />
<text x="746.33" y="783.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="32.3" y="901" width="0.2" height="15.0" fill="rgb(205,51,0)" rx="2" ry="2" />
<text x="35.29" y="911.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="733.3" y="853" width="0.2" height="15.0" fill="rgb(242,177,10)" rx="2" ry="2" />
<text x="736.33" y="863.5" ></text>
</g>
<g >
<title>TRACE-229$Wikimedia\Rdbms\LoadMonitor::getCurrentTime$393 (10,101,010 samples, 0.02%)</title><rect x="449.8" y="1141" width="0.2" height="15.0" fill="rgb(206,160,37)" rx="2" ry="2" />
<text x="452.79" y="1151.5" ></text>
</g>
<g >
<title>path_get (20,202,020 samples, 0.04%)</title><rect x="534.2" y="901" width="0.4" height="15.0" fill="rgb(239,42,45)" rx="2" ry="2" />
<text x="537.17" y="911.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="193.8" y="837" width="0.2" height="15.0" fill="rgb(209,21,52)" rx="2" ry="2" />
<text x="196.75" y="847.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="462.1" y="1093" width="0.2" height="15.0" fill="rgb(245,193,28)" rx="2" ry="2" />
<text x="465.08" y="1103.5" ></text>
</g>
<g >
<title>ip_finish_output2 (10,101,010 samples, 0.02%)</title><rect x="881.2" y="437" width="0.3" height="15.0" fill="rgb(225,136,52)" rx="2" ry="2" />
<text x="884.25" y="447.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_TMPVAR_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="623.1" y="1125" width="0.2" height="15.0" fill="rgb(250,105,50)" rx="2" ry="2" />
<text x="626.12" y="1135.5" ></text>
</g>
<g >
<title>netif_rx (10,101,010 samples, 0.02%)</title><rect x="1131.0" y="869" width="0.2" height="15.0" fill="rgb(253,170,3)" rx="2" ry="2" />
<text x="1134.04" y="879.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1045" width="0.2" height="15.0" fill="rgb(207,72,1)" rx="2" ry="2" />
<text x="521.96" y="1055.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_dtor_priv (30,303,030 samples, 0.05%)</title><rect x="1090.8" y="1013" width="0.7" height="15.0" fill="rgb(229,217,6)" rx="2" ry="2" />
<text x="1093.83" y="1023.5" ></text>
</g>
<g >
<title>object_init_ex (20,202,020 samples, 0.04%)</title><rect x="886.5" y="1109" width="0.4" height="15.0" fill="rgb(218,130,19)" rx="2" ry="2" />
<text x="889.46" y="1119.5" ></text>
</g>
<g >
<title>setsockopt (90,909,090 samples, 0.16%)</title><rect x="1140.4" y="1205" width="1.9" height="15.0" fill="rgb(225,123,10)" rx="2" ry="2" />
<text x="1143.42" y="1215.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="283.8" y="933" width="0.4" height="15.0" fill="rgb(212,64,34)" rx="2" ry="2" />
<text x="286.75" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="30.2" y="1061" width="0.2" height="15.0" fill="rgb(235,20,18)" rx="2" ry="2" />
<text x="33.21" y="1071.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="501.7" y="1045" width="0.2" height="15.0" fill="rgb(252,37,41)" rx="2" ry="2" />
<text x="504.67" y="1055.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="799.8" y="677" width="0.2" height="15.0" fill="rgb(244,20,30)" rx="2" ry="2" />
<text x="802.79" y="687.5" ></text>
</g>
<g >
<title>zend_objects_store_put (10,101,010 samples, 0.02%)</title><rect x="300.2" y="1093" width="0.2" height="15.0" fill="rgb(212,227,18)" rx="2" ry="2" />
<text x="303.21" y="1103.5" ></text>
</g>
<g >
<title>new_sync_write (121,212,120 samples, 0.21%)</title><rect x="1035.0" y="965" width="2.5" height="15.0" fill="rgb(212,111,17)" rx="2" ry="2" />
<text x="1038.00" y="975.5" ></text>
</g>
<g >
<title>skb_page_frag_refill (10,101,010 samples, 0.02%)</title><rect x="805.2" y="709" width="0.2" height="15.0" fill="rgb(217,64,38)" rx="2" ry="2" />
<text x="808.21" y="719.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="476.9" y="917" width="0.2" height="15.0" fill="rgb(229,183,32)" rx="2" ry="2" />
<text x="479.88" y="927.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="718.3" y="1077" width="0.2" height="15.0" fill="rgb(231,49,2)" rx="2" ry="2" />
<text x="721.33" y="1087.5" ></text>
</g>
<g >
<title>getaddrinfo (20,202,020 samples, 0.04%)</title><rect x="31.9" y="1189" width="0.4" height="15.0" fill="rgb(245,85,40)" rx="2" ry="2" />
<text x="34.88" y="1199.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="279.6" y="1045" width="0.2" height="15.0" fill="rgb(240,50,42)" rx="2" ry="2" />
<text x="282.58" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="885" width="0.2" height="15.0" fill="rgb(250,217,52)" rx="2" ry="2" />
<text x="1170.08" y="895.5" ></text>
</g>
<g >
<title>write (60,606,060 samples, 0.11%)</title><rect x="1107.9" y="1173" width="1.3" height="15.0" fill="rgb(236,154,2)" rx="2" ry="2" />
<text x="1110.92" y="1183.5" ></text>
</g>
<g >
<title>php_mysqlnd_rset_field_read (10,101,010 samples, 0.02%)</title><rect x="1052.1" y="1045" width="0.2" height="15.0" fill="rgb(211,70,45)" rx="2" ry="2" />
<text x="1055.08" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (80,808,080 samples, 0.14%)</title><rect x="1160.6" y="533" width="1.7" height="15.0" fill="rgb(254,67,5)" rx="2" ry="2" />
<text x="1163.62" y="543.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1142.9" y="1141" width="0.2" height="15.0" fill="rgb(235,219,2)" rx="2" ry="2" />
<text x="1145.92" y="1151.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="842.5" y="789" width="0.2" height="15.0" fill="rgb(234,31,45)" rx="2" ry="2" />
<text x="845.50" y="799.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="821" width="0.3" height="15.0" fill="rgb(221,226,2)" rx="2" ry="2" />
<text x="1044.25" y="831.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (10,101,010 samples, 0.02%)</title><rect x="248.1" y="1125" width="0.2" height="15.0" fill="rgb(225,129,29)" rx="2" ry="2" />
<text x="251.12" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (30,303,030 samples, 0.05%)</title><rect x="732.9" y="997" width="0.6" height="15.0" fill="rgb(217,38,9)" rx="2" ry="2" />
<text x="735.92" y="1007.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="1029" width="0.2" height="15.0" fill="rgb(222,207,6)" rx="2" ry="2" />
<text x="1090.50" y="1039.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="922.5" y="757" width="0.2" height="15.0" fill="rgb(253,202,20)" rx="2" ry="2" />
<text x="925.50" y="767.5" ></text>
</g>
<g >
<title>__d_lookup (10,101,010 samples, 0.02%)</title><rect x="533.8" y="853" width="0.2" height="15.0" fill="rgb(231,130,35)" rx="2" ry="2" />
<text x="536.75" y="863.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="744.0" y="725" width="0.2" height="15.0" fill="rgb(250,6,53)" rx="2" ry="2" />
<text x="746.96" y="735.5" ></text>
</g>
<g >
<title>TRACE-349$Wikimedia\Rdbms\LoadBalancer::beginPrimaryChanges$1807 (10,101,010 samples, 0.02%)</title><rect x="497.1" y="1141" width="0.2" height="15.0" fill="rgb(252,194,7)" rx="2" ry="2" />
<text x="500.08" y="1151.5" ></text>
</g>
<g >
<title>zend_include_or_eval (303,030,300 samples, 0.53%)</title><rect x="274.0" y="1109" width="6.2" height="15.0" fill="rgb(212,226,2)" rx="2" ry="2" />
<text x="276.96" y="1119.5" ></text>
</g>
<g >
<title>zend_object_std_dtor (20,202,020 samples, 0.04%)</title><rect x="446.9" y="1109" width="0.4" height="15.0" fill="rgb(208,228,30)" rx="2" ry="2" />
<text x="449.88" y="1119.5" ></text>
</g>
<g >
<title>__put_cred (20,202,020 samples, 0.04%)</title><rect x="774.0" y="949" width="0.4" height="15.0" fill="rgb(233,79,42)" rx="2" ry="2" />
<text x="776.96" y="959.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="618.1" y="1109" width="0.2" height="15.0" fill="rgb(224,34,43)" rx="2" ry="2" />
<text x="621.12" y="1119.5" ></text>
</g>
<g >
<title>bio_endio (10,101,010 samples, 0.02%)</title><rect x="696.2" y="981" width="0.3" height="15.0" fill="rgb(211,28,20)" rx="2" ry="2" />
<text x="699.25" y="991.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1029" width="0.2" height="15.0" fill="rgb(230,34,52)" rx="2" ry="2" />
<text x="479.88" y="1039.5" ></text>
</g>
<g >
<title>memset (10,101,010 samples, 0.02%)</title><rect x="957.5" y="981" width="0.2" height="15.0" fill="rgb(242,109,18)" rx="2" ry="2" />
<text x="960.50" y="991.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="581" width="0.2" height="15.0" fill="rgb(237,97,32)" rx="2" ry="2" />
<text x="1085.08" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,404,040 samples, 0.07%)</title><rect x="925.2" y="837" width="0.8" height="15.0" fill="rgb(208,156,27)" rx="2" ry="2" />
<text x="928.21" y="847.5" ></text>
</g>
<g >
<title>TRACE-329$Monolog\DateTimeImmutable::__construct$29 (70,707,070 samples, 0.12%)</title><rect x="490.0" y="1141" width="1.5" height="15.0" fill="rgb(234,159,7)" rx="2" ry="2" />
<text x="493.00" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_update (20,202,020 samples, 0.04%)</title><rect x="1085.2" y="1045" width="0.4" height="15.0" fill="rgb(220,51,38)" rx="2" ry="2" />
<text x="1088.21" y="1055.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="443.3" y="965" width="0.2" height="15.0" fill="rgb(253,126,47)" rx="2" ry="2" />
<text x="446.33" y="975.5" ></text>
</g>
<g >
<title>zend_sort (101,010,100 samples, 0.18%)</title><rect x="513.5" y="1061" width="2.1" height="15.0" fill="rgb(209,41,41)" rx="2" ry="2" />
<text x="516.54" y="1071.5" ></text>
</g>
<g >
<title>execute_ex (4,393,939,350 samples, 7.68%)</title><rect x="792.1" y="1045" width="90.6" height="15.0" fill="rgb(226,191,26)" rx="2" ry="2" />
<text x="795.08" y="1055.5" >execute_ex</text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="821" width="0.2" height="15.0" fill="rgb(224,139,34)" rx="2" ry="2" />
<text x="1117.17" y="831.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="641.7" y="901" width="0.2" height="15.0" fill="rgb(228,54,5)" rx="2" ry="2" />
<text x="644.67" y="911.5" ></text>
</g>
<g >
<title>zend_include_or_eval (595,959,590 samples, 1.04%)</title><rect x="852.7" y="885" width="12.3" height="15.0" fill="rgb(213,143,33)" rx="2" ry="2" />
<text x="855.71" y="895.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1109" width="0.2" height="15.0" fill="rgb(233,205,53)" rx="2" ry="2" />
<text x="205.50" y="1119.5" ></text>
</g>
<g >
<title>ktime_get (10,101,010 samples, 0.02%)</title><rect x="1179.0" y="1061" width="0.2" height="15.0" fill="rgb(221,205,15)" rx="2" ry="2" />
<text x="1181.96" y="1071.5" ></text>
</g>
<g >
<title>path_lookupat (60,606,060 samples, 0.11%)</title><rect x="526.5" y="1013" width="1.2" height="15.0" fill="rgb(230,146,51)" rx="2" ry="2" />
<text x="529.46" y="1023.5" ></text>
</g>
<g >
<title>kfree_skbmem (20,202,020 samples, 0.04%)</title><rect x="1177.5" y="1077" width="0.4" height="15.0" fill="rgb(221,87,50)" rx="2" ry="2" />
<text x="1180.50" y="1087.5" ></text>
</g>
<g >
<title>nfnetlink_has_listeners (10,101,010 samples, 0.02%)</title><rect x="941.7" y="613" width="0.2" height="15.0" fill="rgb(223,62,35)" rx="2" ry="2" />
<text x="944.67" y="623.5" ></text>
</g>
<g >
<title>dput (10,101,010 samples, 0.02%)</title><rect x="534.0" y="853" width="0.2" height="15.0" fill="rgb(235,138,30)" rx="2" ry="2" />
<text x="536.96" y="863.5" ></text>
</g>
<g >
<title>php_mt_rand (10,101,010 samples, 0.02%)</title><rect x="1032.3" y="965" width="0.2" height="15.0" fill="rgb(206,166,35)" rx="2" ry="2" />
<text x="1035.29" y="975.5" ></text>
</g>
<g >
<title>zend_strpprintf_unchecked (20,202,020 samples, 0.04%)</title><rect x="889.2" y="1109" width="0.4" height="15.0" fill="rgb(253,102,54)" rx="2" ry="2" />
<text x="892.17" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (20,202,020 samples, 0.04%)</title><rect x="922.3" y="901" width="0.4" height="15.0" fill="rgb(207,191,36)" rx="2" ry="2" />
<text x="925.29" y="911.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="919.2" y="1045" width="0.2" height="15.0" fill="rgb(253,126,2)" rx="2" ry="2" />
<text x="922.17" y="1055.5" ></text>
</g>
<g >
<title>do_bind_class (60,606,060 samples, 0.11%)</title><rect x="303.5" y="773" width="1.3" height="15.0" fill="rgb(231,56,15)" rx="2" ry="2" />
<text x="306.54" y="783.5" ></text>
</g>
<g >
<title>zend_activate_modules (50,505,050 samples, 0.09%)</title><rect x="1104.6" y="1157" width="1.0" height="15.0" fill="rgb(249,85,43)" rx="2" ry="2" />
<text x="1107.58" y="1167.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (20,202,020 samples, 0.04%)</title><rect x="539.4" y="1077" width="0.4" height="15.0" fill="rgb(208,20,1)" rx="2" ry="2" />
<text x="542.38" y="1087.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.isra.18 (10,101,010 samples, 0.02%)</title><rect x="744.0" y="613" width="0.2" height="15.0" fill="rgb(239,33,23)" rx="2" ry="2" />
<text x="746.96" y="623.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1132.1" y="1157" width="0.2" height="15.0" fill="rgb(229,126,49)" rx="2" ry="2" />
<text x="1135.08" y="1167.5" ></text>
</g>
<g >
<title>compile_filename (40,404,040 samples, 0.07%)</title><rect x="743.5" y="869" width="0.9" height="15.0" fill="rgb(205,208,28)" rx="2" ry="2" />
<text x="746.54" y="879.5" ></text>
</g>
<g >
<title>zend_std_write_property (10,101,010 samples, 0.02%)</title><rect x="996.7" y="1125" width="0.2" height="15.0" fill="rgb(234,152,12)" rx="2" ry="2" />
<text x="999.67" y="1135.5" ></text>
</g>
<g >
<title>zend_do_link_class (40,404,040 samples, 0.07%)</title><rect x="283.3" y="997" width="0.9" height="15.0" fill="rgb(247,18,27)" rx="2" ry="2" />
<text x="286.33" y="1007.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (10,101,010 samples, 0.02%)</title><rect x="856.9" y="597" width="0.2" height="15.0" fill="rgb(226,46,30)" rx="2" ry="2" />
<text x="859.88" y="607.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (10,101,010 samples, 0.02%)</title><rect x="183.5" y="949" width="0.3" height="15.0" fill="rgb(229,217,15)" rx="2" ry="2" />
<text x="186.54" y="959.5" ></text>
</g>
<g >
<title>zend_is_callable_at_frame (40,404,040 samples, 0.07%)</title><rect x="1041.9" y="1093" width="0.8" height="15.0" fill="rgb(246,122,15)" rx="2" ry="2" />
<text x="1044.88" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1093" width="0.2" height="15.0" fill="rgb(230,139,46)" rx="2" ry="2" />
<text x="693.00" y="1103.5" ></text>
</g>
<g >
<title>__fib_validate_source (20,202,020 samples, 0.04%)</title><rect x="1161.7" y="453" width="0.4" height="15.0" fill="rgb(205,159,23)" rx="2" ry="2" />
<text x="1164.67" y="463.5" ></text>
</g>
<g >
<title>ip_rcv_finish (70,707,070 samples, 0.12%)</title><rect x="939.4" y="293" width="1.4" height="15.0" fill="rgb(213,36,53)" rx="2" ry="2" />
<text x="942.38" y="303.5" ></text>
</g>
<g >
<title>TRACE-5$Wikimedia\Services\ServiceContainer::applyWiring$145 (343,434,340 samples, 0.60%)</title><rect x="536.9" y="1141" width="7.1" height="15.0" fill="rgb(207,228,7)" rx="2" ry="2" />
<text x="539.88" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="528.8" y="1077" width="0.2" height="15.0" fill="rgb(247,188,2)" rx="2" ry="2" />
<text x="531.75" y="1087.5" ></text>
</g>
<g >
<title>walk_component (727,272,720 samples, 1.27%)</title><rect x="395.6" y="949" width="15.0" height="15.0" fill="rgb(206,205,11)" rx="2" ry="2" />
<text x="398.62" y="959.5" ></text>
</g>
<g >
<title>tcp_ack (10,101,010 samples, 0.02%)</title><rect x="682.1" y="693" width="0.2" height="15.0" fill="rgb(227,127,8)" rx="2" ry="2" />
<text x="685.08" y="703.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="1142.9" y="1157" width="0.2" height="15.0" fill="rgb(213,22,36)" rx="2" ry="2" />
<text x="1145.92" y="1167.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (161,616,160 samples, 0.28%)</title><rect x="1136.7" y="1173" width="3.3" height="15.0" fill="rgb(232,34,48)" rx="2" ry="2" />
<text x="1139.67" y="1183.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="300.4" y="917" width="0.2" height="15.0" fill="rgb(249,175,11)" rx="2" ry="2" />
<text x="303.42" y="927.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (10,101,010 samples, 0.02%)</title><rect x="887.5" y="1061" width="0.2" height="15.0" fill="rgb(229,122,40)" rx="2" ry="2" />
<text x="890.50" y="1071.5" ></text>
</g>
<g >
<title>zif_ini_set (20,202,020 samples, 0.04%)</title><rect x="1072.5" y="1141" width="0.4" height="15.0" fill="rgb(252,186,7)" rx="2" ry="2" />
<text x="1075.50" y="1151.5" ></text>
</g>
<g >
<title>start_xmit (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="773" width="0.3" height="15.0" fill="rgb(209,117,32)" rx="2" ry="2" />
<text x="1044.25" y="783.5" ></text>
</g>
<g >
<title>fpm_stdio_child_said (171,717,170 samples, 0.30%)</title><rect x="212.1" y="1125" width="3.5" height="15.0" fill="rgb(207,79,32)" rx="2" ry="2" />
<text x="215.08" y="1135.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (20,202,020 samples, 0.04%)</title><rect x="1168.8" y="1141" width="0.4" height="15.0" fill="rgb(205,157,14)" rx="2" ry="2" />
<text x="1171.75" y="1151.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (60,606,060 samples, 0.11%)</title><rect x="727.7" y="1045" width="1.3" height="15.0" fill="rgb(228,73,45)" rx="2" ry="2" />
<text x="730.71" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="869" width="0.2" height="15.0" fill="rgb(230,96,53)" rx="2" ry="2" />
<text x="1117.17" y="879.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (20,202,020 samples, 0.04%)</title><rect x="1125.8" y="933" width="0.4" height="15.0" fill="rgb(235,172,8)" rx="2" ry="2" />
<text x="1128.83" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="501" width="0.4" height="15.0" fill="rgb(232,145,30)" rx="2" ry="2" />
<text x="1092.58" y="511.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="193.8" y="885" width="0.2" height="15.0" fill="rgb(226,192,5)" rx="2" ry="2" />
<text x="196.75" y="895.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="880.2" y="949" width="0.4" height="15.0" fill="rgb(252,189,2)" rx="2" ry="2" />
<text x="883.21" y="959.5" ></text>
</g>
<g >
<title>zend_include_or_eval (40,404,040 samples, 0.07%)</title><rect x="713.3" y="997" width="0.9" height="15.0" fill="rgb(237,170,16)" rx="2" ry="2" />
<text x="716.33" y="1007.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1132.9" y="1157" width="0.2" height="15.0" fill="rgb(240,71,7)" rx="2" ry="2" />
<text x="1135.92" y="1167.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="672.5" y="1093" width="0.2" height="15.0" fill="rgb(216,0,50)" rx="2" ry="2" />
<text x="675.50" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (373,737,370 samples, 0.65%)</title><rect x="1110.2" y="1173" width="7.7" height="15.0" fill="rgb(236,211,41)" rx="2" ry="2" />
<text x="1113.21" y="1183.5" ></text>
</g>
<g >
<title>accel_init_interned_string_for_php (30,303,030 samples, 0.05%)</title><rect x="701.5" y="933" width="0.6" height="15.0" fill="rgb(239,25,8)" rx="2" ry="2" />
<text x="704.46" y="943.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_conn_data_free_options_pub (10,101,010 samples, 0.02%)</title><rect x="1091.0" y="965" width="0.2" height="15.0" fill="rgb(214,102,20)" rx="2" ry="2" />
<text x="1094.04" y="975.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1045" width="0.2" height="15.0" fill="rgb(222,222,32)" rx="2" ry="2" />
<text x="985.92" y="1055.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_CV_UNUSED_OP_DATA_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="619.4" y="1125" width="0.2" height="15.0" fill="rgb(239,123,12)" rx="2" ry="2" />
<text x="622.38" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,292,929,280 samples, 2.26%)</title><rect x="1145.2" y="1205" width="26.7" height="15.0" fill="rgb(232,178,25)" rx="2" ry="2" />
<text x="1148.21" y="1215.5" >e..</text>
</g>
<g >
<title>ZEND_ASSIGN_STATIC_PROP_SPEC_OP_DATA_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="646.5" y="1125" width="0.2" height="15.0" fill="rgb(219,157,34)" rx="2" ry="2" />
<text x="649.46" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (1,404,040,390 samples, 2.45%)</title><rect x="720.8" y="1061" width="29.0" height="15.0" fill="rgb(230,91,39)" rx="2" ry="2" />
<text x="723.83" y="1071.5" >ze..</text>
</g>
<g >
<title>process_backlog (616,161,610 samples, 1.08%)</title><rect x="1151.5" y="821" width="12.7" height="15.0" fill="rgb(242,155,35)" rx="2" ry="2" />
<text x="1154.46" y="831.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (3,212,121,180 samples, 5.61%)</title><rect x="807.3" y="1029" width="66.2" height="15.0" fill="rgb(227,200,4)" rx="2" ry="2" />
<text x="810.29" y="1039.5" >ZEND_DE..</text>
</g>
<g >
<title>fpm_clock_get (10,101,010 samples, 0.02%)</title><rect x="206.5" y="1141" width="0.2" height="15.0" fill="rgb(230,72,40)" rx="2" ry="2" />
<text x="209.46" y="1151.5" ></text>
</g>
<g >
<title>setitimer (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1157" width="0.2" height="15.0" fill="rgb(253,54,19)" rx="2" ry="2" />
<text x="1081.33" y="1167.5" ></text>
</g>
<g >
<title>__do_page_fault (10,101,010 samples, 0.02%)</title><rect x="772.1" y="981" width="0.2" height="15.0" fill="rgb(224,22,41)" rx="2" ry="2" />
<text x="775.08" y="991.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="427.1" y="693" width="0.2" height="15.0" fill="rgb(226,144,51)" rx="2" ry="2" />
<text x="430.08" y="703.5" ></text>
</g>
<g >
<title>__ip_finish_output (717,171,710 samples, 1.25%)</title><rect x="1151.0" y="933" width="14.8" height="15.0" fill="rgb(218,74,4)" rx="2" ry="2" />
<text x="1154.04" y="943.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (20,202,020 samples, 0.04%)</title><rect x="834.0" y="917" width="0.4" height="15.0" fill="rgb(227,109,29)" rx="2" ry="2" />
<text x="836.96" y="927.5" ></text>
</g>
<g >
<title>persistent_compile_file (70,707,070 samples, 0.12%)</title><rect x="777.7" y="981" width="1.5" height="15.0" fill="rgb(220,129,18)" rx="2" ry="2" />
<text x="780.71" y="991.5" ></text>
</g>
<g >
<title>link_path_walk.part.33 (1,505,050,490 samples, 2.63%)</title><rect x="379.6" y="965" width="31.0" height="15.0" fill="rgb(225,44,18)" rx="2" ry="2" />
<text x="382.58" y="975.5" >li..</text>
</g>
<g >
<title>zend_jit_fetch_dim_str_offset_r_helper (10,101,010 samples, 0.02%)</title><rect x="496.9" y="1109" width="0.2" height="15.0" fill="rgb(223,73,2)" rx="2" ry="2" />
<text x="499.88" y="1119.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="925.4" y="565" width="0.2" height="15.0" fill="rgb(214,142,34)" rx="2" ry="2" />
<text x="928.42" y="575.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="936.2" y="837" width="0.5" height="15.0" fill="rgb(217,45,20)" rx="2" ry="2" />
<text x="939.25" y="847.5" ></text>
</g>
<g >
<title>posix_lock_inode (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1013" width="0.2" height="15.0" fill="rgb(222,111,6)" rx="2" ry="2" />
<text x="1105.08" y="1023.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (737,373,730 samples, 1.29%)</title><rect x="792.1" y="1029" width="15.2" height="15.0" fill="rgb(224,200,10)" rx="2" ry="2" />
<text x="795.08" y="1039.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="901" width="0.2" height="15.0" fill="rgb(243,221,12)" rx="2" ry="2" />
<text x="1085.08" y="911.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="899.6" y="1029" width="0.2" height="15.0" fill="rgb(243,51,13)" rx="2" ry="2" />
<text x="902.58" y="1039.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1168.1" y="1093" width="0.2" height="15.0" fill="rgb(222,98,1)" rx="2" ry="2" />
<text x="1171.12" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="522.5" y="1093" width="0.2" height="15.0" fill="rgb(231,76,25)" rx="2" ry="2" />
<text x="525.50" y="1103.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="949.0" y="1013" width="0.2" height="15.0" fill="rgb(213,78,33)" rx="2" ry="2" />
<text x="951.96" y="1023.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="1163.8" y="709" width="0.2" height="15.0" fill="rgb(242,179,54)" rx="2" ry="2" />
<text x="1166.75" y="719.5" ></text>
</g>
<g >
<title>__x64_sys_access (90,909,090 samples, 0.16%)</title><rect x="525.8" y="1077" width="1.9" height="15.0" fill="rgb(215,31,5)" rx="2" ry="2" />
<text x="528.83" y="1087.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="1147.3" y="869" width="0.2" height="15.0" fill="rgb(234,163,13)" rx="2" ry="2" />
<text x="1150.29" y="879.5" ></text>
</g>
<g >
<title>inode_permission (30,303,030 samples, 0.05%)</title><rect x="910.6" y="901" width="0.6" height="15.0" fill="rgb(248,224,36)" rx="2" ry="2" />
<text x="913.62" y="911.5" ></text>
</g>
<g >
<title>zend_accel_hash_str_find_entry (10,101,010 samples, 0.02%)</title><rect x="1076.5" y="1141" width="0.2" height="15.0" fill="rgb(232,99,4)" rx="2" ry="2" />
<text x="1079.46" y="1151.5" ></text>
</g>
<g >
<title>compile_filename (161,616,160 samples, 0.28%)</title><rect x="745.6" y="997" width="3.4" height="15.0" fill="rgb(222,95,31)" rx="2" ry="2" />
<text x="748.62" y="1007.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1173" width="0.2" height="15.0" fill="rgb(213,108,53)" rx="2" ry="2" />
<text x="205.50" y="1183.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="244.0" y="885" width="0.2" height="15.0" fill="rgb(246,163,11)" rx="2" ry="2" />
<text x="246.96" y="895.5" ></text>
</g>
<g >
<title>TRACE-383$Wikimedia\Services\ServiceContainer::loadWiringFiles$125 (111,111,110 samples, 0.19%)</title><rect x="500.0" y="1141" width="2.3" height="15.0" fill="rgb(244,221,48)" rx="2" ry="2" />
<text x="503.00" y="1151.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="947.7" y="997" width="0.2" height="15.0" fill="rgb(214,17,20)" rx="2" ry="2" />
<text x="950.71" y="1007.5" ></text>
</g>
<g >
<title>zif_strpos (10,101,010 samples, 0.02%)</title><rect x="1075.6" y="1141" width="0.2" height="15.0" fill="rgb(244,175,12)" rx="2" ry="2" />
<text x="1078.62" y="1151.5" ></text>
</g>
<g >
<title>ZEND_IS_EQUAL_SPEC_CV_CONST_JMPZ_HANDLER (10,101,010 samples, 0.02%)</title><rect x="553.8" y="1141" width="0.2" height="15.0" fill="rgb(244,14,27)" rx="2" ry="2" />
<text x="556.75" y="1151.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="757" width="0.2" height="15.0" fill="rgb(251,155,47)" rx="2" ry="2" />
<text x="1091.33" y="767.5" ></text>
</g>
<g >
<title>memcached_get_user_data (10,101,010 samples, 0.02%)</title><rect x="35.8" y="1189" width="0.2" height="15.0" fill="rgb(235,99,16)" rx="2" ry="2" />
<text x="38.83" y="1199.5" ></text>
</g>
<g >
<title>user_path_at_empty (20,202,020 samples, 0.04%)</title><rect x="500.6" y="949" width="0.4" height="15.0" fill="rgb(222,17,35)" rx="2" ry="2" />
<text x="503.62" y="959.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (10,101,010 samples, 0.02%)</title><rect x="940.0" y="133" width="0.2" height="15.0" fill="rgb(252,27,37)" rx="2" ry="2" />
<text x="943.00" y="143.5" ></text>
</g>
<g >
<title>do_softirq.part.20 (101,010,100 samples, 0.18%)</title><rect x="939.4" y="629" width="2.1" height="15.0" fill="rgb(223,97,30)" rx="2" ry="2" />
<text x="942.38" y="639.5" ></text>
</g>
<g >
<title>TRACE-477$Wikimedia\Rdbms\Database::getDBname$3004 (10,101,010 samples, 0.02%)</title><rect x="530.8" y="1141" width="0.2" height="15.0" fill="rgb(208,30,36)" rx="2" ry="2" />
<text x="533.83" y="1151.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="672.5" y="837" width="0.2" height="15.0" fill="rgb(226,200,1)" rx="2" ry="2" />
<text x="675.50" y="847.5" ></text>
</g>
<g >
<title>zif_defined (30,303,030 samples, 0.05%)</title><rect x="309.0" y="1125" width="0.6" height="15.0" fill="rgb(238,222,9)" rx="2" ry="2" />
<text x="311.96" y="1135.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="922.7" y="885" width="0.2" height="15.0" fill="rgb(242,156,4)" rx="2" ry="2" />
<text x="925.71" y="895.5" ></text>
</g>
<g >
<title>__x64_sys_dup (10,101,010 samples, 0.02%)</title><rect x="950.0" y="1029" width="0.2" height="15.0" fill="rgb(245,149,25)" rx="2" ry="2" />
<text x="953.00" y="1039.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (20,202,020 samples, 0.04%)</title><rect x="685.6" y="1029" width="0.4" height="15.0" fill="rgb(223,105,40)" rx="2" ry="2" />
<text x="688.62" y="1039.5" ></text>
</g>
<g >
<title>zend_call_known_function (20,202,020 samples, 0.04%)</title><rect x="922.3" y="853" width="0.4" height="15.0" fill="rgb(233,177,10)" rx="2" ry="2" />
<text x="925.29" y="863.5" ></text>
</g>
<g >
<title>zif_constant (10,101,010 samples, 0.02%)</title><rect x="1071.7" y="1141" width="0.2" height="15.0" fill="rgb(213,229,27)" rx="2" ry="2" />
<text x="1074.67" y="1151.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="690.0" y="1077" width="0.2" height="15.0" fill="rgb(208,121,14)" rx="2" ry="2" />
<text x="693.00" y="1087.5" ></text>
</g>
<g >
<title>memcpy (50,505,050 samples, 0.09%)</title><rect x="142.5" y="1077" width="1.0" height="15.0" fill="rgb(212,41,46)" rx="2" ry="2" />
<text x="145.50" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="676.5" y="1029" width="0.2" height="15.0" fill="rgb(232,213,8)" rx="2" ry="2" />
<text x="679.46" y="1039.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="641.5" y="1029" width="0.2" height="15.0" fill="rgb(250,169,24)" rx="2" ry="2" />
<text x="644.46" y="1039.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="950.4" y="997" width="0.2" height="15.0" fill="rgb(233,157,28)" rx="2" ry="2" />
<text x="953.42" y="1007.5" ></text>
</g>
<g >
<title>zend_fetch_var_address_helper_SPEC_CONST_UNUSED (50,505,050 samples, 0.09%)</title><rect x="292.7" y="1125" width="1.1" height="15.0" fill="rgb(209,174,36)" rx="2" ry="2" />
<text x="295.71" y="1135.5" ></text>
</g>
<g >
<title>br_nf_pre_routing_finish (10,101,010 samples, 0.02%)</title><rect x="672.5" y="917" width="0.2" height="15.0" fill="rgb(215,176,43)" rx="2" ry="2" />
<text x="675.50" y="927.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="339.2" y="981" width="0.4" height="15.0" fill="rgb(230,105,7)" rx="2" ry="2" />
<text x="342.17" y="991.5" ></text>
</g>
<g >
<title>persistent_compile_file (70,707,070 samples, 0.12%)</title><rect x="708.3" y="1093" width="1.5" height="15.0" fill="rgb(218,151,31)" rx="2" ry="2" />
<text x="711.33" y="1103.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="524.2" y="837" width="0.2" height="15.0" fill="rgb(208,196,34)" rx="2" ry="2" />
<text x="527.17" y="847.5" ></text>
</g>
<g >
<title>locks_unlink_lock_ctx (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="997" width="0.2" height="15.0" fill="rgb(252,62,12)" rx="2" ry="2" />
<text x="1105.08" y="1007.5" ></text>
</g>
<g >
<title>TRACE-203$MediaWiki\Storage\NameTableStoreFactory::getSlotRoles$148 (30,303,030 samples, 0.05%)</title><rect x="344.6" y="1141" width="0.6" height="15.0" fill="rgb(214,206,45)" rx="2" ry="2" />
<text x="347.58" y="1151.5" ></text>
</g>
<g >
<title>new_sync_write (20,202,020 samples, 0.04%)</title><rect x="1108.1" y="1061" width="0.4" height="15.0" fill="rgb(207,62,25)" rx="2" ry="2" />
<text x="1111.12" y="1071.5" ></text>
</g>
<g >
<title>veth_xmit (20,202,020 samples, 0.04%)</title><rect x="1165.0" y="853" width="0.4" height="15.0" fill="rgb(242,9,25)" rx="2" ry="2" />
<text x="1168.00" y="863.5" ></text>
</g>
<g >
<title>[libmemcached.so.11.0.0] (90,909,090 samples, 0.16%)</title><rect x="30.6" y="1205" width="1.9" height="15.0" fill="rgb(248,106,20)" rx="2" ry="2" />
<text x="33.62" y="1215.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (10,101,010 samples, 0.02%)</title><rect x="654.2" y="901" width="0.2" height="15.0" fill="rgb(217,210,11)" rx="2" ry="2" />
<text x="657.17" y="911.5" ></text>
</g>
<g >
<title>persistent_compile_file (20,202,020 samples, 0.04%)</title><rect x="524.6" y="981" width="0.4" height="15.0" fill="rgb(250,213,40)" rx="2" ry="2" />
<text x="527.58" y="991.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1059.2" y="1061" width="0.2" height="15.0" fill="rgb(252,8,26)" rx="2" ry="2" />
<text x="1062.17" y="1071.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1061" width="0.2" height="15.0" fill="rgb(246,212,2)" rx="2" ry="2" />
<text x="1118.62" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1077" width="0.2" height="15.0" fill="rgb(213,89,22)" rx="2" ry="2" />
<text x="985.92" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="905.0" y="1013" width="0.2" height="15.0" fill="rgb(246,126,12)" rx="2" ry="2" />
<text x="908.00" y="1023.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="344.8" y="1093" width="0.2" height="15.0" fill="rgb(226,153,47)" rx="2" ry="2" />
<text x="347.79" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="1012.9" y="917" width="0.2" height="15.0" fill="rgb(220,117,45)" rx="2" ry="2" />
<text x="1015.92" y="927.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="523.8" y="917" width="0.2" height="15.0" fill="rgb(229,126,8)" rx="2" ry="2" />
<text x="526.75" y="927.5" ></text>
</g>
<g >
<title>zif_fclose (20,202,020 samples, 0.04%)</title><rect x="1086.0" y="1061" width="0.5" height="15.0" fill="rgb(213,31,36)" rx="2" ry="2" />
<text x="1089.04" y="1071.5" ></text>
</g>
<g >
<title>php_var_unserialize_internal (1,888,888,870 samples, 3.30%)</title><rect x="145.2" y="1077" width="39.0" height="15.0" fill="rgb(227,109,44)" rx="2" ry="2" />
<text x="148.21" y="1087.5" >php..</text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="342.5" y="1077" width="0.2" height="15.0" fill="rgb(228,205,36)" rx="2" ry="2" />
<text x="345.50" y="1087.5" ></text>
</g>
<g >
<title>__getpid (10,101,010 samples, 0.02%)</title><rect x="207.9" y="1157" width="0.2" height="15.0" fill="rgb(236,213,16)" rx="2" ry="2" />
<text x="210.92" y="1167.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="927.3" y="837" width="0.2" height="15.0" fill="rgb(220,1,23)" rx="2" ry="2" />
<text x="930.29" y="847.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="1053.3" y="725" width="0.2" height="15.0" fill="rgb(251,49,14)" rx="2" ry="2" />
<text x="1056.33" y="735.5" ></text>
</g>
<g >
<title>prepare_creds (30,303,030 samples, 0.05%)</title><rect x="910.0" y="965" width="0.6" height="15.0" fill="rgb(235,190,28)" rx="2" ry="2" />
<text x="913.00" y="975.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="427.1" y="757" width="0.2" height="15.0" fill="rgb(220,63,4)" rx="2" ry="2" />
<text x="430.08" y="767.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="30.2" y="709" width="0.2" height="15.0" fill="rgb(238,188,53)" rx="2" ry="2" />
<text x="33.21" y="719.5" ></text>
</g>
<g >
<title>zend_hash_add_empty_element (20,202,020 samples, 0.04%)</title><rect x="279.8" y="1061" width="0.4" height="15.0" fill="rgb(253,160,13)" rx="2" ry="2" />
<text x="282.79" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_class (10,101,010 samples, 0.02%)</title><rect x="343.1" y="1093" width="0.2" height="15.0" fill="rgb(254,30,20)" rx="2" ry="2" />
<text x="346.12" y="1103.5" ></text>
</g>
<g >
<title>zend_create_closure (616,161,610 samples, 1.08%)</title><rect x="660.2" y="1109" width="12.7" height="15.0" fill="rgb(244,52,42)" rx="2" ry="2" />
<text x="663.21" y="1119.5" ></text>
</g>
<g >
<title>ip_rcv (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="309" width="0.4" height="15.0" fill="rgb(213,115,2)" rx="2" ry="2" />
<text x="1092.58" y="319.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="927.1" y="837" width="0.2" height="15.0" fill="rgb(243,11,31)" rx="2" ry="2" />
<text x="930.08" y="847.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="850.6" y="757" width="0.2" height="15.0" fill="rgb(254,134,42)" rx="2" ry="2" />
<text x="853.62" y="767.5" ></text>
</g>
<g >
<title>ip_output (202,020,200 samples, 0.35%)</title><rect x="1127.3" y="997" width="4.2" height="15.0" fill="rgb(208,24,46)" rx="2" ry="2" />
<text x="1130.29" y="1007.5" ></text>
</g>
<g >
<title>zend_hash_do_resize.part.0 (10,101,010 samples, 0.02%)</title><rect x="742.3" y="821" width="0.2" height="15.0" fill="rgb(250,81,19)" rx="2" ry="2" />
<text x="745.29" y="831.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="508.8" y="1061" width="0.2" height="15.0" fill="rgb(217,167,41)" rx="2" ry="2" />
<text x="511.75" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_merge (20,202,020 samples, 0.04%)</title><rect x="249.0" y="1093" width="0.4" height="15.0" fill="rgb(248,212,44)" rx="2" ry="2" />
<text x="251.96" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_rehash (20,202,020 samples, 0.04%)</title><rect x="617.5" y="1093" width="0.4" height="15.0" fill="rgb(240,80,2)" rx="2" ry="2" />
<text x="620.50" y="1103.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="303.1" y="757" width="0.2" height="15.0" fill="rgb(221,43,24)" rx="2" ry="2" />
<text x="306.12" y="767.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="355.4" y="1109" width="0.2" height="15.0" fill="rgb(212,107,4)" rx="2" ry="2" />
<text x="358.42" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="731.2" y="917" width="0.3" height="15.0" fill="rgb(227,126,42)" rx="2" ry="2" />
<text x="734.25" y="927.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="546.5" y="1141" width="0.2" height="15.0" fill="rgb(242,68,43)" rx="2" ry="2" />
<text x="549.46" y="1151.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (10,101,010 samples, 0.02%)</title><rect x="1089.0" y="757" width="0.2" height="15.0" fill="rgb(241,33,4)" rx="2" ry="2" />
<text x="1091.96" y="767.5" ></text>
</g>
<g >
<title>mysqlnd_read_packet_header_and_body.constprop.0 (50,505,050 samples, 0.09%)</title><rect x="925.0" y="949" width="1.0" height="15.0" fill="rgb(206,90,49)" rx="2" ry="2" />
<text x="928.00" y="959.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="183.8" y="757" width="0.2" height="15.0" fill="rgb(253,192,21)" rx="2" ry="2" />
<text x="186.75" y="767.5" ></text>
</g>
<g >
<title>TRACE-166$Fandom\Includes\Logging\FandomLoggingSpi::getLogger$73 (10,101,010 samples, 0.02%)</title><rect x="295.2" y="1141" width="0.2" height="15.0" fill="rgb(252,109,10)" rx="2" ry="2" />
<text x="298.21" y="1151.5" ></text>
</g>
<g >
<title>execute_ex (20,202,020 samples, 0.04%)</title><rect x="524.0" y="917" width="0.4" height="15.0" fill="rgb(212,138,38)" rx="2" ry="2" />
<text x="526.96" y="927.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (70,707,070 samples, 0.12%)</title><rect x="916.5" y="1013" width="1.4" height="15.0" fill="rgb(221,188,52)" rx="2" ry="2" />
<text x="919.46" y="1023.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="519.0" y="981" width="0.2" height="15.0" fill="rgb(216,113,32)" rx="2" ry="2" />
<text x="521.96" y="991.5" ></text>
</g>
<g >
<title>__this_module (10,101,010 samples, 0.02%)</title><rect x="947.7" y="965" width="0.2" height="15.0" fill="rgb(235,141,51)" rx="2" ry="2" />
<text x="950.71" y="975.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (20,202,020 samples, 0.04%)</title><rect x="726.5" y="981" width="0.4" height="15.0" fill="rgb(236,164,11)" rx="2" ry="2" />
<text x="729.46" y="991.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (20,202,020 samples, 0.04%)</title><rect x="748.5" y="949" width="0.5" height="15.0" fill="rgb(231,57,25)" rx="2" ry="2" />
<text x="751.54" y="959.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="475.8" y="1109" width="0.2" height="15.0" fill="rgb(236,102,34)" rx="2" ry="2" />
<text x="478.83" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (20,202,020 samples, 0.04%)</title><rect x="627.5" y="1093" width="0.4" height="15.0" fill="rgb(239,47,0)" rx="2" ry="2" />
<text x="630.50" y="1103.5" ></text>
</g>
<g >
<title>__x64_sys_fcntl (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1093" width="0.2" height="15.0" fill="rgb(217,84,38)" rx="2" ry="2" />
<text x="1105.08" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="476.9" y="949" width="0.2" height="15.0" fill="rgb(220,134,0)" rx="2" ry="2" />
<text x="479.88" y="959.5" ></text>
</g>
<g >
<title>TRACE-231$Monolog\Logger::addRecord$328 (20,202,020 samples, 0.04%)</title><rect x="450.2" y="1141" width="0.4" height="15.0" fill="rgb(226,1,41)" rx="2" ry="2" />
<text x="453.21" y="1151.5" ></text>
</g>
<g >
<title>spl_perform_autoload (50,505,050 samples, 0.09%)</title><rect x="799.4" y="853" width="1.0" height="15.0" fill="rgb(220,117,37)" rx="2" ry="2" />
<text x="802.38" y="863.5" ></text>
</g>
<g >
<title>schedule (20,202,020 samples, 0.04%)</title><rect x="1053.5" y="853" width="0.5" height="15.0" fill="rgb(233,8,3)" rx="2" ry="2" />
<text x="1056.54" y="863.5" ></text>
</g>
<g >
<title>security_file_permission (10,101,010 samples, 0.02%)</title><rect x="1037.5" y="965" width="0.2" height="15.0" fill="rgb(235,164,53)" rx="2" ry="2" />
<text x="1040.50" y="975.5" ></text>
</g>
<g >
<title>gc_possible_root (10,101,010 samples, 0.02%)</title><rect x="544.2" y="1125" width="0.2" height="15.0" fill="rgb(226,77,22)" rx="2" ry="2" />
<text x="547.17" y="1135.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (30,303,030 samples, 0.05%)</title><rect x="1037.9" y="997" width="0.6" height="15.0" fill="rgb(212,107,51)" rx="2" ry="2" />
<text x="1040.92" y="1007.5" ></text>
</g>
<g >
<title>accel_post_deactivate (10,101,010 samples, 0.02%)</title><rect x="1076.7" y="1157" width="0.2" height="15.0" fill="rgb(205,116,25)" rx="2" ry="2" />
<text x="1079.67" y="1167.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="511.7" y="901" width="0.2" height="15.0" fill="rgb(208,128,5)" rx="2" ry="2" />
<text x="514.67" y="911.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="539.4" y="741" width="0.2" height="15.0" fill="rgb(217,191,13)" rx="2" ry="2" />
<text x="542.38" y="751.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="755.8" y="1077" width="0.2" height="15.0" fill="rgb(208,139,1)" rx="2" ry="2" />
<text x="758.83" y="1087.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="283.8" y="949" width="0.4" height="15.0" fill="rgb(230,151,10)" rx="2" ry="2" />
<text x="286.75" y="959.5" ></text>
</g>
<g >
<title>zend_fcall_info_init (10,101,010 samples, 0.02%)</title><rect x="348.1" y="1125" width="0.2" height="15.0" fill="rgb(237,192,40)" rx="2" ry="2" />
<text x="351.12" y="1135.5" ></text>
</g>
<g >
<title>zif_function_exists (10,101,010 samples, 0.02%)</title><rect x="309.6" y="1125" width="0.2" height="15.0" fill="rgb(238,114,32)" rx="2" ry="2" />
<text x="312.58" y="1135.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="524.0" y="821" width="0.2" height="15.0" fill="rgb(237,6,12)" rx="2" ry="2" />
<text x="526.96" y="831.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (40,404,040 samples, 0.07%)</title><rect x="797.1" y="933" width="0.8" height="15.0" fill="rgb(243,88,35)" rx="2" ry="2" />
<text x="800.08" y="943.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1141.7" y="1157" width="0.2" height="15.0" fill="rgb(215,117,4)" rx="2" ry="2" />
<text x="1144.67" y="1167.5" ></text>
</g>
<g >
<title>zend_call_known_function (10,101,010 samples, 0.02%)</title><rect x="519.0" y="1061" width="0.2" height="15.0" fill="rgb(231,3,14)" rx="2" ry="2" />
<text x="521.96" y="1071.5" ></text>
</g>
<g >
<title>TRACE-397$MediumSpecificBagOStuff::set$180 (10,101,010 samples, 0.02%)</title><rect x="503.5" y="1141" width="0.3" height="15.0" fill="rgb(211,73,0)" rx="2" ry="2" />
<text x="506.54" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1061" width="0.2" height="15.0" fill="rgb(254,205,13)" rx="2" ry="2" />
<text x="246.96" y="1071.5" ></text>
</g>
<g >
<title>php_json_encode_zval (90,909,090 samples, 0.16%)</title><rect x="1045.8" y="1077" width="1.9" height="15.0" fill="rgb(213,53,48)" rx="2" ry="2" />
<text x="1048.83" y="1087.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (40,404,040 samples, 0.07%)</title><rect x="1009.4" y="981" width="0.8" height="15.0" fill="rgb(243,215,41)" rx="2" ry="2" />
<text x="1012.38" y="991.5" ></text>
</g>
<g >
<title>ip_finish_output (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="757" width="1.7" height="15.0" fill="rgb(244,153,42)" rx="2" ry="2" />
<text x="1028.00" y="767.5" ></text>
</g>
<g >
<title>execute_ex (171,717,170 samples, 0.30%)</title><rect x="741.0" y="917" width="3.6" height="15.0" fill="rgb(211,171,33)" rx="2" ry="2" />
<text x="744.04" y="927.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="371.9" y="853" width="0.2" height="15.0" fill="rgb(212,116,19)" rx="2" ry="2" />
<text x="374.88" y="863.5" ></text>
</g>
<g >
<title>zend_include_or_eval (393,939,390 samples, 0.69%)</title><rect x="874.0" y="1013" width="8.1" height="15.0" fill="rgb(221,55,52)" rx="2" ry="2" />
<text x="876.96" y="1023.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (262,626,260 samples, 0.46%)</title><rect x="25.2" y="1205" width="5.4" height="15.0" fill="rgb(226,91,5)" rx="2" ry="2" />
<text x="28.21" y="1215.5" ></text>
</g>
<g >
<title>nf_ct_deliver_cached_events (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="821" width="0.3" height="15.0" fill="rgb(208,69,10)" rx="2" ry="2" />
<text x="1036.54" y="831.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="618.3" y="1109" width="0.2" height="15.0" fill="rgb(232,68,28)" rx="2" ry="2" />
<text x="621.33" y="1119.5" ></text>
</g>
<g >
<title>zend_array_dup (30,303,030 samples, 0.05%)</title><rect x="248.3" y="1077" width="0.7" height="15.0" fill="rgb(224,119,27)" rx="2" ry="2" />
<text x="251.33" y="1087.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (10,101,010 samples, 0.02%)</title><rect x="805.2" y="677" width="0.2" height="15.0" fill="rgb(249,37,38)" rx="2" ry="2" />
<text x="808.21" y="687.5" ></text>
</g>
<g >
<title>SHA256Transform (10,101,010 samples, 0.02%)</title><rect x="928.8" y="933" width="0.2" height="15.0" fill="rgb(242,90,31)" rx="2" ry="2" />
<text x="931.75" y="943.5" ></text>
</g>
<g >
<title>zif_set_error_handler (40,404,040 samples, 0.07%)</title><rect x="1057.7" y="1125" width="0.8" height="15.0" fill="rgb(211,38,4)" rx="2" ry="2" />
<text x="1060.71" y="1135.5" ></text>
</g>
<g >
<title>TRACE-338$Wikimedia\Rdbms\LoadBalancer::__construct$215 (40,404,040 samples, 0.07%)</title><rect x="492.7" y="1141" width="0.8" height="15.0" fill="rgb(241,100,31)" rx="2" ry="2" />
<text x="495.71" y="1151.5" ></text>
</g>
<g >
<title>schedule (20,202,020 samples, 0.04%)</title><rect x="926.5" y="757" width="0.4" height="15.0" fill="rgb(223,169,43)" rx="2" ry="2" />
<text x="929.46" y="767.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="904.0" y="629" width="0.2" height="15.0" fill="rgb(236,98,27)" rx="2" ry="2" />
<text x="906.96" y="639.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (10,101,010 samples, 0.02%)</title><rect x="641.7" y="869" width="0.2" height="15.0" fill="rgb(226,155,11)" rx="2" ry="2" />
<text x="644.67" y="879.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (30,303,030 samples, 0.05%)</title><rect x="1025.4" y="533" width="0.6" height="15.0" fill="rgb(205,227,54)" rx="2" ry="2" />
<text x="1028.42" y="543.5" ></text>
</g>
<g >
<title>zend_jit_symtable_lookup_w (20,202,020 samples, 0.04%)</title><rect x="489.6" y="1125" width="0.4" height="15.0" fill="rgb(245,112,38)" rx="2" ry="2" />
<text x="492.58" y="1135.5" ></text>
</g>
<g >
<title>vfs_read (20,202,020 samples, 0.04%)</title><rect x="207.3" y="1077" width="0.4" height="15.0" fill="rgb(217,77,54)" rx="2" ry="2" />
<text x="210.29" y="1087.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="1045" width="0.2" height="15.0" fill="rgb(225,100,23)" rx="2" ry="2" />
<text x="1022.79" y="1055.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="613" width="0.2" height="15.0" fill="rgb(224,61,15)" rx="2" ry="2" />
<text x="1170.08" y="623.5" ></text>
</g>
<g >
<title>ext4_file_read_iter (20,202,020 samples, 0.04%)</title><rect x="946.5" y="917" width="0.4" height="15.0" fill="rgb(229,211,3)" rx="2" ry="2" />
<text x="949.46" y="927.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="622.5" y="1109" width="0.2" height="15.0" fill="rgb(220,153,8)" rx="2" ry="2" />
<text x="625.50" y="1119.5" ></text>
</g>
<g >
<title>ip_output (80,808,080 samples, 0.14%)</title><rect x="1185.0" y="533" width="1.7" height="15.0" fill="rgb(214,20,1)" rx="2" ry="2" />
<text x="1188.00" y="543.5" ></text>
</g>
<g >
<title>fq_codel_dequeue (10,101,010 samples, 0.02%)</title><rect x="1127.7" y="421" width="0.2" height="15.0" fill="rgb(232,200,2)" rx="2" ry="2" />
<text x="1130.71" y="431.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="980.0" y="1125" width="0.2" height="15.0" fill="rgb(218,222,49)" rx="2" ry="2" />
<text x="983.00" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (80,808,080 samples, 0.14%)</title><rect x="946.2" y="1013" width="1.7" height="15.0" fill="rgb(254,80,22)" rx="2" ry="2" />
<text x="949.25" y="1023.5" ></text>
</g>
<g >
<title>zend_destroy_file_handle (10,101,010 samples, 0.02%)</title><rect x="704.0" y="1093" width="0.2" height="15.0" fill="rgb(238,61,24)" rx="2" ry="2" />
<text x="706.96" y="1103.5" ></text>
</g>
<g >
<title>tcp_rcv_established (10,101,010 samples, 0.02%)</title><rect x="973.3" y="853" width="0.2" height="15.0" fill="rgb(249,22,29)" rx="2" ry="2" />
<text x="976.33" y="863.5" ></text>
</g>
<g >
<title>auditd_test_task (10,101,010 samples, 0.02%)</title><rect x="947.9" y="997" width="0.2" height="15.0" fill="rgb(238,172,11)" rx="2" ry="2" />
<text x="950.92" y="1007.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1013" width="0.2" height="15.0" fill="rgb(222,165,6)" rx="2" ry="2" />
<text x="205.50" y="1023.5" ></text>
</g>
<g >
<title>zend_closure_new (10,101,010 samples, 0.02%)</title><rect x="1084.6" y="1013" width="0.2" height="15.0" fill="rgb(232,64,35)" rx="2" ry="2" />
<text x="1087.58" y="1023.5" ></text>
</g>
<g >
<title>prep_new_page (10,101,010 samples, 0.02%)</title><rect x="946.9" y="773" width="0.2" height="15.0" fill="rgb(210,81,18)" rx="2" ry="2" />
<text x="949.88" y="783.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="1142.1" y="1141" width="0.2" height="15.0" fill="rgb(225,111,28)" rx="2" ry="2" />
<text x="1145.08" y="1151.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="933" width="0.2" height="15.0" fill="rgb(224,220,49)" rx="2" ry="2" />
<text x="1127.17" y="943.5" ></text>
</g>
<g >
<title>wait_woken (20,202,020 samples, 0.04%)</title><rect x="1176.7" y="1077" width="0.4" height="15.0" fill="rgb(245,168,42)" rx="2" ry="2" />
<text x="1179.67" y="1087.5" ></text>
</g>
<g >
<title>tcp_v4_inbound_md5_hash (10,101,010 samples, 0.02%)</title><rect x="861.0" y="597" width="0.2" height="15.0" fill="rgb(231,61,4)" rx="2" ry="2" />
<text x="864.04" y="607.5" ></text>
</g>
<g >
<title>ip_finish_output (111,111,110 samples, 0.19%)</title><rect x="939.4" y="693" width="2.3" height="15.0" fill="rgb(211,71,10)" rx="2" ry="2" />
<text x="942.38" y="703.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="654.2" y="965" width="0.2" height="15.0" fill="rgb(244,20,34)" rx="2" ry="2" />
<text x="657.17" y="975.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (10,101,010 samples, 0.02%)</title><rect x="1088.5" y="821" width="0.3" height="15.0" fill="rgb(221,140,7)" rx="2" ry="2" />
<text x="1091.54" y="831.5" ></text>
</g>
<g >
<title>fcgi_end (141,414,140 samples, 0.25%)</title><rect x="1023.8" y="1109" width="2.9" height="15.0" fill="rgb(210,75,9)" rx="2" ry="2" />
<text x="1026.75" y="1119.5" ></text>
</g>
<g >
<title>ZEND_IS_IDENTICAL_SPEC_CV_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="756.5" y="1125" width="0.2" height="15.0" fill="rgb(246,102,46)" rx="2" ry="2" />
<text x="759.46" y="1135.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="912.3" y="853" width="0.2" height="15.0" fill="rgb(239,9,28)" rx="2" ry="2" />
<text x="915.29" y="863.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="856.9" y="629" width="0.2" height="15.0" fill="rgb(252,99,50)" rx="2" ry="2" />
<text x="859.88" y="639.5" ></text>
</g>
<g >
<title>ret_from_intr (20,202,020 samples, 0.04%)</title><rect x="998.8" y="1045" width="0.4" height="15.0" fill="rgb(230,160,3)" rx="2" ry="2" />
<text x="1001.75" y="1055.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="485.2" y="1125" width="0.2" height="15.0" fill="rgb(252,14,33)" rx="2" ry="2" />
<text x="488.21" y="1135.5" ></text>
</g>
<g >
<title>zend_attach_symbol_table (10,101,010 samples, 0.02%)</title><rect x="882.1" y="1029" width="0.2" height="15.0" fill="rgb(236,97,53)" rx="2" ry="2" />
<text x="885.08" y="1039.5" ></text>
</g>
<g >
<title>TRACE-2$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="739.4" y="917" width="0.2" height="15.0" fill="rgb(227,50,7)" rx="2" ry="2" />
<text x="742.38" y="927.5" ></text>
</g>
<g >
<title>zend_do_link_class (20,202,020 samples, 0.04%)</title><rect x="684.6" y="965" width="0.4" height="15.0" fill="rgb(213,160,17)" rx="2" ry="2" />
<text x="687.58" y="975.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="677.7" y="773" width="0.2" height="15.0" fill="rgb(212,154,45)" rx="2" ry="2" />
<text x="680.71" y="783.5" ></text>
</g>
<g >
<title>ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="281.5" y="1125" width="0.2" height="15.0" fill="rgb(248,62,34)" rx="2" ry="2" />
<text x="284.46" y="1135.5" ></text>
</g>
<g >
<title>zend_call_known_function (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1061" width="3.3" height="15.0" fill="rgb(214,221,36)" rx="2" ry="2" />
<text x="304.67" y="1071.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (20,202,020 samples, 0.04%)</title><rect x="687.5" y="981" width="0.4" height="15.0" fill="rgb(239,132,29)" rx="2" ry="2" />
<text x="690.50" y="991.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="789.0" y="677" width="0.2" height="15.0" fill="rgb(205,6,39)" rx="2" ry="2" />
<text x="791.96" y="687.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="672.5" y="725" width="0.2" height="15.0" fill="rgb(238,138,43)" rx="2" ry="2" />
<text x="675.50" y="735.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="944.4" y="1013" width="0.2" height="15.0" fill="rgb(240,13,39)" rx="2" ry="2" />
<text x="947.38" y="1023.5" ></text>
</g>
<g >
<title>inode_permission (585,858,580 samples, 1.02%)</title><rect x="381.0" y="949" width="12.1" height="15.0" fill="rgb(219,138,10)" rx="2" ry="2" />
<text x="384.04" y="959.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="469" width="0.4" height="15.0" fill="rgb(208,60,36)" rx="2" ry="2" />
<text x="1132.58" y="479.5" ></text>
</g>
<g >
<title>ipv4_confirm (10,101,010 samples, 0.02%)</title><rect x="1033.5" y="853" width="0.3" height="15.0" fill="rgb(238,142,32)" rx="2" ry="2" />
<text x="1036.54" y="863.5" ></text>
</g>
<g >
<title>nf_hook_slow (80,808,080 samples, 0.14%)</title><rect x="1125.6" y="981" width="1.7" height="15.0" fill="rgb(222,50,5)" rx="2" ry="2" />
<text x="1128.62" y="991.5" ></text>
</g>
<g >
<title>TRACE-420$ExtensionRegistry::exportExtractedData$488 (40,404,040 samples, 0.07%)</title><rect x="516.2" y="1141" width="0.9" height="15.0" fill="rgb(249,149,39)" rx="2" ry="2" />
<text x="519.25" y="1151.5" ></text>
</g>
<g >
<title>zif_array_keys (10,101,010 samples, 0.02%)</title><rect x="510.8" y="1125" width="0.2" height="15.0" fill="rgb(245,33,38)" rx="2" ry="2" />
<text x="513.83" y="1135.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="917" width="0.2" height="15.0" fill="rgb(225,143,23)" rx="2" ry="2" />
<text x="1085.08" y="927.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="654.2" y="1077" width="0.2" height="15.0" fill="rgb(226,53,12)" rx="2" ry="2" />
<text x="657.17" y="1087.5" ></text>
</g>
<g >
<title>zend_parse_va_args (30,303,030 samples, 0.05%)</title><rect x="1020.0" y="1093" width="0.6" height="15.0" fill="rgb(212,88,10)" rx="2" ry="2" />
<text x="1023.00" y="1103.5" ></text>
</g>
<g >
<title>php_pcre_match_impl (80,808,080 samples, 0.14%)</title><rect x="306.0" y="1109" width="1.7" height="15.0" fill="rgb(249,12,8)" rx="2" ry="2" />
<text x="309.04" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="471.2" y="1109" width="0.3" height="15.0" fill="rgb(210,27,38)" rx="2" ry="2" />
<text x="474.25" y="1119.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="834.0" y="885" width="0.4" height="15.0" fill="rgb(228,189,39)" rx="2" ry="2" />
<text x="836.96" y="895.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="982.9" y="981" width="0.2" height="15.0" fill="rgb(230,126,10)" rx="2" ry="2" />
<text x="985.92" y="991.5" ></text>
</g>
<g >
<title>inet_stream_connect (373,737,370 samples, 0.65%)</title><rect x="1124.0" y="1125" width="7.7" height="15.0" fill="rgb(251,158,12)" rx="2" ry="2" />
<text x="1126.96" y="1135.5" ></text>
</g>
<g >
<title>ovl_xattr_get (20,202,020 samples, 0.04%)</title><rect x="956.9" y="901" width="0.4" height="15.0" fill="rgb(215,102,22)" rx="2" ry="2" />
<text x="959.88" y="911.5" ></text>
</g>
<g >
<title>zm_activate_basic (10,101,010 samples, 0.02%)</title><rect x="1105.2" y="1141" width="0.2" height="15.0" fill="rgb(206,37,16)" rx="2" ry="2" />
<text x="1108.21" y="1151.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="547.7" y="997" width="0.2" height="15.0" fill="rgb(217,84,19)" rx="2" ry="2" />
<text x="550.71" y="1007.5" ></text>
</g>
<g >
<title>php_do_pcre_match (90,909,090 samples, 0.16%)</title><rect x="953.3" y="1125" width="1.9" height="15.0" fill="rgb(216,84,12)" rx="2" ry="2" />
<text x="956.33" y="1135.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="1133.5" y="1157" width="0.3" height="15.0" fill="rgb(239,48,52)" rx="2" ry="2" />
<text x="1136.54" y="1167.5" ></text>
</g>
<g >
<title>receive_mergeable (10,101,010 samples, 0.02%)</title><rect x="422.7" y="869" width="0.2" height="15.0" fill="rgb(226,202,7)" rx="2" ry="2" />
<text x="425.71" y="879.5" ></text>
</g>
<g >
<title>release_sock (10,101,010 samples, 0.02%)</title><rect x="1024.0" y="901" width="0.2" height="15.0" fill="rgb(238,7,18)" rx="2" ry="2" />
<text x="1026.96" y="911.5" ></text>
</g>
<g >
<title>zend_parse_parameters (20,202,020 samples, 0.04%)</title><rect x="682.5" y="1013" width="0.4" height="15.0" fill="rgb(235,207,10)" rx="2" ry="2" />
<text x="685.50" y="1023.5" ></text>
</g>
<g >
<title>vfs_read (50,505,050 samples, 0.09%)</title><rect x="217.3" y="1045" width="1.0" height="15.0" fill="rgb(246,14,9)" rx="2" ry="2" />
<text x="220.29" y="1055.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="686.7" y="981" width="0.2" height="15.0" fill="rgb(250,194,36)" rx="2" ry="2" />
<text x="689.67" y="991.5" ></text>
</g>
<g >
<title>free_old_xmit_skbs (10,101,010 samples, 0.02%)</title><rect x="806.0" y="645" width="0.2" height="15.0" fill="rgb(244,222,13)" rx="2" ry="2" />
<text x="809.04" y="655.5" ></text>
</g>
<g >
<title>napi_consume_skb (10,101,010 samples, 0.02%)</title><rect x="999.0" y="933" width="0.2" height="15.0" fill="rgb(221,146,54)" rx="2" ry="2" />
<text x="1001.96" y="943.5" ></text>
</g>
<g >
<title>prepare_creds (20,202,020 samples, 0.04%)</title><rect x="533.1" y="949" width="0.4" height="15.0" fill="rgb(206,148,22)" rx="2" ry="2" />
<text x="536.12" y="959.5" ></text>
</g>
<g >
<title>alloc_file (10,101,010 samples, 0.02%)</title><rect x="931.5" y="821" width="0.2" height="15.0" fill="rgb(211,47,28)" rx="2" ry="2" />
<text x="934.46" y="831.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="1189.8" y="1173" width="0.2" height="15.0" fill="rgb(247,61,21)" rx="2" ry="2" />
<text x="1192.79" y="1183.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1077" width="0.2" height="15.0" fill="rgb(247,207,18)" rx="2" ry="2" />
<text x="297.38" y="1087.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="899.4" y="1093" width="0.2" height="15.0" fill="rgb(231,1,53)" rx="2" ry="2" />
<text x="902.38" y="1103.5" ></text>
</g>
<g >
<title>tcp_poll (10,101,010 samples, 0.02%)</title><rect x="1114.6" y="1109" width="0.2" height="15.0" fill="rgb(244,70,39)" rx="2" ry="2" />
<text x="1117.58" y="1119.5" ></text>
</g>
<g >
<title>get_unique_tuple (20,202,020 samples, 0.04%)</title><rect x="1129.6" y="373" width="0.4" height="15.0" fill="rgb(253,71,23)" rx="2" ry="2" />
<text x="1132.58" y="383.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="539.4" y="757" width="0.2" height="15.0" fill="rgb(246,122,53)" rx="2" ry="2" />
<text x="542.38" y="767.5" ></text>
</g>
<g >
<title>php_openssl_sockop_set_option (626,262,620 samples, 1.09%)</title><rect x="930.8" y="965" width="13.0" height="15.0" fill="rgb(216,33,6)" rx="2" ry="2" />
<text x="933.83" y="975.5" ></text>
</g>
<g >
<title>persistent_compile_file (10,101,010 samples, 0.02%)</title><rect x="517.7" y="981" width="0.2" height="15.0" fill="rgb(241,207,13)" rx="2" ry="2" />
<text x="520.71" y="991.5" ></text>
</g>
<g >
<title>zif_is_callable (40,404,040 samples, 0.07%)</title><rect x="289.0" y="1125" width="0.8" height="15.0" fill="rgb(229,18,9)" rx="2" ry="2" />
<text x="291.96" y="1135.5" ></text>
</g>
<g >
<title>add_function_array (70,707,070 samples, 0.12%)</title><rect x="962.9" y="1093" width="1.5" height="15.0" fill="rgb(228,87,7)" rx="2" ry="2" />
<text x="965.92" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ADD_ARRAY_ELEMENT_SPEC_VAR_CONST_HANDLER (30,303,030 samples, 0.05%)</title><rect x="614.6" y="1125" width="0.6" height="15.0" fill="rgb(229,159,45)" rx="2" ry="2" />
<text x="617.58" y="1135.5" ></text>
</g>
<g >
<title>spl_perform_autoload (40,404,040 samples, 0.07%)</title><rect x="304.0" y="709" width="0.8" height="15.0" fill="rgb(246,184,38)" rx="2" ry="2" />
<text x="306.96" y="719.5" ></text>
</g>
<g >
<title>TRACE-145$ExtensionRegistry::exportExtractedData$495 (787,878,780 samples, 1.38%)</title><rect x="251.0" y="1141" width="16.3" height="15.0" fill="rgb(220,129,18)" rx="2" ry="2" />
<text x="254.04" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="539.4" y="1013" width="0.2" height="15.0" fill="rgb(217,107,1)" rx="2" ry="2" />
<text x="542.38" y="1023.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="767.5" y="901" width="0.4" height="15.0" fill="rgb(211,143,8)" rx="2" ry="2" />
<text x="770.50" y="911.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="508.8" y="1077" width="0.2" height="15.0" fill="rgb(248,182,7)" rx="2" ry="2" />
<text x="511.75" y="1087.5" ></text>
</g>
<g >
<title>execute_ex (60,606,060 samples, 0.11%)</title><rect x="677.7" y="917" width="1.3" height="15.0" fill="rgb(223,227,6)" rx="2" ry="2" />
<text x="680.71" y="927.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="677" width="0.2" height="15.0" fill="rgb(233,180,52)" rx="2" ry="2" />
<text x="1091.33" y="687.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="905.0" y="1029" width="0.2" height="15.0" fill="rgb(217,175,1)" rx="2" ry="2" />
<text x="908.00" y="1039.5" ></text>
</g>
<g >
<title>finish_task_switch (10,101,010 samples, 0.02%)</title><rect x="1082.9" y="981" width="0.2" height="15.0" fill="rgb(232,175,54)" rx="2" ry="2" />
<text x="1085.92" y="991.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (20,202,020 samples, 0.04%)</title><rect x="1032.9" y="789" width="0.4" height="15.0" fill="rgb(238,31,13)" rx="2" ry="2" />
<text x="1035.92" y="799.5" ></text>
</g>
<g >
<title>zend_jit_fast_assign_concat_helper (10,101,010 samples, 0.02%)</title><rect x="523.3" y="1061" width="0.2" height="15.0" fill="rgb(226,128,10)" rx="2" ry="2" />
<text x="526.33" y="1071.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_UNUSED_HANDLER (50,505,050 samples, 0.09%)</title><rect x="285.6" y="1125" width="1.1" height="15.0" fill="rgb(231,174,0)" rx="2" ry="2" />
<text x="288.62" y="1135.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="881.2" y="405" width="0.3" height="15.0" fill="rgb(233,151,49)" rx="2" ry="2" />
<text x="884.25" y="415.5" ></text>
</g>
<g >
<title>_emalloc (80,808,080 samples, 0.14%)</title><rect x="44.0" y="1109" width="1.6" height="15.0" fill="rgb(222,202,44)" rx="2" ry="2" />
<text x="46.96" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="904.6" y="1061" width="0.2" height="15.0" fill="rgb(224,58,40)" rx="2" ry="2" />
<text x="907.58" y="1071.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="682.1" y="901" width="0.2" height="15.0" fill="rgb(242,173,6)" rx="2" ry="2" />
<text x="685.08" y="911.5" ></text>
</g>
<g >
<title>zend_hash_rehash (10,101,010 samples, 0.02%)</title><rect x="349.0" y="1093" width="0.2" height="15.0" fill="rgb(217,149,42)" rx="2" ry="2" />
<text x="351.96" y="1103.5" ></text>
</g>
<g >
<title>user_shutdown_function_call (60,606,060 samples, 0.11%)</title><rect x="1076.9" y="1125" width="1.2" height="15.0" fill="rgb(212,117,18)" rx="2" ry="2" />
<text x="1079.88" y="1135.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (10,101,010 samples, 0.02%)</title><rect x="982.9" y="1109" width="0.2" height="15.0" fill="rgb(234,109,8)" rx="2" ry="2" />
<text x="985.92" y="1119.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="503.1" y="1093" width="0.2" height="15.0" fill="rgb(244,116,2)" rx="2" ry="2" />
<text x="506.12" y="1103.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="493.5" y="1125" width="0.3" height="15.0" fill="rgb(238,101,21)" rx="2" ry="2" />
<text x="496.54" y="1135.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="789.0" y="949" width="0.2" height="15.0" fill="rgb(232,140,15)" rx="2" ry="2" />
<text x="791.96" y="959.5" ></text>
</g>
<g >
<title>zif_explode (10,101,010 samples, 0.02%)</title><rect x="281.9" y="1125" width="0.2" height="15.0" fill="rgb(227,214,4)" rx="2" ry="2" />
<text x="284.88" y="1135.5" ></text>
</g>
<g >
<title>make_kuid (10,101,010 samples, 0.02%)</title><rect x="1026.0" y="501" width="0.2" height="15.0" fill="rgb(238,31,33)" rx="2" ry="2" />
<text x="1029.04" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,101,010 samples, 0.02%)</title><rect x="1078.3" y="1125" width="0.2" height="15.0" fill="rgb(210,26,32)" rx="2" ry="2" />
<text x="1081.33" y="1135.5" ></text>
</g>
<g >
<title>TRACE-163$GlobalVarConfig::get$58 (222,222,220 samples, 0.39%)</title><rect x="290.0" y="1141" width="4.6" height="15.0" fill="rgb(227,147,24)" rx="2" ry="2" />
<text x="293.00" y="1151.5" ></text>
</g>
<g >
<title>do_interface_implementation (545,454,540 samples, 0.95%)</title><rect x="811.5" y="981" width="11.2" height="15.0" fill="rgb(252,15,25)" rx="2" ry="2" />
<text x="814.46" y="991.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (30,303,030 samples, 0.05%)</title><rect x="1037.9" y="1029" width="0.6" height="15.0" fill="rgb(248,199,24)" rx="2" ry="2" />
<text x="1040.92" y="1039.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="882.5" y="1013" width="0.2" height="15.0" fill="rgb(214,180,44)" rx="2" ry="2" />
<text x="885.50" y="1023.5" ></text>
</g>
<g >
<title>__x64_sys_poll (40,404,040 samples, 0.07%)</title><rect x="926.2" y="837" width="0.9" height="15.0" fill="rgb(253,64,47)" rx="2" ry="2" />
<text x="929.25" y="847.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1188.8" y="1157" width="0.2" height="15.0" fill="rgb(243,22,26)" rx="2" ry="2" />
<text x="1191.75" y="1167.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (10,101,010 samples, 0.02%)</title><rect x="734.0" y="965" width="0.2" height="15.0" fill="rgb(247,200,51)" rx="2" ry="2" />
<text x="736.96" y="975.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="471.2" y="1125" width="0.3" height="15.0" fill="rgb(210,124,27)" rx="2" ry="2" />
<text x="474.25" y="1135.5" ></text>
</g>
<g >
<title>sapi_send_headers (101,010,100 samples, 0.18%)</title><rect x="1030.8" y="1013" width="2.1" height="15.0" fill="rgb(210,40,0)" rx="2" ry="2" />
<text x="1033.83" y="1023.5" ></text>
</g>
<g >
<title>open64 (40,404,040 samples, 0.07%)</title><rect x="1135.4" y="1205" width="0.8" height="15.0" fill="rgb(205,51,29)" rx="2" ry="2" />
<text x="1138.42" y="1215.5" ></text>
</g>
<g >
<title>zend_hash_real_init_mixed (20,202,020 samples, 0.04%)</title><rect x="1000.6" y="1109" width="0.4" height="15.0" fill="rgb(210,227,15)" rx="2" ry="2" />
<text x="1003.62" y="1119.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="790.2" y="1029" width="0.2" height="15.0" fill="rgb(233,48,5)" rx="2" ry="2" />
<text x="793.21" y="1039.5" ></text>
</g>
<g >
<title>TRACE-8$AutoLoader::autoload$114 (50,505,050 samples, 0.09%)</title><rect x="713.1" y="1029" width="1.1" height="15.0" fill="rgb(242,175,52)" rx="2" ry="2" />
<text x="716.12" y="1039.5" ></text>
</g>
<g >
<title>zif_defined (10,101,010 samples, 0.02%)</title><rect x="918.8" y="1045" width="0.2" height="15.0" fill="rgb(236,8,47)" rx="2" ry="2" />
<text x="921.75" y="1055.5" ></text>
</g>
<g >
<title>zend_jit_find_method_tmp_helper (10,101,010 samples, 0.02%)</title><rect x="495.4" y="1125" width="0.2" height="15.0" fill="rgb(220,58,18)" rx="2" ry="2" />
<text x="498.42" y="1135.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="378.5" y="757" width="0.3" height="15.0" fill="rgb(213,17,29)" rx="2" ry="2" />
<text x="381.54" y="767.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="476.9" y="1045" width="0.2" height="15.0" fill="rgb(219,42,51)" rx="2" ry="2" />
<text x="479.88" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1167.1" y="661" width="0.2" height="15.0" fill="rgb(217,227,42)" rx="2" ry="2" />
<text x="1170.08" y="671.5" ></text>
</g>
<g >
<title>php_mysqli_close (161,616,160 samples, 0.28%)</title><rect x="1088.1" y="1045" width="3.4" height="15.0" fill="rgb(227,97,46)" rx="2" ry="2" />
<text x="1091.12" y="1055.5" ></text>
</g>
<g >
<title>mysqlnd_read_packet_header_and_body.constprop.0 (101,010,100 samples, 0.18%)</title><rect x="1052.5" y="1061" width="2.1" height="15.0" fill="rgb(230,9,40)" rx="2" ry="2" />
<text x="1055.50" y="1071.5" ></text>
</g>
<g >
<title>_php_stream_fill_read_buffer (101,010,100 samples, 0.18%)</title><rect x="945.8" y="1061" width="2.1" height="15.0" fill="rgb(251,17,10)" rx="2" ry="2" />
<text x="948.83" y="1071.5" ></text>
</g>
<g >
<title>zend_update_class_constants (10,101,010 samples, 0.02%)</title><rect x="887.5" y="1093" width="0.2" height="15.0" fill="rgb(215,149,23)" rx="2" ry="2" />
<text x="890.50" y="1103.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="741" width="0.3" height="15.0" fill="rgb(252,200,20)" rx="2" ry="2" />
<text x="1044.25" y="751.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="850.6" y="533" width="0.2" height="15.0" fill="rgb(248,155,52)" rx="2" ry="2" />
<text x="853.62" y="543.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="442.3" y="901" width="0.2" height="15.0" fill="rgb(223,184,50)" rx="2" ry="2" />
<text x="445.29" y="911.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="881.2" y="517" width="0.3" height="15.0" fill="rgb(230,176,5)" rx="2" ry="2" />
<text x="884.25" y="527.5" ></text>
</g>
<g >
<title>_php_stream_copy_to_mem (131,313,130 samples, 0.23%)</title><rect x="945.2" y="1093" width="2.7" height="15.0" fill="rgb(233,17,28)" rx="2" ry="2" />
<text x="948.21" y="1103.5" ></text>
</g>
<g >
<title>tcp_connect (292,929,290 samples, 0.51%)</title><rect x="1125.6" y="1077" width="6.1" height="15.0" fill="rgb(241,199,42)" rx="2" ry="2" />
<text x="1128.62" y="1087.5" ></text>
</g>
<g >
<title>dev_queue_xmit (40,404,040 samples, 0.07%)</title><rect x="939.4" y="181" width="0.8" height="15.0" fill="rgb(218,58,54)" rx="2" ry="2" />
<text x="942.38" y="191.5" ></text>
</g>
<g >
<title>spl_perform_autoload (60,606,060 samples, 0.11%)</title><rect x="282.9" y="1077" width="1.3" height="15.0" fill="rgb(239,94,30)" rx="2" ry="2" />
<text x="285.92" y="1087.5" ></text>
</g>
<g >
<title>security_socket_shutdown (10,101,010 samples, 0.02%)</title><rect x="1033.8" y="1045" width="0.2" height="15.0" fill="rgb(213,12,11)" rx="2" ry="2" />
<text x="1036.75" y="1055.5" ></text>
</g>
<g >
<title>zend_hash_update (10,101,010 samples, 0.02%)</title><rect x="745.4" y="949" width="0.2" height="15.0" fill="rgb(246,50,18)" rx="2" ry="2" />
<text x="748.42" y="959.5" ></text>
</g>
<g >
<title>zend_fetch_class (20,202,020 samples, 0.04%)</title><rect x="300.4" y="1029" width="0.4" height="15.0" fill="rgb(218,59,30)" rx="2" ry="2" />
<text x="303.42" y="1039.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="215.4" y="1029" width="0.2" height="15.0" fill="rgb(254,45,49)" rx="2" ry="2" />
<text x="218.42" y="1039.5" ></text>
</g>
<g >
<title>zend_std_get_static_method (30,303,030 samples, 0.05%)</title><rect x="750.4" y="1109" width="0.6" height="15.0" fill="rgb(209,198,2)" rx="2" ry="2" />
<text x="753.42" y="1119.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="950.4" y="1029" width="0.2" height="15.0" fill="rgb(241,180,15)" rx="2" ry="2" />
<text x="953.42" y="1039.5" ></text>
</g>
<g >
<title>nf_conntrack_tuple_taken (20,202,020 samples, 0.04%)</title><rect x="940.2" y="69" width="0.4" height="15.0" fill="rgb(253,6,9)" rx="2" ry="2" />
<text x="943.21" y="79.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1019.8" y="933" width="0.2" height="15.0" fill="rgb(228,123,29)" rx="2" ry="2" />
<text x="1022.79" y="943.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (10,101,010 samples, 0.02%)</title><rect x="442.3" y="853" width="0.2" height="15.0" fill="rgb(218,61,52)" rx="2" ry="2" />
<text x="445.29" y="863.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="45.6" y="1109" width="0.2" height="15.0" fill="rgb(212,12,48)" rx="2" ry="2" />
<text x="48.62" y="1119.5" ></text>
</g>
<g >
<title>user_path_at_empty (10,101,010 samples, 0.02%)</title><rect x="218.8" y="1077" width="0.2" height="15.0" fill="rgb(216,162,53)" rx="2" ry="2" />
<text x="221.75" y="1087.5" ></text>
</g>
<g >
<title>zend_call_known_function (40,404,040 samples, 0.07%)</title><rect x="1018.3" y="949" width="0.9" height="15.0" fill="rgb(221,54,20)" rx="2" ry="2" />
<text x="1021.33" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (80,808,080 samples, 0.14%)</title><rect x="1052.7" y="949" width="1.7" height="15.0" fill="rgb(213,1,25)" rx="2" ry="2" />
<text x="1055.71" y="959.5" ></text>
</g>
<g >
<title>zend_include_or_eval (20,202,020 samples, 0.04%)</title><rect x="740.2" y="885" width="0.4" height="15.0" fill="rgb(210,29,27)" rx="2" ry="2" />
<text x="743.21" y="895.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="427.1" y="917" width="0.2" height="15.0" fill="rgb(225,7,15)" rx="2" ry="2" />
<text x="430.08" y="927.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="798.1" y="917" width="0.2" height="15.0" fill="rgb(246,25,18)" rx="2" ry="2" />
<text x="801.12" y="927.5" ></text>
</g>
<g >
<title>_emalloc (10,101,010 samples, 0.02%)</title><rect x="541.7" y="1093" width="0.2" height="15.0" fill="rgb(209,52,24)" rx="2" ry="2" />
<text x="544.67" y="1103.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (30,303,030 samples, 0.05%)</title><rect x="23.8" y="1157" width="0.6" height="15.0" fill="rgb(219,98,35)" rx="2" ry="2" />
<text x="26.75" y="1167.5" ></text>
</g>
<g >
<title>ZEND_VERIFY_RETURN_TYPE_SPEC_CV_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="890.4" y="1125" width="0.2" height="15.0" fill="rgb(254,215,11)" rx="2" ry="2" />
<text x="893.42" y="1135.5" ></text>
</g>
<g >
<title>__fdget (10,101,010 samples, 0.02%)</title><rect x="942.9" y="821" width="0.2" height="15.0" fill="rgb(233,229,30)" rx="2" ry="2" />
<text x="945.92" y="831.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="534.8" y="741" width="0.2" height="15.0" fill="rgb(250,37,49)" rx="2" ry="2" />
<text x="537.79" y="751.5" ></text>
</g>
<g >
<title>ip_list_rcv (10,101,010 samples, 0.02%)</title><rect x="789.0" y="773" width="0.2" height="15.0" fill="rgb(222,80,47)" rx="2" ry="2" />
<text x="791.96" y="783.5" ></text>
</g>
<g >
<title>ipt_do_table (10,101,010 samples, 0.02%)</title><rect x="1125.6" y="949" width="0.2" height="15.0" fill="rgb(206,72,17)" rx="2" ry="2" />
<text x="1128.62" y="959.5" ></text>
</g>
<g >
<title>zend_lookup_class_ex (10,101,010 samples, 0.02%)</title><rect x="1077.9" y="1061" width="0.2" height="15.0" fill="rgb(242,54,11)" rx="2" ry="2" />
<text x="1080.92" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="1004.0" y="1013" width="0.2" height="15.0" fill="rgb(207,154,16)" rx="2" ry="2" />
<text x="1006.96" y="1023.5" ></text>
</g>
<g >
<title>__alloc_file (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1029" width="0.2" height="15.0" fill="rgb(252,77,17)" rx="2" ry="2" />
<text x="207.17" y="1039.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="682.1" y="821" width="0.2" height="15.0" fill="rgb(248,69,53)" rx="2" ry="2" />
<text x="685.08" y="831.5" ></text>
</g>
<g >
<title>accept (50,505,050 samples, 0.09%)</title><rect x="203.8" y="1173" width="1.0" height="15.0" fill="rgb(218,214,11)" rx="2" ry="2" />
<text x="206.75" y="1183.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (10,101,010 samples, 0.02%)</title><rect x="1184.4" y="965" width="0.2" height="15.0" fill="rgb(249,104,48)" rx="2" ry="2" />
<text x="1187.38" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (131,313,130 samples, 0.23%)</title><rect x="1024.0" y="1061" width="2.7" height="15.0" fill="rgb(228,20,1)" rx="2" ry="2" />
<text x="1026.96" y="1071.5" ></text>
</g>
<g >
<title>ip_route_output_key_hash_rcu (20,202,020 samples, 0.04%)</title><rect x="1125.2" y="1061" width="0.4" height="15.0" fill="rgb(213,203,14)" rx="2" ry="2" />
<text x="1128.21" y="1071.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="183.8" y="789" width="0.2" height="15.0" fill="rgb(247,108,19)" rx="2" ry="2" />
<text x="186.75" y="799.5" ></text>
</g>
<g >
<title>_zend_mm_alloc (10,101,010 samples, 0.02%)</title><rect x="1054.8" y="1045" width="0.2" height="15.0" fill="rgb(237,214,4)" rx="2" ry="2" />
<text x="1057.79" y="1055.5" ></text>
</g>
<g >
<title>br_pass_frame_up (10,101,010 samples, 0.02%)</title><rect x="539.4" y="901" width="0.2" height="15.0" fill="rgb(244,2,42)" rx="2" ry="2" />
<text x="542.38" y="911.5" ></text>
</g>
<g >
<title>timezone_initialize (10,101,010 samples, 0.02%)</title><rect x="487.5" y="1109" width="0.2" height="15.0" fill="rgb(222,91,13)" rx="2" ry="2" />
<text x="490.50" y="1119.5" ></text>
</g>
<g >
<title>fdb_find_rcu (10,101,010 samples, 0.02%)</title><rect x="1162.3" y="677" width="0.2" height="15.0" fill="rgb(249,69,41)" rx="2" ry="2" />
<text x="1165.29" y="687.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_manip_pkt (10,101,010 samples, 0.02%)</title><rect x="24.0" y="693" width="0.2" height="15.0" fill="rgb(228,160,46)" rx="2" ry="2" />
<text x="26.96" y="703.5" ></text>
</g>
<g >
<title>php_json_escape_string (50,505,050 samples, 0.09%)</title><rect x="1046.7" y="1045" width="1.0" height="15.0" fill="rgb(221,214,32)" rx="2" ry="2" />
<text x="1049.67" y="1055.5" ></text>
</g>
<g >
<title>ZEND_JMP_SET_SPEC_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="486.2" y="1125" width="0.3" height="15.0" fill="rgb(223,88,12)" rx="2" ry="2" />
<text x="489.25" y="1135.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="949" width="1.5" height="15.0" fill="rgb(244,48,5)" rx="2" ry="2" />
<text x="1005.50" y="959.5" ></text>
</g>
<g >
<title>zend_jit_fast_concat_helper (20,202,020 samples, 0.04%)</title><rect x="294.2" y="1125" width="0.4" height="15.0" fill="rgb(208,125,4)" rx="2" ry="2" />
<text x="297.17" y="1135.5" ></text>
</g>
<g >
<title>mysqlnd_connect_run_authentication (262,626,260 samples, 0.46%)</title><rect x="924.2" y="1029" width="5.4" height="15.0" fill="rgb(225,14,33)" rx="2" ry="2" />
<text x="927.17" y="1039.5" ></text>
</g>
<g >
<title>zend_create_closure (10,101,010 samples, 0.02%)</title><rect x="545.2" y="1077" width="0.2" height="15.0" fill="rgb(211,157,12)" rx="2" ry="2" />
<text x="548.21" y="1087.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1114.2" y="949" width="0.2" height="15.0" fill="rgb(251,208,0)" rx="2" ry="2" />
<text x="1117.17" y="959.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (20,202,020 samples, 0.04%)</title><rect x="339.2" y="965" width="0.4" height="15.0" fill="rgb(236,206,9)" rx="2" ry="2" />
<text x="342.17" y="975.5" ></text>
</g>
<g >
<title>ip_forward_finish (10,101,010 samples, 0.02%)</title><rect x="982.9" y="853" width="0.2" height="15.0" fill="rgb(219,117,3)" rx="2" ry="2" />
<text x="985.92" y="863.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="341.5" y="1125" width="0.2" height="15.0" fill="rgb(209,112,31)" rx="2" ry="2" />
<text x="344.46" y="1135.5" ></text>
</g>
<g >
<title>prepare_creds (10,101,010 samples, 0.02%)</title><rect x="723.5" y="949" width="0.3" height="15.0" fill="rgb(218,34,23)" rx="2" ry="2" />
<text x="726.54" y="959.5" ></text>
</g>
<g >
<title>compile_filename (10,101,010 samples, 0.02%)</title><rect x="677.9" y="741" width="0.2" height="15.0" fill="rgb(209,67,38)" rx="2" ry="2" />
<text x="680.92" y="751.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="199.6" y="1077" width="0.2" height="15.0" fill="rgb(220,182,51)" rx="2" ry="2" />
<text x="202.58" y="1087.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="943.1" y="837" width="0.2" height="15.0" fill="rgb(208,193,1)" rx="2" ry="2" />
<text x="946.12" y="847.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (10,101,010 samples, 0.02%)</title><rect x="886.7" y="1061" width="0.2" height="15.0" fill="rgb(223,168,29)" rx="2" ry="2" />
<text x="889.67" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,393,939,360 samples, 5.93%)</title><rect x="366.0" y="1077" width="70.0" height="15.0" fill="rgb(215,75,40)" rx="2" ry="2" />
<text x="369.04" y="1087.5" >do_sysc..</text>
</g>
<g >
<title>zif_class_alias (20,202,020 samples, 0.04%)</title><rect x="882.3" y="1029" width="0.4" height="15.0" fill="rgb(234,176,43)" rx="2" ry="2" />
<text x="885.29" y="1039.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.02%)</title><rect x="1184.4" y="933" width="0.2" height="15.0" fill="rgb(249,88,29)" rx="2" ry="2" />
<text x="1187.38" y="943.5" ></text>
</g>
<g >
<title>zend_is_true (10,101,010 samples, 0.02%)</title><rect x="1066.9" y="1141" width="0.2" height="15.0" fill="rgb(228,107,18)" rx="2" ry="2" />
<text x="1069.88" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="799.0" y="757" width="0.2" height="15.0" fill="rgb(242,12,2)" rx="2" ry="2" />
<text x="801.96" y="767.5" ></text>
</g>
<g >
<title>execute_ex (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1045" width="3.3" height="15.0" fill="rgb(214,111,49)" rx="2" ry="2" />
<text x="304.67" y="1055.5" ></text>
</g>
<g >
<title>object_init_ex (10,101,010 samples, 0.02%)</title><rect x="478.1" y="1093" width="0.2" height="15.0" fill="rgb(216,186,54)" rx="2" ry="2" />
<text x="481.12" y="1103.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (20,202,020 samples, 0.04%)</title><rect x="496.5" y="1093" width="0.4" height="15.0" fill="rgb(241,94,24)" rx="2" ry="2" />
<text x="499.46" y="1103.5" ></text>
</g>
<g >
<title>ZEND_FETCH_CLASS_SPEC_UNUSED_CV_HANDLER (161,616,160 samples, 0.28%)</title><rect x="685.6" y="1125" width="3.4" height="15.0" fill="rgb(252,21,6)" rx="2" ry="2" />
<text x="688.62" y="1135.5" ></text>
</g>
<g >
<title>execute_ex (60,606,060 samples, 0.11%)</title><rect x="523.8" y="1045" width="1.2" height="15.0" fill="rgb(224,212,25)" rx="2" ry="2" />
<text x="526.75" y="1055.5" ></text>
</g>
<g >
<title>zend_attach_symbol_table (90,909,090 samples, 0.16%)</title><rect x="696.9" y="1109" width="1.9" height="15.0" fill="rgb(211,132,9)" rx="2" ry="2" />
<text x="699.88" y="1119.5" ></text>
</g>
<g >
<title>zend_jit_find_method_helper (10,101,010 samples, 0.02%)</title><rect x="517.5" y="1125" width="0.2" height="15.0" fill="rgb(209,16,3)" rx="2" ry="2" />
<text x="520.50" y="1135.5" ></text>
</g>
<g >
<title>zif_gzencode (90,909,090 samples, 0.16%)</title><rect x="1028.5" y="1029" width="1.9" height="15.0" fill="rgb(241,15,40)" rx="2" ry="2" />
<text x="1031.54" y="1039.5" ></text>
</g>
<g >
<title>zif_class_alias (20,202,020 samples, 0.04%)</title><rect x="749.2" y="1029" width="0.4" height="15.0" fill="rgb(242,161,40)" rx="2" ry="2" />
<text x="752.17" y="1039.5" ></text>
</g>
<g >
<title>tcp_options.isra.15 (10,101,010 samples, 0.02%)</title><rect x="1126.9" y="901" width="0.2" height="15.0" fill="rgb(205,107,54)" rx="2" ry="2" />
<text x="1129.88" y="911.5" ></text>
</g>
<g >
<title>zend_parse_parameters (20,202,020 samples, 0.04%)</title><rect x="1142.7" y="1189" width="0.4" height="15.0" fill="rgb(211,12,24)" rx="2" ry="2" />
<text x="1145.71" y="1199.5" ></text>
</g>
<g >
<title>__netif_receive_skb (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="517" width="0.4" height="15.0" fill="rgb(209,85,42)" rx="2" ry="2" />
<text x="1092.58" y="527.5" ></text>
</g>
<g >
<title>__schedule (70,707,070 samples, 0.12%)</title><rect x="209.6" y="997" width="1.4" height="15.0" fill="rgb(245,164,13)" rx="2" ry="2" />
<text x="212.58" y="1007.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (20,202,020 samples, 0.04%)</title><rect x="1054.0" y="901" width="0.4" height="15.0" fill="rgb(215,135,34)" rx="2" ry="2" />
<text x="1056.96" y="911.5" ></text>
</g>
<g >
<title>ip_rcv_core.isra.20 (10,101,010 samples, 0.02%)</title><rect x="511.7" y="837" width="0.2" height="15.0" fill="rgb(249,1,26)" rx="2" ry="2" />
<text x="514.67" y="847.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (10,101,010 samples, 0.02%)</title><rect x="1121.0" y="1141" width="0.2" height="15.0" fill="rgb(217,216,21)" rx="2" ry="2" />
<text x="1124.04" y="1151.5" ></text>
</g>
<g >
<title>zim_Memcached_addServers (10,101,010 samples, 0.02%)</title><rect x="1143.1" y="1205" width="0.2" height="15.0" fill="rgb(238,182,33)" rx="2" ry="2" />
<text x="1146.12" y="1215.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="853" width="0.2" height="15.0" fill="rgb(205,108,28)" rx="2" ry="2" />
<text x="1091.33" y="863.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (10,101,010 samples, 0.02%)</title><rect x="204.6" y="1093" width="0.2" height="15.0" fill="rgb(235,167,47)" rx="2" ry="2" />
<text x="207.58" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="512.3" y="1029" width="0.2" height="15.0" fill="rgb(221,228,13)" rx="2" ry="2" />
<text x="515.29" y="1039.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1109" width="0.2" height="15.0" fill="rgb(206,173,3)" rx="2" ry="2" />
<text x="35.29" y="1119.5" ></text>
</g>
<g >
<title>__inet_hash_connect (20,202,020 samples, 0.04%)</title><rect x="937.5" y="773" width="0.4" height="15.0" fill="rgb(246,71,0)" rx="2" ry="2" />
<text x="940.50" y="783.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="955.4" y="917" width="0.2" height="15.0" fill="rgb(225,191,53)" rx="2" ry="2" />
<text x="958.42" y="927.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="950.4" y="901" width="0.2" height="15.0" fill="rgb(252,13,29)" rx="2" ry="2" />
<text x="953.42" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (202,020,200 samples, 0.35%)</title><rect x="899.8" y="1109" width="4.2" height="15.0" fill="rgb(234,119,53)" rx="2" ry="2" />
<text x="902.79" y="1119.5" ></text>
</g>
<g >
<title>tcp_poll (10,101,010 samples, 0.02%)</title><rect x="926.9" y="789" width="0.2" height="15.0" fill="rgb(240,72,18)" rx="2" ry="2" />
<text x="929.88" y="799.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="485" width="0.3" height="15.0" fill="rgb(233,125,45)" rx="2" ry="2" />
<text x="1134.25" y="495.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (212,121,210 samples, 0.37%)</title><rect x="895.4" y="1125" width="4.4" height="15.0" fill="rgb(238,70,47)" rx="2" ry="2" />
<text x="898.42" y="1135.5" ></text>
</g>
<g >
<title>ipt_do_table (20,202,020 samples, 0.04%)</title><rect x="940.2" y="149" width="0.4" height="15.0" fill="rgb(236,129,37)" rx="2" ry="2" />
<text x="943.21" y="159.5" ></text>
</g>
<g >
<title>zend_jit_verify_arg_slow (10,101,010 samples, 0.02%)</title><rect x="345.0" y="1125" width="0.2" height="15.0" fill="rgb(209,130,0)" rx="2" ry="2" />
<text x="348.00" y="1135.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_VAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="622.5" y="1125" width="0.2" height="15.0" fill="rgb(207,213,42)" rx="2" ry="2" />
<text x="625.50" y="1135.5" ></text>
</g>
<g >
<title>zend_hash_func (10,101,010 samples, 0.02%)</title><rect x="1042.3" y="1061" width="0.2" height="15.0" fill="rgb(252,153,41)" rx="2" ry="2" />
<text x="1045.29" y="1071.5" ></text>
</g>
<g >
<title>zend_hash_find (40,404,040 samples, 0.07%)</title><rect x="199.8" y="1109" width="0.8" height="15.0" fill="rgb(246,118,25)" rx="2" ry="2" />
<text x="202.79" y="1119.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (10,101,010 samples, 0.02%)</title><rect x="1132.9" y="1141" width="0.2" height="15.0" fill="rgb(205,130,36)" rx="2" ry="2" />
<text x="1135.92" y="1151.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (10,101,010 samples, 0.02%)</title><rect x="32.3" y="677" width="0.2" height="15.0" fill="rgb(242,28,37)" rx="2" ry="2" />
<text x="35.29" y="687.5" ></text>
</g>
<g >
<title>zend_call_known_function (101,010,100 samples, 0.18%)</title><rect x="677.1" y="933" width="2.1" height="15.0" fill="rgb(232,132,14)" rx="2" ry="2" />
<text x="680.08" y="943.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="789" width="0.2" height="15.0" fill="rgb(236,216,42)" rx="2" ry="2" />
<text x="1095.08" y="799.5" ></text>
</g>
<g >
<title>filename_lookup (60,606,060 samples, 0.11%)</title><rect x="526.5" y="1029" width="1.2" height="15.0" fill="rgb(253,42,3)" rx="2" ry="2" />
<text x="529.46" y="1039.5" ></text>
</g>
<g >
<title>TRACE-1$AutoLoader::find$72 (10,101,010 samples, 0.02%)</title><rect x="772.5" y="1045" width="0.2" height="15.0" fill="rgb(249,106,7)" rx="2" ry="2" />
<text x="775.50" y="1055.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (40,404,040 samples, 0.07%)</title><rect x="946.9" y="997" width="0.8" height="15.0" fill="rgb(209,24,30)" rx="2" ry="2" />
<text x="949.88" y="1007.5" ></text>
</g>
<g >
<title>ZEND_SEND_UNPACK_SPEC_HANDLER (20,202,020 samples, 0.04%)</title><rect x="889.8" y="1125" width="0.4" height="15.0" fill="rgb(216,224,4)" rx="2" ry="2" />
<text x="892.79" y="1135.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_UNUSED_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="517.1" y="1125" width="0.2" height="15.0" fill="rgb(250,46,25)" rx="2" ry="2" />
<text x="520.08" y="1135.5" ></text>
</g>
<g >
<title>zend_std_get_closure (20,202,020 samples, 0.04%)</title><rect x="296.7" y="1077" width="0.4" height="15.0" fill="rgb(234,77,53)" rx="2" ry="2" />
<text x="299.67" y="1087.5" ></text>
</g>
<g >
<title>rcu_core_si (10,101,010 samples, 0.02%)</title><rect x="872.7" y="869" width="0.2" height="15.0" fill="rgb(215,107,11)" rx="2" ry="2" />
<text x="875.71" y="879.5" ></text>
</g>
<g >
<title>zend_hash_find (50,505,050 samples, 0.09%)</title><rect x="978.8" y="1109" width="1.0" height="15.0" fill="rgb(222,134,44)" rx="2" ry="2" />
<text x="981.75" y="1119.5" ></text>
</g>
<g >
<title>ip_queue_xmit (292,929,290 samples, 0.51%)</title><rect x="1125.6" y="1045" width="6.1" height="15.0" fill="rgb(239,211,42)" rx="2" ry="2" />
<text x="1128.62" y="1055.5" ></text>
</g>
<g >
<title>ip_rcv (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="757" width="0.2" height="15.0" fill="rgb(240,27,41)" rx="2" ry="2" />
<text x="1085.08" y="767.5" ></text>
</g>
<g >
<title>TRACE-245$Wikimedia\Rdbms\{closure}$248 (10,101,010 samples, 0.02%)</title><rect x="1081.7" y="1077" width="0.2" height="15.0" fill="rgb(222,69,39)" rx="2" ry="2" />
<text x="1084.67" y="1087.5" ></text>
</g>
<g >
<title>tcp_write_xmit (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="533" width="0.3" height="15.0" fill="rgb(230,55,54)" rx="2" ry="2" />
<text x="1134.25" y="543.5" ></text>
</g>
<g >
<title>zif_array_map (10,101,010 samples, 0.02%)</title><rect x="523.3" y="1093" width="0.2" height="15.0" fill="rgb(226,110,26)" rx="2" ry="2" />
<text x="526.33" y="1103.5" ></text>
</g>
<g >
<title>ip_finish_output2 (111,111,110 samples, 0.19%)</title><rect x="939.4" y="661" width="2.3" height="15.0" fill="rgb(244,9,40)" rx="2" ry="2" />
<text x="942.38" y="671.5" ></text>
</g>
<g >
<title>ZEND_FE_RESET_R_SPEC_TMP_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1087.1" y="1061" width="0.2" height="15.0" fill="rgb(249,100,12)" rx="2" ry="2" />
<text x="1090.08" y="1071.5" ></text>
</g>
<g >
<title>execute_ex (303,030,300 samples, 0.53%)</title><rect x="676.7" y="1045" width="6.2" height="15.0" fill="rgb(238,157,33)" rx="2" ry="2" />
<text x="679.67" y="1055.5" ></text>
</g>
<g >
<title>ip_local_deliver (10,101,010 samples, 0.02%)</title><rect x="244.0" y="965" width="0.2" height="15.0" fill="rgb(240,214,35)" rx="2" ry="2" />
<text x="246.96" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="850.6" y="773" width="0.2" height="15.0" fill="rgb(215,146,6)" rx="2" ry="2" />
<text x="853.62" y="783.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="1174.4" y="1221" width="0.2" height="15.0" fill="rgb(218,174,40)" rx="2" ry="2" />
<text x="1177.38" y="1231.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10,101,010 samples, 0.02%)</title><rect x="1185.0" y="421" width="0.2" height="15.0" fill="rgb(235,60,42)" rx="2" ry="2" />
<text x="1188.00" y="431.5" ></text>
</g>
<g >
<title>revert_creds (20,202,020 samples, 0.04%)</title><rect x="392.7" y="917" width="0.4" height="15.0" fill="rgb(209,224,37)" rx="2" ry="2" />
<text x="395.71" y="927.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="997" width="0.2" height="15.0" fill="rgb(217,182,10)" rx="2" ry="2" />
<text x="1085.08" y="1007.5" ></text>
</g>
<g >
<title>ZEND_UNSET_OBJ_SPEC_UNUSED_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="1083.8" y="1061" width="0.2" height="15.0" fill="rgb(232,1,51)" rx="2" ry="2" />
<text x="1086.75" y="1071.5" ></text>
</g>
<g >
<title>instanceof_function_slow (30,303,030 samples, 0.05%)</title><rect x="606.0" y="1125" width="0.7" height="15.0" fill="rgb(248,57,50)" rx="2" ry="2" />
<text x="609.04" y="1135.5" ></text>
</g>
<g >
<title>memcached_result_create@plt (10,101,010 samples, 0.02%)</title><rect x="1134.8" y="1205" width="0.2" height="15.0" fill="rgb(225,198,27)" rx="2" ry="2" />
<text x="1137.79" y="1215.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="307.7" y="1077" width="0.2" height="15.0" fill="rgb(253,185,9)" rx="2" ry="2" />
<text x="310.71" y="1087.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="901" width="0.2" height="15.0" fill="rgb(214,185,25)" rx="2" ry="2" />
<text x="1090.50" y="911.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (10,101,010 samples, 0.02%)</title><rect x="744.0" y="677" width="0.2" height="15.0" fill="rgb(215,28,35)" rx="2" ry="2" />
<text x="746.96" y="687.5" ></text>
</g>
<g >
<title>zif_date_timezone_set (10,101,010 samples, 0.02%)</title><rect x="1021.7" y="1125" width="0.2" height="15.0" fill="rgb(205,104,30)" rx="2" ry="2" />
<text x="1024.67" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (10,101,010 samples, 0.02%)</title><rect x="672.5" y="805" width="0.2" height="15.0" fill="rgb(217,179,4)" rx="2" ry="2" />
<text x="675.50" y="815.5" ></text>
</g>
<g >
<title>_php_stream_fill_read_buffer (50,505,050 samples, 0.09%)</title><rect x="925.0" y="885" width="1.0" height="15.0" fill="rgb(239,24,25)" rx="2" ry="2" />
<text x="928.00" y="895.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1115.6" y="1125" width="0.2" height="15.0" fill="rgb(219,77,39)" rx="2" ry="2" />
<text x="1118.62" y="1135.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="641.7" y="933" width="0.2" height="15.0" fill="rgb(243,90,3)" rx="2" ry="2" />
<text x="644.67" y="943.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (10,101,010 samples, 0.02%)</title><rect x="106.9" y="901" width="0.2" height="15.0" fill="rgb(241,151,10)" rx="2" ry="2" />
<text x="109.88" y="911.5" ></text>
</g>
<g >
<title>vp_notify (30,303,030 samples, 0.05%)</title><rect x="939.4" y="85" width="0.6" height="15.0" fill="rgb(211,220,48)" rx="2" ry="2" />
<text x="942.38" y="95.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="699.6" y="981" width="0.2" height="15.0" fill="rgb(232,141,27)" rx="2" ry="2" />
<text x="702.58" y="991.5" ></text>
</g>
<g >
<title>__sock_wfree (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="949" width="0.3" height="15.0" fill="rgb(211,200,48)" rx="2" ry="2" />
<text x="1174.25" y="959.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="881.2" y="725" width="0.3" height="15.0" fill="rgb(231,84,31)" rx="2" ry="2" />
<text x="884.25" y="735.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (10,101,010 samples, 0.02%)</title><rect x="696.2" y="1093" width="0.3" height="15.0" fill="rgb(231,203,30)" rx="2" ry="2" />
<text x="699.25" y="1103.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (10,101,010 samples, 0.02%)</title><rect x="183.5" y="917" width="0.3" height="15.0" fill="rgb(228,21,13)" rx="2" ry="2" />
<text x="186.54" y="927.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="904.0" y="1109" width="0.2" height="15.0" fill="rgb(214,14,25)" rx="2" ry="2" />
<text x="906.96" y="1119.5" ></text>
</g>
<g >
<title>ip_finish_output2 (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="725" width="1.7" height="15.0" fill="rgb(238,93,27)" rx="2" ry="2" />
<text x="1028.00" y="735.5" ></text>
</g>
<g >
<title>__ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="718.3" y="789" width="0.2" height="15.0" fill="rgb(221,173,53)" rx="2" ry="2" />
<text x="721.33" y="799.5" ></text>
</g>
<g >
<title>zend_get_executed_scope (10,101,010 samples, 0.02%)</title><rect x="314.0" y="1093" width="0.2" height="15.0" fill="rgb(236,168,1)" rx="2" ry="2" />
<text x="316.96" y="1103.5" ></text>
</g>
<g >
<title>virtqueue_kick_prepare (10,101,010 samples, 0.02%)</title><rect x="1127.9" y="389" width="0.2" height="15.0" fill="rgb(211,71,23)" rx="2" ry="2" />
<text x="1130.92" y="399.5" ></text>
</g>
<g >
<title>br_netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="32.3" y="949" width="0.2" height="15.0" fill="rgb(223,57,54)" rx="2" ry="2" />
<text x="35.29" y="959.5" ></text>
</g>
<g >
<title>zend_std_get_static_method (40,404,040 samples, 0.07%)</title><rect x="714.2" y="1093" width="0.8" height="15.0" fill="rgb(241,90,27)" rx="2" ry="2" />
<text x="717.17" y="1103.5" ></text>
</g>
<g >
<title>br_pass_frame_up (141,414,140 samples, 0.25%)</title><rect x="1127.5" y="709" width="2.9" height="15.0" fill="rgb(238,141,26)" rx="2" ry="2" />
<text x="1130.50" y="719.5" ></text>
</g>
<g >
<title>TRACE-17$Fandom\Includes\Logging\FandomLoggingSpi::createLogger$87 (60,606,060 samples, 0.11%)</title><rect x="296.5" y="1141" width="1.2" height="15.0" fill="rgb(251,50,52)" rx="2" ry="2" />
<text x="299.46" y="1151.5" ></text>
</g>
<g >
<title>zend_hash_find (80,808,080 samples, 0.14%)</title><rect x="884.0" y="1077" width="1.6" height="15.0" fill="rgb(253,205,17)" rx="2" ry="2" />
<text x="886.96" y="1087.5" ></text>
</g>
<g >
<title>zend_do_link_class (20,202,020 samples, 0.04%)</title><rect x="686.5" y="1013" width="0.4" height="15.0" fill="rgb(230,77,24)" rx="2" ry="2" />
<text x="689.46" y="1023.5" ></text>
</g>
<g >
<title>validate_xmit_skb (20,202,020 samples, 0.04%)</title><rect x="1157.9" y="373" width="0.4" height="15.0" fill="rgb(214,152,54)" rx="2" ry="2" />
<text x="1160.92" y="383.5" ></text>
</g>
<g >
<title>_emalloc_56 (10,101,010 samples, 0.02%)</title><rect x="1057.3" y="1109" width="0.2" height="15.0" fill="rgb(233,157,1)" rx="2" ry="2" />
<text x="1060.29" y="1119.5" ></text>
</g>
<g >
<title>_zend_hash_find_known_hash (70,707,070 samples, 0.12%)</title><rect x="616.0" y="1093" width="1.5" height="15.0" fill="rgb(236,148,18)" rx="2" ry="2" />
<text x="619.04" y="1103.5" ></text>
</g>
<g >
<title>__sock_release (10,101,010 samples, 0.02%)</title><rect x="1023.5" y="981" width="0.3" height="15.0" fill="rgb(234,170,10)" rx="2" ry="2" />
<text x="1026.54" y="991.5" ></text>
</g>
<g >
<title>spl_perform_autoload (10,101,010 samples, 0.02%)</title><rect x="674.6" y="1093" width="0.2" height="15.0" fill="rgb(241,25,8)" rx="2" ry="2" />
<text x="677.58" y="1103.5" ></text>
</g>
<g >
<title>do_async_page_fault (10,101,010 samples, 0.02%)</title><rect x="1139.2" y="1093" width="0.2" height="15.0" fill="rgb(253,86,7)" rx="2" ry="2" />
<text x="1142.17" y="1103.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="925.4" y="549" width="0.2" height="15.0" fill="rgb(234,105,1)" rx="2" ry="2" />
<text x="928.42" y="559.5" ></text>
</g>
<g >
<title>execute_ex (40,404,040 samples, 0.07%)</title><rect x="283.3" y="1045" width="0.9" height="15.0" fill="rgb(248,153,7)" rx="2" ry="2" />
<text x="286.33" y="1055.5" ></text>
</g>
<g >
<title>putname (10,101,010 samples, 0.02%)</title><rect x="339.4" y="949" width="0.2" height="15.0" fill="rgb(249,31,34)" rx="2" ry="2" />
<text x="342.38" y="959.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="774.2" y="917" width="0.2" height="15.0" fill="rgb(235,215,36)" rx="2" ry="2" />
<text x="777.17" y="927.5" ></text>
</g>
<g >
<title>zend_string_tolower_ex (10,101,010 samples, 0.02%)</title><rect x="510.6" y="1109" width="0.2" height="15.0" fill="rgb(221,114,52)" rx="2" ry="2" />
<text x="513.62" y="1119.5" ></text>
</g>
<g >
<title>sock_alloc_inode (20,202,020 samples, 0.04%)</title><rect x="1119.6" y="1061" width="0.4" height="15.0" fill="rgb(236,72,23)" rx="2" ry="2" />
<text x="1122.58" y="1071.5" ></text>
</g>
<g >
<title>inode_permission (40,404,040 samples, 0.07%)</title><rect x="774.6" y="885" width="0.8" height="15.0" fill="rgb(212,127,16)" rx="2" ry="2" />
<text x="777.58" y="895.5" ></text>
</g>
<g >
<title>ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER (40,404,040 samples, 0.07%)</title><rect x="753.3" y="1125" width="0.9" height="15.0" fill="rgb(223,202,8)" rx="2" ry="2" />
<text x="756.33" y="1135.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="524.0" y="789" width="0.2" height="15.0" fill="rgb(244,94,19)" rx="2" ry="2" />
<text x="526.96" y="799.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="279.6" y="1029" width="0.2" height="15.0" fill="rgb(249,216,19)" rx="2" ry="2" />
<text x="282.58" y="1039.5" ></text>
</g>
<g >
<title>__kmalloc (10,101,010 samples, 0.02%)</title><rect x="900.2" y="1013" width="0.2" height="15.0" fill="rgb(225,131,50)" rx="2" ry="2" />
<text x="903.21" y="1023.5" ></text>
</g>
<g >
<title>__x64_sys_connect (383,838,380 samples, 0.67%)</title><rect x="1124.0" y="1157" width="7.9" height="15.0" fill="rgb(218,6,41)" rx="2" ry="2" />
<text x="1126.96" y="1167.5" ></text>
</g>
<g >
<title>persistent_compile_file (70,707,070 samples, 0.12%)</title><rect x="916.5" y="885" width="1.4" height="15.0" fill="rgb(254,106,26)" rx="2" ry="2" />
<text x="919.46" y="895.5" ></text>
</g>
<g >
<title>compile_filename (70,707,070 samples, 0.12%)</title><rect x="1002.5" y="837" width="1.5" height="15.0" fill="rgb(237,175,31)" rx="2" ry="2" />
<text x="1005.50" y="847.5" ></text>
</g>
<g >
<title>TRACE-290$Wikimedia\Rdbms\LoadBalancer::finalizePrimaryChanges$1732 (10,101,010 samples, 0.02%)</title><rect x="477.5" y="1141" width="0.2" height="15.0" fill="rgb(235,52,52)" rx="2" ry="2" />
<text x="480.50" y="1151.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="1171.2" y="1125" width="0.3" height="15.0" fill="rgb(213,107,11)" rx="2" ry="2" />
<text x="1174.25" y="1135.5" ></text>
</g>
<g >
<title>auditd_test_task (10,101,010 samples, 0.02%)</title><rect x="501.5" y="949" width="0.2" height="15.0" fill="rgb(224,132,1)" rx="2" ry="2" />
<text x="504.46" y="959.5" ></text>
</g>
<g >
<title>_zend_hash_index_find (10,101,010 samples, 0.02%)</title><rect x="617.9" y="1109" width="0.2" height="15.0" fill="rgb(211,96,17)" rx="2" ry="2" />
<text x="620.92" y="1119.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="905.0" y="965" width="0.2" height="15.0" fill="rgb(247,95,22)" rx="2" ry="2" />
<text x="908.00" y="975.5" ></text>
</g>
<g >
<title>br_nf_hook_thresh (10,101,010 samples, 0.02%)</title><rect x="24.0" y="1013" width="0.2" height="15.0" fill="rgb(230,73,37)" rx="2" ry="2" />
<text x="26.96" y="1023.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,101,010 samples, 0.02%)</title><rect x="534.8" y="709" width="0.2" height="15.0" fill="rgb(238,43,52)" rx="2" ry="2" />
<text x="537.79" y="719.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="963.1" y="1077" width="0.2" height="15.0" fill="rgb(249,69,24)" rx="2" ry="2" />
<text x="966.12" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="183.8" y="901" width="0.2" height="15.0" fill="rgb(240,219,29)" rx="2" ry="2" />
<text x="186.75" y="911.5" ></text>
</g>
<g >
<title>zend_accel_set_auto_globals (131,313,130 samples, 0.23%)</title><rect x="699.6" y="1061" width="2.7" height="15.0" fill="rgb(220,106,33)" rx="2" ry="2" />
<text x="702.58" y="1071.5" ></text>
</g>
<g >
<title>get_cached_acl (10,101,010 samples, 0.02%)</title><rect x="390.2" y="901" width="0.2" height="15.0" fill="rgb(213,13,43)" rx="2" ry="2" />
<text x="393.21" y="911.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (30,303,030 samples, 0.05%)</title><rect x="1057.9" y="1045" width="0.6" height="15.0" fill="rgb(223,117,22)" rx="2" ry="2" />
<text x="1060.92" y="1055.5" ></text>
</g>
<g >
<title>TRACE-32$Composer\Autoload\includeFile$571 (10,101,010 samples, 0.02%)</title><rect x="523.8" y="933" width="0.2" height="15.0" fill="rgb(251,54,20)" rx="2" ry="2" />
<text x="526.75" y="943.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="517.3" y="1093" width="0.2" height="15.0" fill="rgb(225,206,26)" rx="2" ry="2" />
<text x="520.29" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ARRAY_KEY_EXISTS_SPEC_CV_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="294.8" y="1125" width="0.2" height="15.0" fill="rgb(233,59,22)" rx="2" ry="2" />
<text x="297.79" y="1135.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (10,101,010 samples, 0.02%)</title><rect x="939.2" y="677" width="0.2" height="15.0" fill="rgb(220,10,9)" rx="2" ry="2" />
<text x="942.17" y="687.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="642.1" y="1077" width="0.2" height="15.0" fill="rgb(226,157,54)" rx="2" ry="2" />
<text x="645.08" y="1087.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="768.1" y="1061" width="0.2" height="15.0" fill="rgb(245,111,38)" rx="2" ry="2" />
<text x="771.12" y="1071.5" ></text>
</g>
<g >
<title>ipv4_conntrack_defrag (10,101,010 samples, 0.02%)</title><rect x="1149.2" y="949" width="0.2" height="15.0" fill="rgb(214,149,14)" rx="2" ry="2" />
<text x="1152.17" y="959.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (30,303,030 samples, 0.05%)</title><rect x="67.9" y="1093" width="0.6" height="15.0" fill="rgb(252,103,25)" rx="2" ry="2" />
<text x="70.92" y="1103.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="642.1" y="1061" width="0.2" height="15.0" fill="rgb(214,212,50)" rx="2" ry="2" />
<text x="645.08" y="1071.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="946.9" y="949" width="0.2" height="15.0" fill="rgb(221,31,47)" rx="2" ry="2" />
<text x="949.88" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="947.9" y="1061" width="0.2" height="15.0" fill="rgb(223,49,30)" rx="2" ry="2" />
<text x="950.92" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1115.4" y="1093" width="0.2" height="15.0" fill="rgb(233,189,35)" rx="2" ry="2" />
<text x="1118.42" y="1103.5" ></text>
</g>
<g >
<title>__seccomp_filter (10,101,010 samples, 0.02%)</title><rect x="215.4" y="1013" width="0.2" height="15.0" fill="rgb(223,49,1)" rx="2" ry="2" />
<text x="218.42" y="1023.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (60,606,060 samples, 0.11%)</title><rect x="683.8" y="1093" width="1.2" height="15.0" fill="rgb(205,13,54)" rx="2" ry="2" />
<text x="686.75" y="1103.5" ></text>
</g>
<g >
<title>TRACE-328$Composer\Autoload\ClassLoader::findFile$446 (10,101,010 samples, 0.02%)</title><rect x="501.9" y="1045" width="0.2" height="15.0" fill="rgb(211,45,49)" rx="2" ry="2" />
<text x="504.88" y="1055.5" ></text>
</g>
<g >
<title>zend_do_perform_implementation_check (10,101,010 samples, 0.02%)</title><rect x="799.2" y="853" width="0.2" height="15.0" fill="rgb(237,141,30)" rx="2" ry="2" />
<text x="802.17" y="863.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,101,010 samples, 0.02%)</title><rect x="805.2" y="661" width="0.2" height="15.0" fill="rgb(238,10,48)" rx="2" ry="2" />
<text x="808.21" y="671.5" ></text>
</g>
<g >
<title>zend_objects_store_put (10,101,010 samples, 0.02%)</title><rect x="670.2" y="1061" width="0.2" height="15.0" fill="rgb(247,72,46)" rx="2" ry="2" />
<text x="673.21" y="1071.5" ></text>
</g>
<g >
<title>ZEND_BOOL_SPEC_TMPVAR_HANDLER (10,101,010 samples, 0.02%)</title><rect x="646.7" y="1125" width="0.2" height="15.0" fill="rgb(235,18,43)" rx="2" ry="2" />
<text x="649.67" y="1135.5" ></text>
</g>
<g >
<title>TRACE-226$DeferredUpdates::addUpdate$119 (10,101,010 samples, 0.02%)</title><rect x="449.4" y="1141" width="0.2" height="15.0" fill="rgb(217,2,6)" rx="2" ry="2" />
<text x="452.38" y="1151.5" ></text>
</g>
<g >
<title>aa_sk_perm (10,101,010 samples, 0.02%)</title><rect x="1131.7" y="1093" width="0.2" height="15.0" fill="rgb(222,89,27)" rx="2" ry="2" />
<text x="1134.67" y="1103.5" ></text>
</g>
<g >
<title>sock_def_readable (20,202,020 samples, 0.04%)</title><rect x="1025.6" y="437" width="0.4" height="15.0" fill="rgb(221,41,43)" rx="2" ry="2" />
<text x="1028.62" y="447.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (10,101,010 samples, 0.02%)</title><rect x="443.5" y="933" width="0.3" height="15.0" fill="rgb(233,186,14)" rx="2" ry="2" />
<text x="446.54" y="943.5" ></text>
</g>
<g >
<title>zend_is_true (20,202,020 samples, 0.04%)</title><rect x="997.9" y="1109" width="0.4" height="15.0" fill="rgb(214,171,46)" rx="2" ry="2" />
<text x="1000.92" y="1119.5" ></text>
</g>
<g >
<title>TRACE-408$MediaWiki\Languages\LanguageNameUtils::getLanguageNamesUncached$227 (10,101,010 samples, 0.02%)</title><rect x="510.8" y="1141" width="0.2" height="15.0" fill="rgb(248,229,31)" rx="2" ry="2" />
<text x="513.83" y="1151.5" ></text>
</g>
<g >
<title>netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="539.4" y="869" width="0.2" height="15.0" fill="rgb(231,23,48)" rx="2" ry="2" />
<text x="542.38" y="879.5" ></text>
</g>
<g >
<title>ksys_dup (10,101,010 samples, 0.02%)</title><rect x="950.0" y="1013" width="0.2" height="15.0" fill="rgb(248,4,6)" rx="2" ry="2" />
<text x="953.00" y="1023.5" ></text>
</g>
<g >
<title>__fxstat64 (20,202,020 samples, 0.04%)</title><rect x="948.3" y="1045" width="0.5" height="15.0" fill="rgb(231,141,8)" rx="2" ry="2" />
<text x="951.33" y="1055.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="644.6" y="1109" width="0.2" height="15.0" fill="rgb(225,188,43)" rx="2" ry="2" />
<text x="647.58" y="1119.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (20,202,020 samples, 0.04%)</title><rect x="805.8" y="837" width="0.4" height="15.0" fill="rgb(211,185,42)" rx="2" ry="2" />
<text x="808.83" y="847.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="904.6" y="1045" width="0.2" height="15.0" fill="rgb(217,182,13)" rx="2" ry="2" />
<text x="907.58" y="1055.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="1032.9" y="485" width="0.2" height="15.0" fill="rgb(209,60,11)" rx="2" ry="2" />
<text x="1035.92" y="495.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="471.7" y="949" width="0.2" height="15.0" fill="rgb(233,224,54)" rx="2" ry="2" />
<text x="474.67" y="959.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="856.9" y="805" width="0.2" height="15.0" fill="rgb(240,182,10)" rx="2" ry="2" />
<text x="859.88" y="815.5" ></text>
</g>
<g >
<title>zend_array_dup (10,101,010 samples, 0.02%)</title><rect x="692.1" y="1093" width="0.2" height="15.0" fill="rgb(239,220,46)" rx="2" ry="2" />
<text x="695.08" y="1103.5" ></text>
</g>
<g >
<title>access (10,101,010 samples, 0.02%)</title><rect x="833.8" y="901" width="0.2" height="15.0" fill="rgb(249,193,34)" rx="2" ry="2" />
<text x="836.75" y="911.5" ></text>
</g>
<g >
<title>finish_task_switch (20,202,020 samples, 0.04%)</title><rect x="805.8" y="757" width="0.4" height="15.0" fill="rgb(240,140,52)" rx="2" ry="2" />
<text x="808.83" y="767.5" ></text>
</g>
<g >
<title>zend_closure_free_storage (191,919,190 samples, 0.34%)</title><rect x="1092.3" y="1109" width="3.9" height="15.0" fill="rgb(227,55,40)" rx="2" ry="2" />
<text x="1095.29" y="1119.5" ></text>
</g>
<g >
<title>zif_is_bool (10,101,010 samples, 0.02%)</title><rect x="1073.1" y="1141" width="0.2" height="15.0" fill="rgb(237,201,49)" rx="2" ry="2" />
<text x="1076.12" y="1151.5" ></text>
</g>
<g >
<title>security_prepare_creds (10,101,010 samples, 0.02%)</title><rect x="526.2" y="1029" width="0.3" height="15.0" fill="rgb(224,178,43)" rx="2" ry="2" />
<text x="529.25" y="1039.5" ></text>
</g>
<g >
<title>is_a_impl (111,111,110 samples, 0.19%)</title><rect x="920.8" y="1125" width="2.3" height="15.0" fill="rgb(221,216,47)" rx="2" ry="2" />
<text x="923.83" y="1135.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,101,010 samples, 0.02%)</title><rect x="1172.5" y="1093" width="0.2" height="15.0" fill="rgb(236,140,16)" rx="2" ry="2" />
<text x="1175.50" y="1103.5" ></text>
</g>
<g >
<title>spl_perform_autoload (20,202,020 samples, 0.04%)</title><rect x="300.4" y="997" width="0.4" height="15.0" fill="rgb(210,106,29)" rx="2" ry="2" />
<text x="303.42" y="1007.5" ></text>
</g>
<g >
<title>generic_permission (232,323,230 samples, 0.41%)</title><rect x="385.8" y="917" width="4.8" height="15.0" fill="rgb(245,16,8)" rx="2" ry="2" />
<text x="388.83" y="927.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (10,101,010 samples, 0.02%)</title><rect x="1124.2" y="1045" width="0.2" height="15.0" fill="rgb(239,190,49)" rx="2" ry="2" />
<text x="1127.17" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="1007.1" y="885" width="0.2" height="15.0" fill="rgb(206,220,4)" rx="2" ry="2" />
<text x="1010.08" y="895.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1013" width="0.2" height="15.0" fill="rgb(234,161,44)" rx="2" ry="2" />
<text x="474.67" y="1023.5" ></text>
</g>
<g >
<title>zend_parse_va_args (10,101,010 samples, 0.02%)</title><rect x="1039.8" y="1093" width="0.2" height="15.0" fill="rgb(251,190,4)" rx="2" ry="2" />
<text x="1042.79" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_index_add_new (10,101,010 samples, 0.02%)</title><rect x="179.2" y="1045" width="0.2" height="15.0" fill="rgb(242,3,33)" rx="2" ry="2" />
<text x="182.17" y="1055.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (10,101,010 samples, 0.02%)</title><rect x="1131.2" y="949" width="0.3" height="15.0" fill="rgb(226,190,26)" rx="2" ry="2" />
<text x="1134.25" y="959.5" ></text>
</g>
<g >
<title>path_lookupat (20,202,020 samples, 0.04%)</title><rect x="500.6" y="917" width="0.4" height="15.0" fill="rgb(238,109,29)" rx="2" ry="2" />
<text x="503.62" y="927.5" ></text>
</g>
<g >
<title>zend_hash_add_new (10,101,010 samples, 0.02%)</title><rect x="443.8" y="1125" width="0.2" height="15.0" fill="rgb(223,6,21)" rx="2" ry="2" />
<text x="446.75" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (161,616,160 samples, 0.28%)</title><rect x="208.3" y="1109" width="3.4" height="15.0" fill="rgb(210,118,1)" rx="2" ry="2" />
<text x="211.33" y="1119.5" ></text>
</g>
<g >
<title>arp_process (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="885" width="0.3" height="15.0" fill="rgb(229,154,27)" rx="2" ry="2" />
<text x="1044.25" y="895.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="107.3" y="1013" width="0.2" height="15.0" fill="rgb(247,50,8)" rx="2" ry="2" />
<text x="110.29" y="1023.5" ></text>
</g>
<g >
<title>dev_queue_xmit (272,727,270 samples, 0.48%)</title><rect x="1152.7" y="437" width="5.6" height="15.0" fill="rgb(248,206,12)" rx="2" ry="2" />
<text x="1155.71" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_access (20,202,020 samples, 0.04%)</title><rect x="797.1" y="869" width="0.4" height="15.0" fill="rgb(245,101,7)" rx="2" ry="2" />
<text x="800.08" y="879.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="1009.0" y="933" width="0.2" height="15.0" fill="rgb(254,94,33)" rx="2" ry="2" />
<text x="1011.96" y="943.5" ></text>
</g>
<g >
<title>__vfs_read (20,202,020 samples, 0.04%)</title><rect x="946.5" y="949" width="0.4" height="15.0" fill="rgb(218,44,22)" rx="2" ry="2" />
<text x="949.46" y="959.5" ></text>
</g>
<g >
<title>iowrite16 (10,101,010 samples, 0.02%)</title><rect x="539.4" y="549" width="0.2" height="15.0" fill="rgb(233,137,28)" rx="2" ry="2" />
<text x="542.38" y="559.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="745.2" y="949" width="0.2" height="15.0" fill="rgb(219,45,50)" rx="2" ry="2" />
<text x="748.21" y="959.5" ></text>
</g>
<g >
<title>zend_build_properties_info_table (10,101,010 samples, 0.02%)</title><rect x="732.7" y="997" width="0.2" height="15.0" fill="rgb(231,100,29)" rx="2" ry="2" />
<text x="735.71" y="1007.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="982.9" y="965" width="0.2" height="15.0" fill="rgb(213,52,12)" rx="2" ry="2" />
<text x="985.92" y="975.5" ></text>
</g>
<g >
<title>nf_hook_slow (10,101,010 samples, 0.02%)</title><rect x="955.4" y="901" width="0.2" height="15.0" fill="rgb(216,74,34)" rx="2" ry="2" />
<text x="958.42" y="911.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="183.8" y="725" width="0.2" height="15.0" fill="rgb(248,45,45)" rx="2" ry="2" />
<text x="186.75" y="735.5" ></text>
</g>
<g >
<title>php_var_unserialize_destroy (10,101,010 samples, 0.02%)</title><rect x="202.5" y="1189" width="0.2" height="15.0" fill="rgb(239,168,6)" rx="2" ry="2" />
<text x="205.50" y="1199.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="973.3" y="949" width="0.2" height="15.0" fill="rgb(206,187,35)" rx="2" ry="2" />
<text x="976.33" y="959.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (20,202,020 samples, 0.04%)</title><rect x="1006.9" y="933" width="0.4" height="15.0" fill="rgb(244,119,39)" rx="2" ry="2" />
<text x="1009.88" y="943.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="682.1" y="869" width="0.2" height="15.0" fill="rgb(213,99,47)" rx="2" ry="2" />
<text x="685.08" y="879.5" ></text>
</g>
<g >
<title>_zend_new_array (10,101,010 samples, 0.02%)</title><rect x="174.6" y="1061" width="0.2" height="15.0" fill="rgb(206,114,20)" rx="2" ry="2" />
<text x="177.58" y="1071.5" ></text>
</g>
<g >
<title>br_nf_pre_routing (10,101,010 samples, 0.02%)</title><rect x="30.2" y="1029" width="0.2" height="15.0" fill="rgb(211,81,14)" rx="2" ry="2" />
<text x="33.21" y="1039.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1093" width="0.3" height="15.0" fill="rgb(208,208,43)" rx="2" ry="2" />
<text x="446.54" y="1103.5" ></text>
</g>
<g >
<title>__sys_setsockopt (40,404,040 samples, 0.07%)</title><rect x="1140.8" y="1141" width="0.9" height="15.0" fill="rgb(205,195,15)" rx="2" ry="2" />
<text x="1143.83" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (10,101,010 samples, 0.02%)</title><rect x="106.9" y="997" width="0.2" height="15.0" fill="rgb(252,63,37)" rx="2" ry="2" />
<text x="109.88" y="1007.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="912.9" y="933" width="0.2" height="15.0" fill="rgb(237,208,6)" rx="2" ry="2" />
<text x="915.92" y="943.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (10,101,010 samples, 0.02%)</title><rect x="930.2" y="885" width="0.2" height="15.0" fill="rgb(235,208,2)" rx="2" ry="2" />
<text x="933.21" y="895.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="789.0" y="933" width="0.2" height="15.0" fill="rgb(225,176,9)" rx="2" ry="2" />
<text x="791.96" y="943.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="244.0" y="1077" width="0.2" height="15.0" fill="rgb(253,169,46)" rx="2" ry="2" />
<text x="246.96" y="1087.5" ></text>
</g>
<g >
<title>unmap_single_vma (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1061" width="0.2" height="15.0" fill="rgb(218,73,48)" rx="2" ry="2" />
<text x="1175.08" y="1071.5" ></text>
</g>
<g >
<title>memcpy (10,101,010 samples, 0.02%)</title><rect x="539.6" y="997" width="0.2" height="15.0" fill="rgb(253,109,38)" rx="2" ry="2" />
<text x="542.58" y="1007.5" ></text>
</g>
<g >
<title>__sys_connect (383,838,380 samples, 0.67%)</title><rect x="1124.0" y="1141" width="7.9" height="15.0" fill="rgb(211,171,44)" rx="2" ry="2" />
<text x="1126.96" y="1151.5" ></text>
</g>
<g >
<title>inet_shutdown (40,404,040 samples, 0.07%)</title><rect x="1032.9" y="1029" width="0.9" height="15.0" fill="rgb(211,115,6)" rx="2" ry="2" />
<text x="1035.92" y="1039.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,101,010 samples, 0.02%)</title><rect x="1126.2" y="901" width="0.3" height="15.0" fill="rgb(232,134,38)" rx="2" ry="2" />
<text x="1129.25" y="911.5" ></text>
</g>
<g >
<title>accel_new_interned_string_for_php (60,606,060 samples, 0.11%)</title><rect x="651.0" y="1093" width="1.3" height="15.0" fill="rgb(228,4,37)" rx="2" ry="2" />
<text x="654.04" y="1103.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="30.2" y="1045" width="0.2" height="15.0" fill="rgb(225,205,24)" rx="2" ry="2" />
<text x="33.21" y="1055.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_vio_network_read_pub (101,010,100 samples, 0.18%)</title><rect x="1052.5" y="1029" width="2.1" height="15.0" fill="rgb(248,34,33)" rx="2" ry="2" />
<text x="1055.50" y="1039.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (101,010,100 samples, 0.18%)</title><rect x="1115.8" y="1141" width="2.1" height="15.0" fill="rgb(232,156,27)" rx="2" ry="2" />
<text x="1118.83" y="1151.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_VAR_UNUSED_HANDLER (60,606,060 samples, 0.11%)</title><rect x="886.9" y="1125" width="1.2" height="15.0" fill="rgb(238,165,41)" rx="2" ry="2" />
<text x="889.88" y="1135.5" ></text>
</g>
<g >
<title>ZEND_CONCAT_SPEC_CV_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="549.4" y="1141" width="0.2" height="15.0" fill="rgb(229,206,34)" rx="2" ry="2" />
<text x="552.38" y="1151.5" ></text>
</g>
<g >
<title>dev_queue_xmit (20,202,020 samples, 0.04%)</title><rect x="1089.6" y="149" width="0.4" height="15.0" fill="rgb(217,227,48)" rx="2" ry="2" />
<text x="1092.58" y="159.5" ></text>
</g>
<g >
<title>ret_from_intr (30,303,030 samples, 0.05%)</title><rect x="23.8" y="1205" width="0.6" height="15.0" fill="rgb(214,224,25)" rx="2" ry="2" />
<text x="26.75" y="1215.5" ></text>
</g>
<g >
<title>net_rx_action (10,101,010 samples, 0.02%)</title><rect x="443.5" y="1061" width="0.3" height="15.0" fill="rgb(235,138,32)" rx="2" ry="2" />
<text x="446.54" y="1071.5" ></text>
</g>
<g >
<title>strncpy_from_user (101,010,100 samples, 0.18%)</title><rect x="422.9" y="981" width="2.1" height="15.0" fill="rgb(217,37,31)" rx="2" ry="2" />
<text x="425.92" y="991.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="967.1" y="1077" width="0.2" height="15.0" fill="rgb(206,56,53)" rx="2" ry="2" />
<text x="970.08" y="1087.5" ></text>
</g>
<g >
<title>zend_accel_load_script (10,101,010 samples, 0.02%)</title><rect x="800.2" y="741" width="0.2" height="15.0" fill="rgb(210,9,42)" rx="2" ry="2" />
<text x="803.21" y="751.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="294.4" y="1061" width="0.2" height="15.0" fill="rgb(234,15,2)" rx="2" ry="2" />
<text x="297.38" y="1071.5" ></text>
</g>
<g >
<title>do_IRQ (10,101,010 samples, 0.02%)</title><rect x="946.9" y="933" width="0.2" height="15.0" fill="rgb(211,21,51)" rx="2" ry="2" />
<text x="949.88" y="943.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="1013" width="0.2" height="15.0" fill="rgb(222,113,54)" rx="2" ry="2" />
<text x="1095.08" y="1023.5" ></text>
</g>
<g >
<title>php_explode (10,101,010 samples, 0.02%)</title><rect x="1031.9" y="965" width="0.2" height="15.0" fill="rgb(229,43,54)" rx="2" ry="2" />
<text x="1034.88" y="975.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="221.5" y="1109" width="0.2" height="15.0" fill="rgb(253,97,26)" rx="2" ry="2" />
<text x="224.46" y="1119.5" ></text>
</g>
<g >
<title>ip_sabotage_in (10,101,010 samples, 0.02%)</title><rect x="1082.1" y="725" width="0.2" height="15.0" fill="rgb(236,177,53)" rx="2" ry="2" />
<text x="1085.08" y="735.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="199.6" y="1093" width="0.2" height="15.0" fill="rgb(230,64,45)" rx="2" ry="2" />
<text x="202.58" y="1103.5" ></text>
</g>
<g >
<title>__ip_finish_output (40,404,040 samples, 0.07%)</title><rect x="939.4" y="213" width="0.8" height="15.0" fill="rgb(219,25,16)" rx="2" ry="2" />
<text x="942.38" y="223.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (10,101,010 samples, 0.02%)</title><rect x="32.3" y="1061" width="0.2" height="15.0" fill="rgb(231,84,13)" rx="2" ry="2" />
<text x="35.29" y="1071.5" ></text>
</g>
<g >
<title>skb_network_protocol (10,101,010 samples, 0.02%)</title><rect x="1129.2" y="389" width="0.2" height="15.0" fill="rgb(227,171,41)" rx="2" ry="2" />
<text x="1132.17" y="399.5" ></text>
</g>
<g >
<title>ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (10,101,010 samples, 0.02%)</title><rect x="689.0" y="1029" width="0.2" height="15.0" fill="rgb(242,9,25)" rx="2" ry="2" />
<text x="691.96" y="1039.5" ></text>
</g>
<g >
<title>zend_call_known_function (80,808,080 samples, 0.14%)</title><rect x="479.4" y="1077" width="1.6" height="15.0" fill="rgb(227,56,0)" rx="2" ry="2" />
<text x="482.38" y="1087.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="427.1" y="869" width="0.2" height="15.0" fill="rgb(220,108,21)" rx="2" ry="2" />
<text x="430.08" y="879.5" ></text>
</g>
<g >
<title>zend_do_link_class (40,404,040 samples, 0.07%)</title><rect x="677.7" y="869" width="0.8" height="15.0" fill="rgb(253,16,4)" rx="2" ry="2" />
<text x="680.71" y="879.5" ></text>
</g>
<g >
<title>timelib_parse_from_format_with_map (20,202,020 samples, 0.04%)</title><rect x="1021.0" y="1077" width="0.5" height="15.0" fill="rgb(222,58,53)" rx="2" ry="2" />
<text x="1024.04" y="1087.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="718.3" y="805" width="0.2" height="15.0" fill="rgb(246,28,34)" rx="2" ry="2" />
<text x="721.33" y="815.5" ></text>
</g>
<g >
<title>add_function (20,202,020 samples, 0.04%)</title><rect x="522.9" y="1077" width="0.4" height="15.0" fill="rgb(244,107,6)" rx="2" ry="2" />
<text x="525.92" y="1087.5" ></text>
</g>
<g >
<title>ip_local_out (80,808,080 samples, 0.14%)</title><rect x="1025.0" y="789" width="1.7" height="15.0" fill="rgb(231,178,13)" rx="2" ry="2" />
<text x="1028.00" y="799.5" ></text>
</g>
<g >
<title>_emalloc_320 (10,101,010 samples, 0.02%)</title><rect x="1028.3" y="997" width="0.2" height="15.0" fill="rgb(209,24,5)" rx="2" ry="2" />
<text x="1031.33" y="1007.5" ></text>
</g>
<g >
<title>zend_call_function (50,505,050 samples, 0.09%)</title><rect x="866.9" y="917" width="1.0" height="15.0" fill="rgb(234,136,28)" rx="2" ry="2" />
<text x="869.88" y="927.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="682.3" y="917" width="0.2" height="15.0" fill="rgb(234,113,40)" rx="2" ry="2" />
<text x="685.29" y="927.5" ></text>
</g>
<g >
<title>zend_include_or_eval (10,101,010 samples, 0.02%)</title><rect x="686.7" y="901" width="0.2" height="15.0" fill="rgb(245,25,11)" rx="2" ry="2" />
<text x="689.67" y="911.5" ></text>
</g>
<g >
<title>release_sock (10,101,010 samples, 0.02%)</title><rect x="1177.9" y="1093" width="0.2" height="15.0" fill="rgb(252,201,34)" rx="2" ry="2" />
<text x="1180.92" y="1103.5" ></text>
</g>
<g >
<title>ZEND_ROPE_END_SPEC_TMP_CV_HANDLER (40,404,040 samples, 0.07%)</title><rect x="888.8" y="1125" width="0.8" height="15.0" fill="rgb(244,136,31)" rx="2" ry="2" />
<text x="891.75" y="1135.5" ></text>
</g>
<g >
<title>zif_parse_url (20,202,020 samples, 0.04%)</title><rect x="1055.0" y="1125" width="0.4" height="15.0" fill="rgb(216,188,16)" rx="2" ry="2" />
<text x="1058.00" y="1135.5" ></text>
</g>
<g >
<title>__vfs_getxattr (10,101,010 samples, 0.02%)</title><rect x="1121.7" y="1029" width="0.2" height="15.0" fill="rgb(230,131,10)" rx="2" ry="2" />
<text x="1124.67" y="1039.5" ></text>
</g>
<g >
<title>mysqlnd_mysqlnd_pfc_send_pub (10,101,010 samples, 0.02%)</title><rect x="928.3" y="965" width="0.2" height="15.0" fill="rgb(237,198,9)" rx="2" ry="2" />
<text x="931.33" y="975.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="547.7" y="1125" width="0.2" height="15.0" fill="rgb(244,17,49)" rx="2" ry="2" />
<text x="550.71" y="1135.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (40,404,040 samples, 0.07%)</title><rect x="1162.9" y="709" width="0.9" height="15.0" fill="rgb(219,92,26)" rx="2" ry="2" />
<text x="1165.92" y="719.5" ></text>
</g>
<g >
<title>zend_jit_push_static_metod_call_frame (10,101,010 samples, 0.02%)</title><rect x="1068.5" y="1141" width="0.3" height="15.0" fill="rgb(229,132,52)" rx="2" ry="2" />
<text x="1071.54" y="1151.5" ></text>
</g>
<g >
<title>zif_substr (10,101,010 samples, 0.02%)</title><rect x="749.6" y="1045" width="0.2" height="15.0" fill="rgb(244,60,9)" rx="2" ry="2" />
<text x="752.58" y="1055.5" ></text>
</g>
<g >
<title>__poll (90,909,090 samples, 0.16%)</title><rect x="1052.5" y="981" width="1.9" height="15.0" fill="rgb(243,173,27)" rx="2" ry="2" />
<text x="1055.50" y="991.5" ></text>
</g>
<g >
<title>compile_filename (545,454,540 samples, 0.95%)</title><rect x="835.4" y="869" width="11.3" height="15.0" fill="rgb(224,94,50)" rx="2" ry="2" />
<text x="838.42" y="879.5" ></text>
</g>
<g >
<title>schedule (10,101,010 samples, 0.02%)</title><rect x="457.3" y="1077" width="0.2" height="15.0" fill="rgb(220,116,3)" rx="2" ry="2" />
<text x="460.29" y="1087.5" ></text>
</g>
<g >
<title>php_network_getaddresses (20,202,020 samples, 0.04%)</title><rect x="943.3" y="917" width="0.5" height="15.0" fill="rgb(225,189,11)" rx="2" ry="2" />
<text x="946.33" y="927.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="1101.5" y="1125" width="0.2" height="15.0" fill="rgb(233,159,8)" rx="2" ry="2" />
<text x="1104.46" y="1135.5" ></text>
</g>
<g >
<title>__inet_lookup_established (10,101,010 samples, 0.02%)</title><rect x="416.9" y="693" width="0.2" height="15.0" fill="rgb(253,46,29)" rx="2" ry="2" />
<text x="419.88" y="703.5" ></text>
</g>
<g >
<title>zif_is_numeric (10,101,010 samples, 0.02%)</title><rect x="310.2" y="1125" width="0.2" height="15.0" fill="rgb(212,101,9)" rx="2" ry="2" />
<text x="313.21" y="1135.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (10,101,010 samples, 0.02%)</title><rect x="1100.8" y="1109" width="0.2" height="15.0" fill="rgb(213,209,38)" rx="2" ry="2" />
<text x="1103.83" y="1119.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="447.3" y="1045" width="0.2" height="15.0" fill="rgb(228,166,20)" rx="2" ry="2" />
<text x="450.29" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.02%)</title><rect x="295.6" y="1077" width="0.2" height="15.0" fill="rgb(253,74,36)" rx="2" ry="2" />
<text x="298.62" y="1087.5" ></text>
</g>
<g >
<title>path_lookupat (90,909,090 samples, 0.16%)</title><rect x="774.6" y="917" width="1.9" height="15.0" fill="rgb(208,222,52)" rx="2" ry="2" />
<text x="777.58" y="927.5" ></text>
</g>
<g >
<title>TRACE-3$AutoLoader::find$76 (131,313,130 samples, 0.23%)</title><rect x="532.5" y="1045" width="2.7" height="15.0" fill="rgb(212,134,52)" rx="2" ry="2" />
<text x="535.50" y="1055.5" ></text>
</g>
<g >
<title>syscall_trace_enter (10,101,010 samples, 0.02%)</title><rect x="501.5" y="981" width="0.2" height="15.0" fill="rgb(224,204,6)" rx="2" ry="2" />
<text x="504.46" y="991.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="789.0" y="917" width="0.2" height="15.0" fill="rgb(224,188,6)" rx="2" ry="2" />
<text x="791.96" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.07%)</title><rect x="929.6" y="917" width="0.8" height="15.0" fill="rgb(223,112,15)" rx="2" ry="2" />
<text x="932.58" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.11%)</title><rect x="1107.9" y="1157" width="1.3" height="15.0" fill="rgb(214,72,38)" rx="2" ry="2" />
<text x="1110.92" y="1167.5" ></text>
</g>
<g >
<title>zend_do_link_class (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1013" width="3.3" height="15.0" fill="rgb(218,204,39)" rx="2" ry="2" />
<text x="304.67" y="1023.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="932.3" y="773" width="0.2" height="15.0" fill="rgb(232,87,46)" rx="2" ry="2" />
<text x="935.29" y="783.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (30,303,030 samples, 0.05%)</title><rect x="301.0" y="1029" width="0.7" height="15.0" fill="rgb(210,199,10)" rx="2" ry="2" />
<text x="304.04" y="1039.5" ></text>
</g>
<g >
<title>irq_exit (10,101,010 samples, 0.02%)</title><rect x="861.0" y="789" width="0.2" height="15.0" fill="rgb(208,48,50)" rx="2" ry="2" />
<text x="864.04" y="799.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (10,101,010 samples, 0.02%)</title><rect x="371.9" y="981" width="0.2" height="15.0" fill="rgb(209,159,42)" rx="2" ry="2" />
<text x="374.88" y="991.5" ></text>
</g>
<g >
<title>br_handle_frame_finish (10,101,010 samples, 0.02%)</title><rect x="539.4" y="917" width="0.2" height="15.0" fill="rgb(210,87,18)" rx="2" ry="2" />
<text x="542.38" y="927.5" ></text>
</g>
<g >
<title>common_file_perm (20,202,020 samples, 0.04%)</title><rect x="217.9" y="981" width="0.4" height="15.0" fill="rgb(215,157,51)" rx="2" ry="2" />
<text x="220.92" y="991.5" ></text>
</g>
<g >
<title>parse_iv2 (10,101,010 samples, 0.02%)</title><rect x="53.3" y="1109" width="0.2" height="15.0" fill="rgb(241,216,36)" rx="2" ry="2" />
<text x="56.33" y="1119.5" ></text>
</g>
<g >
<title>zend_array_key_exists_fast (10,101,010 samples, 0.02%)</title><rect x="615.2" y="1109" width="0.2" height="15.0" fill="rgb(215,222,4)" rx="2" ry="2" />
<text x="618.21" y="1119.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (50,505,050 samples, 0.09%)</title><rect x="913.5" y="981" width="1.1" height="15.0" fill="rgb(230,45,43)" rx="2" ry="2" />
<text x="916.54" y="991.5" ></text>
</g>
<g >
<title>zend_fetch_class_by_name (161,616,160 samples, 0.28%)</title><rect x="301.7" y="1109" width="3.3" height="15.0" fill="rgb(251,205,28)" rx="2" ry="2" />
<text x="304.67" y="1119.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_inner_W (10,101,010 samples, 0.02%)</title><rect x="618.8" y="1109" width="0.2" height="15.0" fill="rgb(254,115,14)" rx="2" ry="2" />
<text x="621.75" y="1119.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="480.8" y="981" width="0.2" height="15.0" fill="rgb(219,179,21)" rx="2" ry="2" />
<text x="483.83" y="991.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1077" width="0.2" height="15.0" fill="rgb(242,4,27)" rx="2" ry="2" />
<text x="207.17" y="1087.5" ></text>
</g>
<g >
<title>zend_call_function (10,101,010 samples, 0.02%)</title><rect x="882.7" y="1045" width="0.2" height="15.0" fill="rgb(254,204,20)" rx="2" ry="2" />
<text x="885.71" y="1055.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.02%)</title><rect x="654.2" y="885" width="0.2" height="15.0" fill="rgb(248,118,5)" rx="2" ry="2" />
<text x="657.17" y="895.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (10,101,010 samples, 0.02%)</title><rect x="607.7" y="1093" width="0.2" height="15.0" fill="rgb(251,184,9)" rx="2" ry="2" />
<text x="610.71" y="1103.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="1092.1" y="965" width="0.2" height="15.0" fill="rgb(237,32,11)" rx="2" ry="2" />
<text x="1095.08" y="975.5" ></text>
</g>
<g >
<title>__schedule (10,101,010 samples, 0.02%)</title><rect x="465.8" y="1061" width="0.2" height="15.0" fill="rgb(246,102,54)" rx="2" ry="2" />
<text x="468.83" y="1071.5" ></text>
</g>
<g >
<title>br_handle_frame (10,101,010 samples, 0.02%)</title><rect x="850.6" y="741" width="0.2" height="15.0" fill="rgb(235,178,44)" rx="2" ry="2" />
<text x="853.62" y="751.5" ></text>
</g>
<g >
<title>ip_forward (10,101,010 samples, 0.02%)</title><rect x="982.9" y="869" width="0.2" height="15.0" fill="rgb(206,30,51)" rx="2" ry="2" />
<text x="985.92" y="879.5" ></text>
</g>
<g >
<title>TRACE-412$ExtensionRegistry::exportExtractedData$542 (10,101,010 samples, 0.02%)</title><rect x="516.0" y="1141" width="0.2" height="15.0" fill="rgb(224,133,54)" rx="2" ry="2" />
<text x="519.04" y="1151.5" ></text>
</g>
<g >
<title>gro_normal_list.part.132 (10,101,010 samples, 0.02%)</title><rect x="914.6" y="821" width="0.2" height="15.0" fill="rgb(252,217,54)" rx="2" ry="2" />
<text x="917.58" y="831.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="523.8" y="1029" width="0.2" height="15.0" fill="rgb(226,76,50)" rx="2" ry="2" />
<text x="526.75" y="1039.5" ></text>
</g>
<g >
<title>ip_rcv_finish (10,101,010 samples, 0.02%)</title><rect x="378.5" y="773" width="0.3" height="15.0" fill="rgb(231,40,7)" rx="2" ry="2" />
<text x="381.54" y="783.5" ></text>
</g>
<g >
<title>do_bind_class (40,404,040 samples, 0.07%)</title><rect x="677.7" y="885" width="0.8" height="15.0" fill="rgb(222,81,52)" rx="2" ry="2" />
<text x="680.71" y="895.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,101,010 samples, 0.02%)</title><rect x="471.7" y="1029" width="0.2" height="15.0" fill="rgb(232,3,43)" rx="2" ry="2" />
<text x="474.67" y="1039.5" ></text>
</g>
<g >
<title>zend_std_get_static_method (10,101,010 samples, 0.02%)</title><rect x="1027.7" y="1013" width="0.2" height="15.0" fill="rgb(219,193,17)" rx="2" ry="2" />
<text x="1030.71" y="1023.5" ></text>
</g>
<g >
<title>virtnet_poll (10,101,010 samples, 0.02%)</title><rect x="1088.3" y="869" width="0.2" height="15.0" fill="rgb(235,226,50)" rx="2" ry="2" />
<text x="1091.33" y="879.5" ></text>
</g>
<g >
<title>compile_filename (303,030,300 samples, 0.53%)</title><rect x="274.0" y="1093" width="6.2" height="15.0" fill="rgb(240,195,6)" rx="2" ry="2" />
<text x="276.96" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="513.3" y="1013" width="0.2" height="15.0" fill="rgb(210,76,11)" rx="2" ry="2" />
<text x="516.33" y="1023.5" ></text>
</g>
<g >
<title>ip_output (10,101,010 samples, 0.02%)</title><rect x="904.0" y="709" width="0.2" height="15.0" fill="rgb(210,223,18)" rx="2" ry="2" />
<text x="906.96" y="719.5" ></text>
</g>
<g >
<title>zend_mm_alloc_small_slow (20,202,020 samples, 0.04%)</title><rect x="107.5" y="1077" width="0.4" height="15.0" fill="rgb(232,134,12)" rx="2" ry="2" />
<text x="110.50" y="1087.5" ></text>
</g>
<g >
<title>zend_is_callable_ex (10,101,010 samples, 0.02%)</title><rect x="202.9" y="1189" width="0.2" height="15.0" fill="rgb(238,77,25)" rx="2" ry="2" />
<text x="205.92" y="1199.5" ></text>
</g>
<g >
<title>detach_buf_split (10,101,010 samples, 0.02%)</title><rect x="24.2" y="1061" width="0.2" height="15.0" fill="rgb(228,96,26)" rx="2" ry="2" />
<text x="27.17" y="1071.5" ></text>
</g>
<g >
<title>security_prepare_creds (10,101,010 samples, 0.02%)</title><rect x="533.3" y="933" width="0.2" height="15.0" fill="rgb(254,177,29)" rx="2" ry="2" />
<text x="536.33" y="943.5" ></text>
</g>
<g >
<title>zend_accel_load_script (30,303,030 samples, 0.05%)</title><rect x="270.0" y="933" width="0.6" height="15.0" fill="rgb(253,126,17)" rx="2" ry="2" />
<text x="273.00" y="943.5" ></text>
</g>
<g >
<title>do_fcntl (10,101,010 samples, 0.02%)</title><rect x="1102.1" y="1077" width="0.2" height="15.0" fill="rgb(252,70,42)" rx="2" ry="2" />
<text x="1105.08" y="1087.5" ></text>
</g>
<g >
<title>JIT$$assign_const (40,404,040 samples, 0.07%)</title><rect x="219.0" y="1141" width="0.8" height="15.0" fill="rgb(206,187,36)" rx="2" ry="2" />
<text x="221.96" y="1151.5" ></text>
</g>
<g >
<title>zend_array_destroy (10,101,010 samples, 0.02%)</title><rect x="970.6" y="1045" width="0.2" height="15.0" fill="rgb(244,12,33)" rx="2" ry="2" />
<text x="973.62" y="1055.5" ></text>
</g>
<g >
<title>br_pass_frame_up (80,808,080 samples, 0.14%)</title><rect x="939.4" y="421" width="1.6" height="15.0" fill="rgb(215,95,41)" rx="2" ry="2" />
<text x="942.38" y="431.5" ></text>
</g>
<g >
<title>ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER (10,101,010 samples, 0.02%)</title><rect x="773.3" y="1029" width="0.2" height="15.0" fill="rgb(222,222,34)" rx="2" ry="2" />
<text x="776.33" y="1039.5" ></text>
</g>
<g >
<title>zend_hash_find (10,101,010 samples, 0.02%)</title><rect x="472.1" y="1093" width="0.2" height="15.0" fill="rgb(253,128,54)" rx="2" ry="2" />
<text x="475.08" y="1103.5" ></text>
</g>
<g >
<title>zend_hash_index_find (10,101,010 samples, 0.02%)</title><rect x="980.2" y="1125" width="0.2" height="15.0" fill="rgb(246,107,28)" rx="2" ry="2" />
<text x="983.21" y="1135.5" ></text>
</g>
<g >
<title>mod_timer (10,101,010 samples, 0.02%)</title><rect x="641.7" y="789" width="0.2" height="15.0" fill="rgb(219,49,5)" rx="2" ry="2" />
<text x="644.67" y="799.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (10,101,010 samples, 0.02%)</title><rect x="551.7" y="1125" width="0.2" height="15.0" fill="rgb(232,134,38)" rx="2" ry="2" />
<text x="554.67" y="1135.5" ></text>
</g>
<g >
<title>zval_update_constant_ex (70,707,070 samples, 0.12%)</title><rect x="683.5" y="1109" width="1.5" height="15.0" fill="rgb(211,95,53)" rx="2" ry="2" />
<text x="686.54" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (10,101,010 samples, 0.02%)</title><rect x="493.8" y="1109" width="0.2" height="15.0" fill="rgb(220,166,14)" rx="2" ry="2" />
<text x="496.75" y="1119.5" ></text>
</g>
<g >
<title>ZEND_NEW_SPEC_VAR_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="555.0" y="1141" width="0.2" height="15.0" fill="rgb(232,194,35)" rx="2" ry="2" />
<text x="558.00" y="1151.5" ></text>
</g>
<g >
<title>ip_local_out (828,282,820 samples, 1.45%)</title><rect x="1149.2" y="981" width="17.0" height="15.0" fill="rgb(250,43,11)" rx="2" ry="2" />
<text x="1152.17" y="991.5" ></text>
</g>
<g >
<title>alloc_empty_file (10,101,010 samples, 0.02%)</title><rect x="204.2" y="1045" width="0.2" height="15.0" fill="rgb(252,183,3)" rx="2" ry="2" />
<text x="207.17" y="1055.5" ></text>
</g>
<g >
<title>execute_ex (424,242,420 samples, 0.74%)</title><rect x="798.5" y="933" width="8.8" height="15.0" fill="rgb(223,84,22)" rx="2" ry="2" />
<text x="801.54" y="943.5" ></text>
</g>
<g >
<title>JIT$$leave_function (10,101,010 samples, 0.02%)</title><rect x="772.3" y="1045" width="0.2" height="15.0" fill="rgb(249,195,11)" rx="2" ry="2" />
<text x="775.29" y="1055.5" ></text>
</g>
<g >
<title>finish_task_switch (20,202,020 samples, 0.04%)</title><rect x="926.5" y="725" width="0.4" height="15.0" fill="rgb(220,4,43)" rx="2" ry="2" />
<text x="929.46" y="735.5" ></text>
</g>
<g >
<title>__secure_computing (10,101,010 samples, 0.02%)</title><rect x="1010.2" y="981" width="0.2" height="15.0" fill="rgb(210,209,39)" rx="2" ry="2" />
<text x="1013.21" y="991.5" ></text>
</g>
<g >
<title>_efree (10,101,010 samples, 0.02%)</title><rect x="887.5" y="997" width="0.2" height="15.0" fill="rgb(254,51,23)" rx="2" ry="2" />
<text x="890.50" y="1007.5" ></text>
</g>
<g >
<title>__lock_text_start (10,101,010 samples, 0.02%)</title><rect x="1063.1" y="1061" width="0.2" height="15.0" fill="rgb(239,78,53)" rx="2" ry="2" />
<text x="1066.12" y="1071.5" ></text>
</g>
<g >
<title>ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER (20,202,020 samples, 0.04%)</title><rect x="517.7" y="1125" width="0.4" height="15.0" fill="rgb(232,3,44)" rx="2" ry="2" />
<text x="520.71" y="1135.5" ></text>
</g>
<g >
<title>get_vfs_caps_from_disk (30,303,030 samples, 0.05%)</title><rect x="956.9" y="949" width="0.6" height="15.0" fill="rgb(228,20,32)" rx="2" ry="2" />
<text x="959.88" y="959.5" ></text>
</g>
<g >
<title>ZEND_ASSIGN_SPEC_CV_CV_RETVAL_UNUSED_HANDLER (10,101,010 samples, 0.02%)</title><rect x="644.8" y="1125" width="0.2" height="15.0" fill="rgb(224,145,31)" rx="2" ry="2" />
<text x="647.79" y="1135.5" ></text>
</g>
<g >
<title>fib_table_lookup (10,101,010 samples, 0.02%)</title><rect x="1130.6" y="613" width="0.2" height="15.0" fill="rgb(229,54,36)" rx="2" ry="2" />
<text x="1133.62" y="623.5" ></text>
</g>
<g >
<title>zend_get_constant_ex (10,101,010 samples, 0.02%)</title><rect x="308.8" y="1109" width="0.2" height="15.0" fill="rgb(233,221,23)" rx="2" ry="2" />
<text x="311.75" y="1119.5" ></text>
</g>
<g >
<title>audit_filter_syscall.constprop.19 (70,707,070 samples, 0.12%)</title><rect x="1169.4" y="1141" width="1.4" height="15.0" fill="rgb(252,142,12)" rx="2" ry="2" />
<text x="1172.38" y="1151.5" ></text>
</g>
<g >
<title>zend_jit_verify_return_slow (10,101,010 samples, 0.02%)</title><rect x="308.5" y="1125" width="0.3" height="15.0" fill="rgb(253,115,38)" rx="2" ry="2" />
<text x="311.54" y="1135.5" ></text>
</g>
<g >
<title>zend_ast_evaluate (30,303,030 samples, 0.05%)</title><rect x="301.0" y="1013" width="0.7" height="15.0" fill="rgb(234,198,22)" rx="2" ry="2" />
<text x="304.04" y="1023.5" ></text>
</g>
<g >
<title>ret_from_intr (10,101,010 samples, 0.02%)</title><rect x="1041.2" y="1077" width="0.3" height="15.0" fill="rgb(214,140,8)" rx="2" ry="2" />
<text x="1044.25" y="1087.5" ></text>
</g>
<g >
<title>security_inode_alloc (10,101,010 samples, 0.02%)</title><rect x="931.2" y="773" width="0.3" height="15.0" fill="rgb(233,207,28)" rx="2" ry="2" />
<text x="934.25" y="783.5" ></text>
</g>
<g >
<title>get_signal (10,101,010 samples, 0.02%)</title><rect x="1172.1" y="1157" width="0.2" height="15.0" fill="rgb(243,170,6)" rx="2" ry="2" />
<text x="1175.08" y="1167.5" ></text>
</g>
<g >
<title>zend_fetch_dimension_address_read_IS (40,404,040 samples, 0.07%)</title><rect x="689.2" y="1109" width="0.8" height="15.0" fill="rgb(230,210,28)" rx="2" ry="2" />
<text x="692.17" y="1119.5" ></text>
</g>
<g >
<title>iptable_filter_hook (10,101,010 samples, 0.02%)</title><rect x="955.4" y="885" width="0.2" height="15.0" fill="rgb(208,121,25)" rx="2" ry="2" />
<text x="958.42" y="895.5" ></text>
</g>
<g >
<title>vp_notify (10,101,010 samples, 0.02%)</title><rect x="1129.4" y="357" width="0.2" height="15.0" fill="rgb(233,197,44)" rx="2" ry="2" />
<text x="1132.38" y="367.5" ></text>
</g>
<g >
<title>php_pcre2_jit_match (20,202,020 samples, 0.04%)</title><rect x="960.8" y="1077" width="0.4" height="15.0" fill="rgb(227,188,31)" rx="2" ry="2" />
<text x="963.83" y="1087.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="714.0" y="933" width="0.2" height="15.0" fill="rgb(241,121,26)" rx="2" ry="2" />
<text x="716.96" y="943.5" ></text>
</g>
<g >
<title>spl_perform_autoload (60,606,060 samples, 0.11%)</title><rect x="683.8" y="1045" width="1.2" height="15.0" fill="rgb(227,155,22)" rx="2" ry="2" />
<text x="686.75" y="1055.5" ></text>
</g>
<g >
<title>virtqueue_napi_complete (10,101,010 samples, 0.02%)</title><rect x="925.4" y="645" width="0.2" height="15.0" fill="rgb(212,202,40)" rx="2" ry="2" />
<text x="928.42" y="655.5" ></text>
</g>
<g >
<title>zend_hash_add (10,101,010 samples, 0.02%)</title><rect x="678.1" y="805" width="0.2" height="15.0" fill="rgb(207,213,8)" rx="2" ry="2" />
<text x="681.12" y="815.5" ></text>
</g>
<g >
<title>napi_complete_done (10,101,010 samples, 0.02%)</title><rect x="1087.5" y="949" width="0.2" height="15.0" fill="rgb(224,28,39)" rx="2" ry="2" />
<text x="1090.50" y="959.5" ></text>
</g>
<g >
<title>zend_get_class_fetch_type (10,101,010 samples, 0.02%)</title><rect x="607.9" y="1093" width="0.2" height="15.0" fill="rgb(248,161,52)" rx="2" ry="2" />
<text x="610.92" y="1103.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (20,202,020 samples, 0.04%)</title><rect x="940.2" y="197" width="0.4" height="15.0" fill="rgb(208,159,21)" rx="2" ry="2" />
<text x="943.21" y="207.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (20,202,020 samples, 0.04%)</title><rect x="926.5" y="789" width="0.4" height="15.0" fill="rgb(214,81,13)" rx="2" ry="2" />
<text x="929.46" y="799.5" ></text>
</g>
<g >
<title>__x64_sys_getcwd (10,101,010 samples, 0.02%)</title><rect x="1132.7" y="1157" width="0.2" height="15.0" fill="rgb(214,193,14)" rx="2" ry="2" />
<text x="1135.71" y="1167.5" ></text>
</g>
<g >
<title>compile_filename (20,202,020 samples, 0.04%)</title><rect x="733.1" y="885" width="0.4" height="15.0" fill="rgb(207,95,50)" rx="2" ry="2" />
<text x="736.12" y="895.5" ></text>
</g>
<g >
<title>ip_finish_output (10,101,010 samples, 0.02%)</title><rect x="32.3" y="773" width="0.2" height="15.0" fill="rgb(248,181,29)" rx="2" ry="2" />
<text x="35.29" y="783.5" ></text>
</g>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
9860854
Default Alt Text
autoloader-classmap.svg (1 MB)

Event Timeline